2019-10-05 00:58:51 +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-10-05 00:58:51 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\GroupSetting;
|
|
|
|
|
2020-04-21 07:16:45 +02:00
|
|
|
use App\DataMapper\CompanySettings;
|
2019-10-05 00:58:51 +02:00
|
|
|
use App\Http\Requests\Request;
|
2019-11-24 07:37:53 +01:00
|
|
|
use App\Http\ValidationRules\ValidClientGroupSettingsRule;
|
2020-04-21 07:16:45 +02:00
|
|
|
use App\Utils\Ninja;
|
2019-10-05 00:58:51 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class UpdateGroupSettingRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('edit', $this->group_setting);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2019-11-24 07:37:53 +01:00
|
|
|
$rules['settings'] = new ValidClientGroupSettingsRule();
|
2019-10-29 10:51:23 +01:00
|
|
|
|
|
|
|
return $rules;
|
2019-10-05 00:58:51 +02:00
|
|
|
}
|
|
|
|
|
2019-12-20 12:23:09 +01:00
|
|
|
protected function prepareForValidation()
|
2019-11-11 13:21:19 +01:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2020-04-21 07:16:45 +02:00
|
|
|
if(array_key_exists('settings', $input))
|
|
|
|
$input['settings'] = $this->filterSaveableSettings($input['settings']);
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$this->replace($input);
|
2019-11-11 13:21:19 +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->group_setting->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-12-30 22:59:12 +01:00
|
|
|
}
|