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

109 lines
3.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
*
* @copyright Copyright (c) 2021. 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;
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';
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';
}
// if($this->company->account->isPaidHostedClient()) {
// return $settings;
// }
return $rules;
2019-06-17 01:58:33 +02:00
}
protected function prepareForValidation()
{
$input = $this->all();
2021-05-02 11:14:42 +02:00
2021-05-17 00:09:20 +02:00
// if(array_key_exists('portal_domain', $input) && strlen($input['portal_domain']) > 1)
// $input['portal_domain'] = str_replace("http:", "https:", $input['portal_domain']);
2021-05-02 11:14:42 +02:00
if (array_key_exists('settings', $input)) {
$input['settings'] = $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;
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;
}
2019-07-04 06:04:01 +02:00
}