mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
84642bf035
* add expenses, vendors and vendor_contacts along with factories and test data * padding out vendors, expenses * Minor fixes * Add Expense and Company TransformerS
80 lines
2.0 KiB
PHP
80 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Requests\Vendor;
|
|
|
|
use App\DataMapper\VendorSettings;
|
|
use App\Http\Requests\Request;
|
|
use App\Http\ValidationRules\ValidVendorGroupSettingsRule;
|
|
use App\Models\Vendor;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
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';
|
|
$rules['id_number'] = 'unique:vendors,id_number,' . $this->id . ',id,company_id,' . $this->company_id;
|
|
//$rules['settings'] = new ValidVendorGroupSettingsRule();
|
|
$rules['contacts.*.email'] = 'nullable|distinct';
|
|
|
|
$contacts = request('contacts');
|
|
|
|
if (is_array($contacts)) {
|
|
for ($i = 0; $i < count($contacts); $i++) {
|
|
|
|
//$rules['contacts.' . $i . '.email'] = 'nullable|email|distinct';
|
|
}
|
|
}
|
|
|
|
return $rules;
|
|
}
|
|
|
|
|
|
protected function prepareForValidation()
|
|
{
|
|
$input = $this->all();
|
|
|
|
if (!isset($input['settings'])) {
|
|
$input['settings'] = VendorSettings::defaults();
|
|
}
|
|
|
|
|
|
$this->replace($input);
|
|
}
|
|
|
|
public function messages()
|
|
{
|
|
return [
|
|
'unique' => ctrans('validation.unique', ['attribute' => 'email']),
|
|
//'required' => trans('validation.required', ['attribute' => 'email']),
|
|
'contacts.*.email.required' => ctrans('validation.email', ['attribute' => 'email']),
|
|
];
|
|
}
|
|
}
|