2019-06-17 01:58:33 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-06-17 01:58:33 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Company;
|
|
|
|
|
2020-03-31 13:52:21 +02:00
|
|
|
use App\DataMapper\CompanySettings;
|
2019-06-17 01:58:33 +02:00
|
|
|
use App\Http\Requests\Request;
|
2019-10-10 03:01:38 +02:00
|
|
|
use App\Http\ValidationRules\ValidSettingsRule;
|
2020-04-21 07:16:45 +02:00
|
|
|
use App\Utils\Ninja;
|
2020-03-31 13:52:21 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-06-17 01:58:33 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class UpdateCompanyRequest extends Request
|
|
|
|
{
|
2020-03-31 13:52:21 +02:00
|
|
|
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()
|
|
|
|
{
|
2019-11-12 12:36:24 +01:00
|
|
|
$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';
|
2019-11-26 11:32:01 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($rules['portal_mode']) && ($rules['portal_mode'] == 'domain' || $rules['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 {
|
2019-11-27 10:47:59 +01:00
|
|
|
$rules['portal_domain'] = 'nullable|alpha_num';
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-11-12 12:36:24 +01:00
|
|
|
|
2020-04-29 15:24:52 +02:00
|
|
|
// if($this->company->account->isPaidHostedClient()) {
|
|
|
|
// return $settings;
|
|
|
|
// }
|
2020-04-21 07:16:45 +02:00
|
|
|
|
2019-11-12 12:36:24 +01:00
|
|
|
return $rules;
|
2019-06-17 01:58:33 +02:00
|
|
|
}
|
2020-03-06 12:10:59 +01:00
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
2020-04-21 07:16:45 +02:00
|
|
|
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
if(array_key_exists('settings', $input))
|
|
|
|
$input['settings'] = $this->filterSaveableSettings($input['settings']);
|
|
|
|
|
|
|
|
$this->replace($input);
|
2020-03-06 12:10:59 +01:00
|
|
|
}
|
2020-04-21 07:16:45 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 object $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
|
|
|
}
|