2018-11-10 14:24:36 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-11-10 14:24:36 +01:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Client;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2018-12-05 09:23:12 +01:00
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
use Illuminate\Validation\Rule;
|
2018-11-10 14:24:36 +01:00
|
|
|
|
|
|
|
class UpdateClientRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
2019-04-16 07:28:30 +02:00
|
|
|
public function authorize() : bool
|
2018-11-10 14:24:36 +01:00
|
|
|
{
|
2019-04-16 07:28:30 +02:00
|
|
|
return auth()->user()->can('edit', $this->client);
|
2018-11-10 14:24:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
2018-12-05 09:23:12 +01:00
|
|
|
{
|
2018-12-07 11:57:20 +01:00
|
|
|
/* Ensure we have a client name, and that all emails are unique*/
|
2018-12-05 09:23:12 +01:00
|
|
|
$rules['name'] = 'required';
|
|
|
|
|
2019-07-04 06:31:01 +02:00
|
|
|
$rules['industry_id'] = 'integer|nullable';
|
|
|
|
$rules['size_id'] = 'integer|nullable';
|
|
|
|
$rules['currency_id'] = 'integer|nullable';
|
|
|
|
$rules['country_id'] = 'integer|nullable';
|
|
|
|
$rules['shipping_country_id'] = 'integer|nullable';
|
2019-10-06 23:13:16 +02:00
|
|
|
// $rules['settings'] = 'json';
|
2019-07-04 06:31:01 +02:00
|
|
|
|
2018-12-05 09:23:12 +01:00
|
|
|
$contacts = request('contacts');
|
|
|
|
|
2019-03-27 09:38:01 +01:00
|
|
|
if(is_array($contacts))
|
|
|
|
{
|
|
|
|
for ($i = 0; $i < count($contacts); $i++) {
|
2019-10-02 12:22:10 +02:00
|
|
|
//$rules['contacts.' . $i . '.email'] = 'nullable|email|unique:client_contacts,email,' . $contacts[$i]['id'];
|
|
|
|
$rules['contacts.' . $i . '.email'] = 'email';
|
2019-03-27 09:38:01 +01:00
|
|
|
}
|
2018-12-05 09:23:12 +01:00
|
|
|
}
|
|
|
|
return $rules;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function messages()
|
2018-11-10 14:24:36 +01:00
|
|
|
{
|
|
|
|
return [
|
2019-01-25 11:47:23 +01:00
|
|
|
'unique' => ctrans('validation.unique', ['attribute' => 'email']),
|
|
|
|
'email' => ctrans('validation.email', ['attribute' => 'email']),
|
|
|
|
'name.required' => ctrans('validation.required', ['attribute' => 'name']),
|
|
|
|
'required' => ctrans('validation.required', ['attribute' => 'email']),
|
2018-11-10 14:24:36 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|