2020-01-20 02:31:58 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-01-20 02:31:58 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-01-20 02:31:58 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-01-20 02:31:58 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Vendor;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Http\ValidationRules\ValidVendorGroupSettingsRule;
|
|
|
|
use App\Models\Vendor;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-05-21 02:23:37 +02:00
|
|
|
use Illuminate\Validation\Rule;
|
2020-01-20 02:31:58 +01:00
|
|
|
|
|
|
|
class StoreVendorRequest extends Request
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('create', Vendor::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
|
|
|
|
/* Ensure we have a client name, and that all emails are unique*/
|
|
|
|
//$rules['name'] = 'required|min:1';
|
2022-03-10 10:48:14 +01:00
|
|
|
// $rules['id_number'] = 'unique:vendors,id_number,'.$this->id.',id,company_id,'.auth()->user()->company()->id;
|
2020-01-20 02:31:58 +01:00
|
|
|
//$rules['settings'] = new ValidVendorGroupSettingsRule();
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-03-10 10:48:14 +01:00
|
|
|
$rules['contacts.*.email'] = 'bail|nullable|distinct|sometimes|email';
|
2020-01-20 02:31:58 +01:00
|
|
|
|
2021-05-21 02:23:37 +02:00
|
|
|
if (isset($this->number)) {
|
|
|
|
$rules['number'] = Rule::unique('vendors')->where('company_id', auth()->user()->company()->id);
|
|
|
|
}
|
2020-01-20 02:31:58 +01:00
|
|
|
|
2022-03-10 10:48:14 +01:00
|
|
|
// if (isset($this->id_number)) {
|
|
|
|
// $rules['id_number'] = Rule::unique('vendors')->where('company_id', auth()->user()->company()->id);
|
|
|
|
// }
|
|
|
|
|
2020-01-20 02:31:58 +01:00
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2020-01-20 02:31:58 +01:00
|
|
|
{
|
2020-10-15 23:17:31 +02:00
|
|
|
$input = $this->all();
|
2020-01-20 02:31:58 +01:00
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
$input = $this->decodePrimaryKeys($input);
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-10-15 23:17:31 +02:00
|
|
|
$this->replace($input);
|
2020-01-20 02:31:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
2022-03-10 10:48:14 +01:00
|
|
|
// 'unique' => ctrans('validation.unique', ['attribute' => 'email']),
|
2020-01-20 02:31:58 +01:00
|
|
|
//'required' => trans('validation.required', ['attribute' => 'email']),
|
|
|
|
'contacts.*.email.required' => ctrans('validation.email', ['attribute' => 'email']),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|