1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Http/Requests/Company/UpdateCompanyRequest.php

137 lines
4.0 KiB
PHP
Raw Normal View History

2019-06-17 01:58:33 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-06-17 01:58:33 +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-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;
use App\DataMapper\CompanySettings;
2019-06-17 01:58:33 +02:00
use App\Http\Requests\Request;
use App\Http\ValidationRules\Company\ValidSubdomain;
2019-10-10 03:01:38 +02:00
use App\Http\ValidationRules\ValidSettingsRule;
use App\Utils\Ninja;
use App\Utils\Traits\MakesHash;
2019-06-17 01:58:33 +02:00
class UpdateCompanyRequest extends Request
{
use MakesHash;
2022-11-19 00:58:32 +01:00
private array $protected_input = [
'client_portal_privacy_policy',
'client_portal_terms',
'portal_custom_footer',
'portal_custom_css',
'portal_custom_head'
];
2019-06-17 01:58:33 +02:00
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->can('edit', $this->company);
}
public function rules()
{
2021-04-28 05:12:51 +02:00
$input = $this->all();
$rules = [];
$rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb
$rules['settings'] = new ValidSettingsRule();
$rules['industry_id'] = 'integer|nullable';
$rules['size_id'] = 'integer|nullable';
$rules['country_id'] = 'integer|nullable';
$rules['work_email'] = 'email|nullable';
2022-12-08 01:39:43 +01:00
$rules['matomo_id'] = 'nullable|integer';
2021-09-30 00:14:48 +02:00
// $rules['client_registration_fields'] = 'array';
2021-04-28 05:21:27 +02:00
if (isset($input['portal_mode']) && ($input['portal_mode'] == 'domain' || $input['portal_mode'] == 'iframe')) {
$rules['portal_domain'] = 'sometimes|url';
} else {
if (Ninja::isHosted()) {
2021-06-16 23:29:03 +02:00
$rules['subdomain'] = ['nullable', 'regex:/^[a-zA-Z0-9.-]+[a-zA-Z0-9]$/', new ValidSubdomain($this->all())];
} else {
$rules['subdomain'] = 'nullable|alpha_num';
}
}
return $rules;
2019-06-17 01:58:33 +02:00
}
2022-06-24 03:55:41 +02:00
public function prepareForValidation()
{
$input = $this->all();
2021-05-02 11:14:42 +02:00
if (array_key_exists('portal_domain', $input) && strlen($input['portal_domain']) > 1) {
2021-07-07 05:19:19 +02:00
$input['portal_domain'] = $this->addScheme($input['portal_domain']);
$input['portal_domain'] = rtrim(strtolower($input['portal_domain']), "/");
2021-12-01 01:09:22 +01:00
}
2021-05-02 11:14:42 +02:00
if (array_key_exists('settings', $input)) {
2022-06-23 07:34:15 +02:00
$input['settings'] = (array)$this->filterSaveableSettings($input['settings']);
}
$this->replace($input);
}
/**
* For the hosted platform, we restrict the feature settings.
*
* This method will trim the company settings object
* down to the free plan setting properties which
* are saveable
*
* @param object $settings
* @return stdClass $settings
*/
private function filterSaveableSettings($settings)
{
$account = $this->company->account;
2023-02-16 02:36:09 +01:00
if (Ninja::isHosted()) {
foreach ($this->protected_input as $protected_var) {
2022-11-19 00:58:32 +01:00
$settings[$protected_var] = str_replace("script", "", $settings[$protected_var]);
}
}
2023-02-16 02:36:09 +01:00
if (isset($settings['email_style_custom'])) {
2022-12-21 02:27:47 +01:00
$settings['email_style_custom'] = str_replace(['{{','}}'], ['',''], $settings['email_style_custom']);
2023-02-16 02:36:09 +01:00
}
2022-11-20 22:28:47 +01:00
if (! $account->isFreeHostedClient()) {
return $settings;
}
$saveable_casts = CompanySettings::$free_plan_casts;
foreach ($settings as $key => $value) {
if (! array_key_exists($key, $saveable_casts)) {
unset($settings->{$key});
}
}
return $settings;
}
2021-07-07 05:19:19 +02:00
private function addScheme($url, $scheme = 'https://')
{
2023-02-16 02:36:09 +01:00
if (Ninja::isHosted()) {
2022-11-24 10:33:52 +01:00
$url = str_replace('http://', '', $url);
$url = parse_url($url, PHP_URL_SCHEME) === null ? $scheme.$url : $url;
}
2021-07-07 05:19:19 +02:00
return rtrim($url, '/');
2021-07-07 05:19:19 +02:00
}
2019-07-04 06:04:01 +02:00
}