mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 10:33:34 -05:00 
			
		
		
		
	* Filter properties which can be saved on free accounts * Self Updater * Fixes for tests * Refactor for settings * Working on feature permissions - Settings Saver * Fixes for events on self-updater * Working on Self Updater * Working on free /pro settings saver * Implement free/pro/enterprise saving for settings * Update company request * Implement settings saver for hosted platform for clients and group level settings * Implement quotas for hosted version * Validation rules for hosted platform"
		
			
				
	
	
		
			82 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://opensource.org/licenses/AAL
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Http\Requests\GroupSetting;
 | 
						|
 | 
						|
use App\DataMapper\CompanySettings;
 | 
						|
use App\Http\Requests\Request;
 | 
						|
use App\Http\ValidationRules\ValidClientGroupSettingsRule;
 | 
						|
use App\Utils\Ninja;
 | 
						|
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()
 | 
						|
    {
 | 
						|
        $rules['settings'] = new ValidClientGroupSettingsRule();
 | 
						|
        
 | 
						|
        return $rules;
 | 
						|
    }
 | 
						|
 | 
						|
    protected function prepareForValidation()
 | 
						|
    {
 | 
						|
        $input = $this->all();
 | 
						|
 | 
						|
            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 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;
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
}
 |