1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Requests/Client/StoreClientRequest.php

204 lines
7.2 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. 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
*/
namespace App\Http\Requests\Client;
2019-10-29 10:51:23 +01:00
use App\DataMapper\ClientSettings;
use App\Http\Requests\Request;
use App\Http\ValidationRules\Client\CountryCodeExistsRule;
use App\Http\ValidationRules\Ninja\CanStoreClientsRule;
use App\Http\ValidationRules\ValidClientGroupSettingsRule;
use App\Models\Client;
use App\Models\GroupSetting;
use App\Utils\Traits\MakesHash;
use Illuminate\Support\Facades\Cache;
use Illuminate\Validation\Rule;
class StoreClientRequest 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', Client::class);
}
public function rules()
2022-04-21 04:07:08 +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,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,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
2020-06-22 13:41:04 +02:00
}
2021-03-21 21:21:51 +01:00
if (isset($this->number)) {
$rules['number'] = Rule::unique('clients')->where('company_id', auth()->user()->company()->id);
}
2022-04-01 02:35:39 +02:00
$rules['country_id'] = 'integer|nullable';
2021-03-21 21:21:51 +01:00
if(isset($this->currency_code)){
$rules['currency_code'] = 'sometimes|exists:currencies,code';
}
if(isset($this->country_code)){
$rules['country_code'] = new CountryCodeExistsRule();
}
/* Ensure we have a client name, and that all emails are unique*/
//$rules['name'] = 'required|min:1';
$rules['settings'] = new ValidClientGroupSettingsRule();
2021-08-13 10:45:19 +02:00
$rules['contacts'] = 'array';
2021-01-13 12:52:30 +01:00
$rules['contacts.*.email'] = 'bail|nullable|distinct|sometimes|email';
$rules['contacts.*.password'] = [
'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
];
if (auth()->user()->company()->account->isFreeHostedClient()) {
2022-03-06 04:41:08 +01:00
$rules['id'] = new CanStoreClientsRule(auth()->user()->company()->id);
}
2019-03-28 10:05:13 +01:00
$rules['number'] = ['nullable',Rule::unique('clients')->where('company_id', auth()->user()->company()->id)];
$rules['id_number'] = ['nullable',Rule::unique('clients')->where('company_id', auth()->user()->company()->id)];
2019-03-28 10:05:13 +01:00
return $rules;
}
protected function prepareForValidation()
2019-05-10 08:08:33 +02:00
{
$input = $this->all();
2022-02-15 22:50:28 +01:00
$settings = ClientSettings::defaults();
if (array_key_exists('settings', $input) && ! empty($input['settings'])) {
foreach ($input['settings'] as $key => $value) {
2022-04-09 08:02:12 +02:00
if($key == 'default_task_rate')
$value = floatval($value);
$settings->{$key} = $value;
}
}
$input = $this->decodePrimaryKeys($input);
if(isset($input['group_settings_id']))
$input['group_settings_id'] = $this->decodePrimaryKey($input['group_settings_id']);
//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!!
if (! property_exists($settings, 'currency_id') && isset($input['group_settings_id'])) {
$group_settings = GroupSetting::find($input['group_settings_id']);
if ($group_settings && property_exists($group_settings->settings, 'currency_id') && isset($group_settings->settings->currency_id)) {
$settings->currency_id = (string) $group_settings->settings->currency_id;
} else {
$settings->currency_id = (string) auth()->user()->company()->settings->currency_id;
}
} elseif (! property_exists($settings, 'currency_id')) {
$settings->currency_id = (string) auth()->user()->company()->settings->currency_id;
}
if (isset($input['currency_code'])) {
$settings->currency_id = $this->getCurrencyCode($input['currency_code']);
}
2022-04-01 02:35:39 +02:00
if (isset($input['language_code'])) {
$settings->language_id = $this->getLanguageId($input['language_code']);
}
$input['settings'] = $settings;
2021-07-20 07:09:02 +02:00
if (isset($input['country_code'])) {
$input['country_id'] = $this->getCountryCode($input['country_code']);
}
if (isset($input['shipping_country_code'])) {
$input['shipping_country_id'] = $this->getCountryCode($input['shipping_country_code']);
}
2022-01-14 11:24:20 +01:00
/* If there is no number, just unset it here. */
if(array_key_exists('number', $input) && ( is_null($input['number']) || empty($input['number'])))
unset($input['number']);
$this->replace($input);
2019-05-10 08:08:33 +02:00
}
public function messages()
{
return [
// 'unique' => ctrans('validation.unique', ['attribute' => ['email','number']),
//'required' => trans('validation.required', ['attribute' => 'email']),
'contacts.*.email.required' => ctrans('validation.email', ['attribute' => 'email']),
'currency_code' => 'Currency code does not exist',
];
}
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();
if($language)
return (string) $language->id;
return "";
}
private function getCountryCode($country_code)
{
$countries = Cache::get('countries');
$country = $countries->filter(function ($item) use ($country_code) {
return $item->iso_3166_2 == $country_code || $item->iso_3166_3 == $country_code;
})->first();
if($country)
return (string) $country->id;
return "";
}
private function getCurrencyCode($code)
{
$currencies = Cache::get('currencies');
$currency = $currencies->filter(function ($item) use ($code) {
return $item->code == $code;
})->first();
if($currency)
return (string) $currency->id;
return "";
}
}