2018-12-05 09:23:12 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-12-05 09:23:12 +01:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Client;
|
|
|
|
|
2019-10-29 10:51:23 +01:00
|
|
|
use App\DataMapper\ClientSettings;
|
2018-12-05 09:23:12 +01:00
|
|
|
use App\Http\Requests\Request;
|
2020-04-21 07:16:45 +02:00
|
|
|
use App\Http\ValidationRules\Ninja\CanStoreClientsRule;
|
2019-11-24 07:37:53 +01:00
|
|
|
use App\Http\ValidationRules\ValidClientGroupSettingsRule;
|
2019-01-21 15:06:49 +01:00
|
|
|
use App\Models\Client;
|
2020-03-03 10:44:26 +01:00
|
|
|
use App\Models\GroupSetting;
|
2019-11-10 22:12:21 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-11-13 07:18:24 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
2018-12-05 09:23:12 +01:00
|
|
|
|
|
|
|
class StoreClientRequest extends Request
|
|
|
|
{
|
2019-11-10 22:12:21 +01:00
|
|
|
use MakesHash;
|
|
|
|
|
2018-12-05 09:23:12 +01:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
2019-01-21 15:06:49 +01:00
|
|
|
public function authorize() : bool
|
2018-12-05 09:23:12 +01:00
|
|
|
{
|
2019-03-27 22:32:50 +01:00
|
|
|
return auth()->user()->can('create', Client::class);
|
2018-12-05 09:23:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
2018-12-07 11:57:20 +01:00
|
|
|
{
|
2019-05-10 08:08:33 +02:00
|
|
|
|
2020-06-22 13:41:04 +02:00
|
|
|
if ($this->input('documents') && is_array($this->input('documents'))) {
|
|
|
|
$documents = count($this->input('documents'));
|
|
|
|
|
|
|
|
foreach (range(0, $documents) as $index) {
|
|
|
|
$rules['documents.' . $index] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
|
|
|
}
|
|
|
|
} elseif ($this->input('documents')) {
|
|
|
|
$rules['documents'] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
|
|
|
}
|
|
|
|
|
2018-12-07 11:57:20 +01:00
|
|
|
/* Ensure we have a client name, and that all emails are unique*/
|
2019-11-12 12:36:24 +01:00
|
|
|
//$rules['name'] = 'required|min:1';
|
2019-10-08 13:17:05 +02:00
|
|
|
$rules['id_number'] = 'unique:clients,id_number,' . $this->id . ',id,company_id,' . $this->company_id;
|
2019-11-24 07:37:53 +01:00
|
|
|
$rules['settings'] = new ValidClientGroupSettingsRule();
|
2019-12-05 07:22:20 +01:00
|
|
|
$rules['contacts.*.email'] = 'nullable|distinct';
|
2020-03-01 06:00:54 +01:00
|
|
|
$rules['contacts.*.password'] = [
|
2020-03-02 11:22:37 +01:00
|
|
|
'nullable',
|
2020-03-01 06:00:54 +01:00
|
|
|
'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
|
|
|
|
];
|
|
|
|
|
2020-04-21 07:16:45 +02:00
|
|
|
if(auth()->user()->company()->account->isFreeHostedClient())
|
|
|
|
$rules['hosted_clients'] = new CanStoreClientsRule($this->company_id);
|
2019-03-28 10:05:13 +01:00
|
|
|
|
|
|
|
return $rules;
|
2018-12-07 11:57:20 +01:00
|
|
|
}
|
|
|
|
|
2019-05-10 08:08:33 +02:00
|
|
|
|
2019-12-20 12:23:09 +01:00
|
|
|
protected function prepareForValidation()
|
2019-05-10 08:08:33 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
2019-11-30 03:42:44 +01:00
|
|
|
|
2020-03-01 11:18:13 +01:00
|
|
|
//@todo implement feature permissions for > 100 clients
|
2020-03-06 06:08:44 +01:00
|
|
|
//
|
|
|
|
$settings = ClientSettings::defaults();
|
2019-10-07 08:43:19 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if (array_key_exists('settings', $input) && !empty($input['settings'])) {
|
|
|
|
foreach ($input['settings'] as $key => $value) {
|
2020-03-06 06:08:44 +01:00
|
|
|
$settings->{$key} = $value;
|
2020-03-04 05:06:27 +01:00
|
|
|
}
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-03-06 06:08:44 +01:00
|
|
|
|
2020-06-26 00:29:24 +02:00
|
|
|
if (array_key_exists('assigned_user_id', $input) && is_string($input['assigned_user_id'])) {
|
|
|
|
$input['assigned_user_id'] = $this->decodePrimaryKey($input['assigned_user_id']);
|
|
|
|
}
|
|
|
|
|
2020-03-06 06:08:44 +01:00
|
|
|
//is no settings->currency_id is set then lets dive in and find either a group or company currency all the below may be redundant!!
|
2020-03-21 06:37:30 +01:00
|
|
|
if (!property_exists($settings, 'currency_id') && isset($input['group_settings_id'])) {
|
2020-03-06 06:08:44 +01:00
|
|
|
$input['group_settings_id'] = $this->decodePrimaryKey($input['group_settings_id']);
|
|
|
|
$group_settings = GroupSetting::find($input['group_settings_id']);
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if ($group_settings && property_exists($group_settings->settings, 'currency_id') && isset($group_settings->settings->currency_id)) {
|
2020-03-06 06:08:44 +01:00
|
|
|
$settings->currency_id = (string)$group_settings->settings->currency_id;
|
2020-03-21 06:37:30 +01:00
|
|
|
} else {
|
2020-03-06 06:08:44 +01:00
|
|
|
$settings->currency_id = (string)auth()->user()->company()->settings->currency_id;
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
|
|
|
} elseif (!property_exists($settings, 'currency_id')) {
|
2020-03-06 06:08:44 +01:00
|
|
|
$settings->currency_id = (string)auth()->user()->company()->settings->currency_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$input['settings'] = $settings;
|
2020-03-03 10:44:26 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if (isset($input['contacts'])) {
|
|
|
|
foreach ($input['contacts'] as $key => $contact) {
|
|
|
|
if (array_key_exists('id', $contact) && is_numeric($contact['id'])) {
|
2020-02-24 11:15:30 +01:00
|
|
|
unset($input['contacts'][$key]['id']);
|
2020-03-21 06:37:30 +01:00
|
|
|
} elseif (array_key_exists('id', $contact) && is_string($contact['id'])) {
|
2020-02-24 11:15:30 +01:00
|
|
|
$input['contacts'][$key]['id'] = $this->decodePrimaryKey($contact['id']);
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-03-01 06:00:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
//Filter the client contact password - if it is sent with ***** we should ignore it!
|
2020-03-21 06:37:30 +01:00
|
|
|
if (isset($contact['password'])) {
|
|
|
|
if (strlen($contact['password']) == 0) {
|
2020-03-02 11:22:37 +01:00
|
|
|
$input['contacts'][$key]['password'] = '';
|
2020-03-21 06:37:30 +01:00
|
|
|
} else {
|
2020-03-02 11:22:37 +01:00
|
|
|
$contact['password'] = str_replace("*", "", $contact['password']);
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if (strlen($contact['password']) == 0) {
|
2020-03-02 11:22:37 +01:00
|
|
|
unset($input['contacts'][$key]['password']);
|
|
|
|
}
|
|
|
|
}
|
2020-03-01 06:00:54 +01:00
|
|
|
}
|
2020-02-12 10:18:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$this->replace($input);
|
2019-05-10 08:08:33 +02:00
|
|
|
}
|
|
|
|
|
2018-12-07 11:57:20 +01:00
|
|
|
public function messages()
|
2018-12-05 09:23:12 +01:00
|
|
|
{
|
|
|
|
return [
|
2019-01-25 11:47:23 +01:00
|
|
|
'unique' => ctrans('validation.unique', ['attribute' => 'email']),
|
2018-12-07 11:57:20 +01:00
|
|
|
//'required' => trans('validation.required', ['attribute' => 'email']),
|
2019-01-25 11:47:23 +01:00
|
|
|
'contacts.*.email.required' => ctrans('validation.email', ['attribute' => 'email']),
|
2018-12-05 09:23:12 +01:00
|
|
|
];
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|