invoiceninja/app/Http/Requests/Company/UpdateCompanyRequest.php

137 lines
4 KiB
PHP
Raw Permalink Normal View History

2019-06-17 09:58:33 +10:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-06-17 09:58:33 +10:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-06-17 09:58:33 +10:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2019-06-17 09:58:33 +10:00
*/
namespace App\Http\Requests\Company;
use App\DataMapper\CompanySettings;
2019-06-17 09:58:33 +10:00
use App\Http\Requests\Request;
use App\Http\ValidationRules\Company\ValidSubdomain;
2019-10-10 12:01:38 +11:00
use App\Http\ValidationRules\ValidSettingsRule;
use App\Utils\Ninja;
use App\Utils\Traits\MakesHash;
2019-06-17 09:58:33 +10:00
class UpdateCompanyRequest extends Request
{
use MakesHash;
2022-11-19 10:58:32 +11:00
private array $protected_input = [
'client_portal_privacy_policy',
'client_portal_terms',
'portal_custom_footer',
'portal_custom_css',
'portal_custom_head'
];
2019-06-17 09:58:33 +10: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 13:12:51 +10: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 11:39:43 +11:00
$rules['matomo_id'] = 'nullable|integer';
2021-09-30 08:14:48 +10:00
// $rules['client_registration_fields'] = 'array';
2021-04-28 13:21:27 +10: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-17 07:29:03 +10: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 09:58:33 +10:00
}
2022-06-24 11:55:41 +10:00
public function prepareForValidation()
{
$input = $this->all();
2021-05-02 19:14:42 +10:00
if (array_key_exists('portal_domain', $input) && strlen($input['portal_domain']) > 1) {
2021-07-07 13:19:19 +10:00
$input['portal_domain'] = $this->addScheme($input['portal_domain']);
$input['portal_domain'] = rtrim(strtolower($input['portal_domain']), "/");
2021-12-01 11:09:22 +11:00
}
2021-05-02 19:14:42 +10:00
if (array_key_exists('settings', $input)) {
2022-06-23 15:34:15 +10: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
2023-03-09 23:29:44 +11:00
* @return \stdClass $settings
*/
private function filterSaveableSettings($settings)
{
$account = $this->company->account;
2023-02-16 12:36:09 +11:00
if (Ninja::isHosted()) {
foreach ($this->protected_input as $protected_var) {
2022-11-19 10:58:32 +11:00
$settings[$protected_var] = str_replace("script", "", $settings[$protected_var]);
}
}
2023-02-16 12:36:09 +11:00
if (isset($settings['email_style_custom'])) {
2022-12-21 12:27:47 +11:00
$settings['email_style_custom'] = str_replace(['{{','}}'], ['',''], $settings['email_style_custom']);
2023-02-16 12:36:09 +11:00
}
2022-11-21 08:28:47 +11: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 13:19:19 +10:00
private function addScheme($url, $scheme = 'https://')
{
2023-02-16 12:36:09 +11:00
if (Ninja::isHosted()) {
2022-11-24 20:33:52 +11:00
$url = str_replace('http://', '', $url);
$url = parse_url($url, PHP_URL_SCHEME) === null ? $scheme.$url : $url;
}
2021-07-07 13:19:19 +10:00
return rtrim($url, '/');
2021-07-07 13:19:19 +10:00
}
2019-07-04 14:04:01 +10:00
}