mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
108 lines
3.3 KiB
PHP
108 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Http\Requests\Vendor;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class UpdateVendorRequest extends Request
|
|
{
|
|
use MakesHash;
|
|
use ChecksEntityStatus;
|
|
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
/** @var \App\Models\User $user */
|
|
$user = auth()->user();
|
|
|
|
return $user->can('edit', $this->vendor);
|
|
}
|
|
|
|
public function rules()
|
|
{
|
|
/** @var \App\Models\User $user */
|
|
$user = auth()->user();
|
|
|
|
$rules['country_id'] = 'integer';
|
|
|
|
if ($this->number) {
|
|
$rules['number'] = Rule::unique('vendors')->where('company_id', $user->company()->id)->ignore($this->vendor->id);
|
|
}
|
|
|
|
$rules['contacts'] = 'bail|array';
|
|
$rules['contacts.*.email'] = 'bail|nullable|distinct|sometimes|email';
|
|
$rules['contacts.*.password'] = [
|
|
'bail',
|
|
'nullable',
|
|
'sometimes',
|
|
'string',
|
|
'min:7', // must be at least 10 characters in length
|
|
'regex:/[a-z]/', // must contain at least one lowercase letter
|
|
'regex:/[A-Z]/', // must contain at least one uppercase letter
|
|
'regex:/[0-9]/', // must contain at least one digit
|
|
//'regex:/[@$!%*#?&.]/', // must contain a special character
|
|
];
|
|
|
|
$rules['currency_id'] = 'bail|sometimes|exists:currencies,id';
|
|
|
|
if ($this->file('documents') && is_array($this->file('documents'))) {
|
|
$rules['documents.*'] = $this->file_validation;
|
|
} elseif ($this->file('documents')) {
|
|
$rules['documents'] = $this->file_validation;
|
|
}
|
|
|
|
if ($this->file('file') && is_array($this->file('file'))) {
|
|
$rules['file.*'] = $this->file_validation;
|
|
} elseif ($this->file('file')) {
|
|
$rules['file'] = $this->file_validation;
|
|
}
|
|
|
|
$rules['language_id'] = 'bail|nullable|sometimes|exists:languages,id';
|
|
$rules['classification'] = 'bail|sometimes|nullable|in:individual,company,partnership,trust,charity,government,other';
|
|
|
|
return $rules;
|
|
}
|
|
|
|
public function messages()
|
|
{
|
|
return [
|
|
'email' => ctrans('validation.email', ['attribute' => 'email']),
|
|
'name.required' => ctrans('validation.required', ['attribute' => 'name']),
|
|
'required' => ctrans('validation.required', ['attribute' => 'email']),
|
|
];
|
|
}
|
|
|
|
public function prepareForValidation()
|
|
{
|
|
$input = $this->all();
|
|
|
|
if (array_key_exists('assigned_user_id', $input) && is_string($input['assigned_user_id'])) {
|
|
$input['assigned_user_id'] = $this->decodePrimaryKey($input['assigned_user_id']);
|
|
}
|
|
|
|
if (array_key_exists('country_id', $input) && is_null($input['country_id'])) {
|
|
unset($input['country_id']);
|
|
}
|
|
|
|
$input = $this->decodePrimaryKeys($input);
|
|
|
|
$this->replace($input);
|
|
}
|
|
}
|