2018-12-05 09:23:12 +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
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
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;
|
2021-11-01 04:09:41 +01:00
|
|
|
use App\Http\ValidationRules\Client\CountryCodeExistsRule;
|
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;
|
2020-07-02 12:55:31 +02:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
2021-03-20 00:06:44 +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;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2018-12-05 09:23:12 +01:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2024-01-14 05:05:00 +01:00
|
|
|
public function authorize(): bool
|
2018-12-05 09:23:12 +01:00
|
|
|
{
|
2023-08-20 10:44:10 +02:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $user->can('create', Client::class);
|
2018-12-05 09:23:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
2022-04-21 04:07:08 +02:00
|
|
|
{
|
2023-08-20 10:44:10 +02:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
2023-03-18 08:24:56 +01:00
|
|
|
if ($this->file('documents') && is_array($this->file('documents'))) {
|
2023-02-27 10:12:59 +01:00
|
|
|
$rules['documents.*'] = $this->file_validation;
|
2023-03-18 08:24:56 +01:00
|
|
|
} elseif ($this->file('documents')) {
|
2023-02-27 10:12:59 +01:00
|
|
|
$rules['documents'] = $this->file_validation;
|
2023-03-18 08:24:56 +01:00
|
|
|
}
|
2023-02-27 10:12:59 +01:00
|
|
|
|
|
|
|
if ($this->file('file') && is_array($this->file('file'))) {
|
|
|
|
$rules['file.*'] = $this->file_validation;
|
|
|
|
} elseif ($this->file('file')) {
|
|
|
|
$rules['file'] = $this->file_validation;
|
2020-06-22 13:41:04 +02:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-03-21 21:21:51 +01:00
|
|
|
if (isset($this->number)) {
|
2023-08-20 10:44:10 +02:00
|
|
|
$rules['number'] = Rule::unique('clients')->where('company_id', $user->company()->id);
|
2021-03-21 21:21:51 +01:00
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-04-01 02:35:39 +02:00
|
|
|
$rules['country_id'] = 'integer|nullable';
|
2021-03-21 21:21:51 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (isset($this->currency_code)) {
|
2021-11-01 04:09:41 +01:00
|
|
|
$rules['currency_code'] = 'sometimes|exists:currencies,code';
|
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (isset($this->country_code)) {
|
2021-11-01 04:09:41 +01:00
|
|
|
$rules['country_code'] = new CountryCodeExistsRule();
|
|
|
|
}
|
|
|
|
|
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-11-24 07:37:53 +01:00
|
|
|
$rules['settings'] = new ValidClientGroupSettingsRule();
|
2022-09-06 09:36:56 +02:00
|
|
|
$rules['contacts'] = 'bail|array';
|
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'] = [
|
2022-06-23 05:12:28 +02:00
|
|
|
'bail',
|
2022-06-21 11:57:17 +02:00
|
|
|
'nullable',
|
|
|
|
'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-03-01 06:00:54 +01:00
|
|
|
|
2023-08-20 10:44:10 +02:00
|
|
|
if ($user->company()->account->isFreeHostedClient()) {
|
|
|
|
$rules['id'] = new CanStoreClientsRule($user->company()->id);
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2019-03-28 10:05:13 +01:00
|
|
|
|
2023-08-20 10:44:10 +02:00
|
|
|
$rules['number'] = ['bail', 'nullable', Rule::unique('clients')->where('company_id', $user->company()->id)];
|
|
|
|
$rules['id_number'] = ['bail', 'nullable', Rule::unique('clients')->where('company_id', $user->company()->id)];
|
2024-02-12 10:16:35 +01:00
|
|
|
$rules['classification'] = 'bail|sometimes|nullable|in:individual,business,company,partnership,trust,charity,government,other';
|
2024-02-16 19:46:26 +01:00
|
|
|
$rules['documents'] = 'bail|sometimes|array';
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2019-03-28 10:05:13 +01:00
|
|
|
return $rules;
|
2018-12-07 11:57:20 +01:00
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2019-05-10 08:08:33 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
2023-08-20 10:44:10 +02:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2022-06-23 05:12:28 +02:00
|
|
|
/* Default settings */
|
|
|
|
$settings = (array)ClientSettings::defaults();
|
|
|
|
|
|
|
|
/* Stub settings if they don't exist */
|
2023-02-16 02:36:09 +01:00
|
|
|
if (!array_key_exists('settings', $input)) {
|
2022-06-23 05:12:28 +02:00
|
|
|
$input['settings'] = [];
|
2023-02-16 02:36:09 +01:00
|
|
|
} elseif (is_object($input['settings'])) {
|
2022-06-24 03:55:41 +02:00
|
|
|
$input['settings'] = (array)$input['settings'];
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2022-06-23 05:12:28 +02:00
|
|
|
/* Merge default into base settings */
|
|
|
|
$input['settings'] = array_merge($input['settings'], $settings);
|
|
|
|
|
2022-06-23 07:34:15 +02:00
|
|
|
/* Type and property enforcement */
|
2023-02-16 02:36:09 +01:00
|
|
|
foreach ($input['settings'] as $key => $value) {
|
2022-06-23 05:12:28 +02:00
|
|
|
if ($key == 'default_task_rate') {
|
|
|
|
$value = floatval($value);
|
|
|
|
$input['settings'][$key] = $value;
|
2020-03-04 05:06:27 +01:00
|
|
|
}
|
2022-06-23 07:34:15 +02:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($key == 'translations') {
|
2022-06-23 07:34:15 +02:00
|
|
|
unset($input['settings']['translations']);
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-03-06 06:08:44 +01:00
|
|
|
|
2022-06-23 05:12:28 +02:00
|
|
|
/* Convert hashed IDs to IDs*/
|
2020-10-22 08:46:02 +02:00
|
|
|
$input = $this->decodePrimaryKeys($input);
|
|
|
|
|
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!!
|
2022-06-23 05:12:28 +02:00
|
|
|
if (! array_key_exists('currency_id', $input['settings']) && isset($input['group_settings_id'])) {
|
2020-03-06 06:08:44 +01:00
|
|
|
$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)) {
|
2022-06-23 01:24:56 +02:00
|
|
|
$input['settings']['currency_id'] = (string) $group_settings->settings->currency_id;
|
2020-03-21 06:37:30 +01:00
|
|
|
} else {
|
2023-08-20 10:44:10 +02:00
|
|
|
$input['settings']['currency_id'] = (string) $user->company()->settings->currency_id;
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2022-06-23 05:12:28 +02:00
|
|
|
} elseif (! array_key_exists('currency_id', $input['settings'])) {
|
2023-08-20 10:44:10 +02:00
|
|
|
$input['settings']['currency_id'] = (string) $user->company()->settings->currency_id;
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-03-06 06:08:44 +01:00
|
|
|
|
2020-07-02 12:55:31 +02:00
|
|
|
if (isset($input['currency_code'])) {
|
2022-06-23 01:24:56 +02:00
|
|
|
$input['settings']['currency_id'] = $this->getCurrencyCode($input['currency_code']);
|
2020-07-02 12:55:31 +02:00
|
|
|
}
|
2020-03-06 06:08:44 +01:00
|
|
|
|
2022-04-01 02:35:39 +02:00
|
|
|
if (isset($input['language_code'])) {
|
2022-06-23 01:24:56 +02:00
|
|
|
$input['settings']['language_id'] = $this->getLanguageId($input['language_code']);
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (strlen($input['settings']['language_id']) == 0) {
|
2022-06-23 01:24:56 +02:00
|
|
|
unset($input['settings']['language_id']);
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2022-04-01 02:35:39 +02:00
|
|
|
}
|
|
|
|
|
2021-07-20 07:09:02 +02:00
|
|
|
if (isset($input['country_code'])) {
|
2020-07-02 12:55:31 +02:00
|
|
|
$input['country_id'] = $this->getCountryCode($input['country_code']);
|
2020-07-02 12:56:10 +02:00
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (isset($input['shipping_country_code'])) {
|
2020-07-02 12:56:10 +02:00
|
|
|
$input['shipping_country_id'] = $this->getCountryCode($input['shipping_country_code']);
|
2020-07-02 12:55:31 +02:00
|
|
|
}
|
|
|
|
|
2022-06-23 05:12:28 +02:00
|
|
|
/* If there is a client number, just unset it here. */
|
2022-06-21 11:57:17 +02:00
|
|
|
if (array_key_exists('number', $input) && (is_null($input['number']) || empty($input['number']))) {
|
2022-01-14 11:24:20 +01:00
|
|
|
unset($input['number']);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-01-14 11:24:20 +01:00
|
|
|
|
2022-10-02 08:24:16 +02:00
|
|
|
if (array_key_exists('name', $input)) {
|
|
|
|
$input['name'] = strip_tags($input['name']);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
'contacts.*.email.required' => ctrans('validation.email', ['attribute' => 'email']),
|
2021-11-01 04:09:41 +01:00
|
|
|
'currency_code' => 'Currency code does not exist',
|
2018-12-05 09:23:12 +01:00
|
|
|
];
|
|
|
|
}
|
2020-07-02 12:55:31 +02:00
|
|
|
|
2022-04-01 02:35:39 +02:00
|
|
|
private function getLanguageId($language_code)
|
|
|
|
{
|
|
|
|
$languages = Cache::get('languages');
|
|
|
|
|
|
|
|
$language = $languages->filter(function ($item) use ($language_code) {
|
|
|
|
return $item->locale == $language_code;
|
|
|
|
})->first();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($language) {
|
2022-04-01 02:35:39 +02:00
|
|
|
return (string) $language->id;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-04-01 02:35:39 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
return '';
|
2022-04-01 02:35:39 +02:00
|
|
|
}
|
|
|
|
|
2020-07-02 12:55:31 +02:00
|
|
|
private function getCountryCode($country_code)
|
|
|
|
{
|
|
|
|
$countries = Cache::get('countries');
|
2020-09-06 11:38:10 +02:00
|
|
|
|
|
|
|
$country = $countries->filter(function ($item) use ($country_code) {
|
2020-07-02 12:55:31 +02:00
|
|
|
return $item->iso_3166_2 == $country_code || $item->iso_3166_3 == $country_code;
|
|
|
|
})->first();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($country) {
|
2021-07-20 06:53:43 +02:00
|
|
|
return (string) $country->id;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-07-20 06:53:43 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
return '';
|
2020-07-02 12:55:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function getCurrencyCode($code)
|
|
|
|
{
|
|
|
|
$currencies = Cache::get('currencies');
|
2020-09-06 11:38:10 +02:00
|
|
|
|
|
|
|
$currency = $currencies->filter(function ($item) use ($code) {
|
2020-07-02 12:55:31 +02:00
|
|
|
return $item->code == $code;
|
|
|
|
})->first();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($currency) {
|
2021-11-01 04:09:41 +01:00
|
|
|
return (string) $currency->id;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-11-01 04:09:41 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
return '';
|
2020-07-02 12:55:31 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|