2018-11-10 14:24:36 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-11-10 14:24:36 +01:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Client;
|
|
|
|
|
2020-04-21 07:16:45 +02:00
|
|
|
use App\DataMapper\CompanySettings;
|
2018-11-10 14:24:36 +01:00
|
|
|
use App\Http\Requests\Request;
|
2019-11-24 07:37:53 +01:00
|
|
|
use App\Http\ValidationRules\ValidClientGroupSettingsRule;
|
2019-12-30 22:59:12 +01:00
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
2019-11-10 22:12:21 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-03-19 23:29:20 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
2018-11-10 14:24:36 +01:00
|
|
|
|
|
|
|
class UpdateClientRequest extends Request
|
|
|
|
{
|
2019-11-10 22:12:21 +01:00
|
|
|
use MakesHash;
|
2019-12-30 22:59:12 +01:00
|
|
|
use ChecksEntityStatus;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2018-11-10 14:24:36 +01:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
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) {
|
2020-09-06 11:38:10 +02:00
|
|
|
$rules['documents.'.$index] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
2020-06-22 13:41:04 +02:00
|
|
|
}
|
|
|
|
} 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';
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-10-07 13:05:06 +02:00
|
|
|
$rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000';
|
2019-07-04 06:31:01 +02:00
|
|
|
$rules['industry_id'] = 'integer|nullable';
|
|
|
|
$rules['size_id'] = 'integer|nullable';
|
|
|
|
$rules['country_id'] = 'integer|nullable';
|
|
|
|
$rules['shipping_country_id'] = 'integer|nullable';
|
2019-10-08 13:14:23 +02:00
|
|
|
//$rules['id_number'] = 'unique:clients,id_number,,id,company_id,' . auth()->user()->company()->id;
|
2021-03-19 23:29:20 +01:00
|
|
|
//$rules['id_number'] = 'unique:clients,id_number,'.$this->id.',id,company_id,'.$this->company_id;
|
|
|
|
|
|
|
|
if($this->id_number)
|
|
|
|
$rules['id_number'] = Rule::unique('clients')->where('company_id', auth()->user()->company()->id)->ignore($this->client->id);
|
|
|
|
|
|
|
|
if($this->number)
|
|
|
|
$rules['number'] = Rule::unique('clients')->where('company_id', auth()->user()->company()->id)->ignore($this->client->id);
|
|
|
|
|
2019-11-24 07:37:53 +01:00
|
|
|
$rules['settings'] = new ValidClientGroupSettingsRule();
|
2021-01-13 12:52:30 +01:00
|
|
|
$rules['contacts.*.email'] = 'bail|nullable|distinct|sometimes|email';
|
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
|
|
|
|
];
|
2019-07-04 06:31:01 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
return $rules;
|
2018-12-05 09:23:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function messages()
|
2018-11-10 14:24:36 +01:00
|
|
|
{
|
|
|
|
return [
|
2019-01-25 11:47:23 +01:00
|
|
|
'email' => ctrans('validation.email', ['attribute' => 'email']),
|
|
|
|
'name.required' => ctrans('validation.required', ['attribute' => 'name']),
|
|
|
|
'required' => ctrans('validation.required', ['attribute' => 'email']),
|
2020-09-12 11:53:28 +02:00
|
|
|
'contacts.*.password.min' => ctrans('texts.password_strength'),
|
|
|
|
'contacts.*.password.regex' => ctrans('texts.password_strength'),
|
|
|
|
'contacts.*.password.string' => ctrans('texts.password_strength'),
|
2018-11-10 14:24:36 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-12-20 12:23:09 +01:00
|
|
|
protected function prepareForValidation()
|
2019-10-08 13:14:23 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($input['group_settings_id'])) {
|
2019-11-10 22:12:21 +01:00
|
|
|
$input['group_settings_id'] = $this->decodePrimaryKey($input['group_settings_id']);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-11-10 22:12:21 +01:00
|
|
|
|
2021-01-06 09:50:13 +01:00
|
|
|
/* If the user removes the currency we must always set the default */
|
|
|
|
if (array_key_exists('settings', $input) && ! array_key_exists('currency_id', $input['settings'])) {
|
|
|
|
$input['settings']['currency_id'] = (string) auth()->user()->company()->settings->currency_id;
|
|
|
|
}
|
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
$input = $this->decodePrimaryKeys($input);
|
2020-04-21 07:16:45 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (array_key_exists('settings', $input)) {
|
2020-04-21 07:16:45 +02:00
|
|
|
$input['settings'] = $this->filterSaveableSettings($input['settings']);
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-04-21 07:16:45 +02:00
|
|
|
|
2019-11-10 22:12:21 +01:00
|
|
|
$this->replace($input);
|
2019-10-08 13:14:23 +02:00
|
|
|
}
|
2020-04-21 07:16:45 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* For the hosted platform, we restrict the feature settings.
|
|
|
|
*
|
2020-09-06 11:38:10 +02:00
|
|
|
* This method will trim the company settings object
|
|
|
|
* down to the free plan setting properties which
|
2020-04-21 07:16:45 +02:00
|
|
|
* are saveable
|
2020-09-06 11:38:10 +02:00
|
|
|
*
|
2020-04-21 07:16:45 +02:00
|
|
|
* @param object $settings
|
2020-11-01 06:09:09 +01:00
|
|
|
* @return stdClass $settings
|
2020-04-21 07:16:45 +02:00
|
|
|
*/
|
|
|
|
private function filterSaveableSettings($settings)
|
|
|
|
{
|
|
|
|
$account = $this->client->company->account;
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $account->isFreeHostedClient()) {
|
2020-04-21 07:16:45 +02:00
|
|
|
return $settings;
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-04-21 07:16:45 +02:00
|
|
|
|
|
|
|
$saveable_casts = CompanySettings::$free_plan_casts;
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
foreach ($settings as $key => $value) {
|
|
|
|
if (! array_key_exists($key, $saveable_casts)) {
|
2020-04-21 07:16:45 +02:00
|
|
|
unset($settings->{$key});
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-04-21 07:16:45 +02:00
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
return $settings;
|
2020-04-21 07:16:45 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|