2019-06-17 01:58:33 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-06-17 01:58:33 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-06-17 01:58:33 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-06-17 01:58:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Company;
|
|
|
|
|
2021-05-20 06:13:54 +02:00
|
|
|
use App\Utils\Ninja;
|
2024-01-24 05:02:38 +01:00
|
|
|
use App\Models\Company;
|
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use App\Http\Requests\Request;
|
2020-03-06 12:10:59 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2024-01-24 05:02:38 +01:00
|
|
|
use App\Http\ValidationRules\ValidSettingsRule;
|
|
|
|
use App\Http\ValidationRules\Company\ValidSubdomain;
|
|
|
|
use App\Http\ValidationRules\Company\ValidCompanyQuantity;
|
2019-06-17 01:58:33 +02:00
|
|
|
|
|
|
|
class StoreCompanyRequest extends Request
|
|
|
|
{
|
2020-03-06 12:10:59 +01:00
|
|
|
use MakesHash;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-06-17 01:58:33 +02: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
|
2019-06-17 01:58:33 +02:00
|
|
|
{
|
2023-08-07 06:50:08 +02:00
|
|
|
/** @var \App\Models\User auth()->user */
|
|
|
|
$user = auth()->user();
|
|
|
|
return $user->can('create', Company::class);
|
2019-06-17 01:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2021-04-28 05:12:51 +02:00
|
|
|
$input = $this->all();
|
|
|
|
|
2019-11-12 12:36:24 +01:00
|
|
|
$rules = [];
|
2019-06-17 01:58:33 +02:00
|
|
|
|
2020-03-10 23:20:09 +01:00
|
|
|
$rules['name'] = new ValidCompanyQuantity();
|
2019-11-12 12:36:24 +01:00
|
|
|
$rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb
|
2019-12-30 22:59:12 +01:00
|
|
|
$rules['settings'] = new ValidSettingsRule();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-04-28 05:12:51 +02:00
|
|
|
if (isset($input['portal_mode']) && ($input['portal_mode'] == 'domain' || $input['portal_mode'] == 'iframe')) {
|
2019-11-27 10:47:59 +01:00
|
|
|
$rules['portal_domain'] = 'sometimes|url';
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2022-06-21 11:57:17 +02:00
|
|
|
if (Ninja::isHosted()) {
|
2023-08-07 06:50:08 +02:00
|
|
|
$rules['subdomain'] = ['nullable', 'regex:/^[a-zA-Z0-9][a-zA-Z0-9.-]+[a-zA-Z0-9]$/', new ValidSubdomain()];
|
2022-06-21 11:57:17 +02:00
|
|
|
} else {
|
2021-05-20 06:13:54 +02:00
|
|
|
$rules['subdomain'] = 'nullable|alpha_num';
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2024-02-16 03:48:40 +01:00
|
|
|
$rules['smtp_host'] = 'sometimes|string|nullable';
|
2024-02-18 21:58:15 +01:00
|
|
|
$rules['smtp_port'] = 'sometimes|integer|nullable';
|
2024-02-16 03:06:03 +01:00
|
|
|
$rules['smtp_encryption'] = 'sometimes|string';
|
2024-02-16 03:48:40 +01:00
|
|
|
$rules['smtp_local_domain'] = 'sometimes|string|nullable';
|
|
|
|
$rules['smtp_encryption'] = 'sometimes|string|nullable';
|
|
|
|
$rules['smtp_local_domain'] = 'sometimes|string|nullable';
|
|
|
|
|
2024-02-16 03:06:03 +01:00
|
|
|
// $rules['smtp_verify_peer'] = 'sometimes|in:true,false';
|
|
|
|
|
2019-11-12 12:36:24 +01:00
|
|
|
return $rules;
|
2019-06-17 01:58:33 +02:00
|
|
|
}
|
2020-03-02 12:03:40 +01:00
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2020-03-02 12:03:40 +01:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (!isset($input['name'])) {
|
2022-11-24 10:33:52 +01:00
|
|
|
$input['name'] = 'Untitled Company';
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2022-11-24 10:33:52 +01:00
|
|
|
|
2024-02-16 03:06:03 +01:00
|
|
|
if (isset($input['google_analytics_url'])) {
|
2020-04-10 13:56:02 +02:00
|
|
|
$input['google_analytics_key'] = $input['google_analytics_url'];
|
2020-04-15 02:30:52 +02:00
|
|
|
}
|
2020-04-10 13:56:02 +02:00
|
|
|
|
2024-02-16 03:06:03 +01:00
|
|
|
if (isset($input['portal_domain'])) {
|
2022-11-23 23:37:14 +01:00
|
|
|
$input['portal_domain'] = rtrim(strtolower($input['portal_domain']), "/");
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-12-01 01:09:22 +01:00
|
|
|
|
2024-01-24 05:02:38 +01:00
|
|
|
if(Ninja::isHosted() && !isset($input['subdomain'])) {
|
|
|
|
$input['subdomain'] = MultiDB::randomSubdomainGenerator();
|
|
|
|
}
|
|
|
|
|
2024-02-16 03:06:03 +01:00
|
|
|
if(isset($input['smtp_username']) && strlen(str_replace("*", "", $input['smtp_username'])) < 2) {
|
|
|
|
unset($input['smtp_username']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isset($input['smtp_password']) && strlen(str_replace("*", "", $input['smtp_password'])) < 2) {
|
|
|
|
unset($input['smtp_password']);
|
|
|
|
}
|
|
|
|
|
2024-02-18 21:58:15 +01:00
|
|
|
if(isset($input['smtp_port'])) {
|
|
|
|
$input['smtp_port'] = (int) $input['smtp_port'];
|
|
|
|
}
|
|
|
|
|
2024-02-16 03:06:03 +01:00
|
|
|
if(isset($input['smtp_verify_peer']) && is_string($input['smtp_verify_peer']))
|
|
|
|
$input['smtp_verify_peer'] == 'true' ? true : false;
|
|
|
|
|
2020-03-02 12:03:40 +01:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2019-06-17 01:58:33 +02:00
|
|
|
}
|