2019-10-05 00:58:51 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\GroupSetting;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-11-24 07:37:53 +01:00
|
|
|
use App\Http\ValidationRules\ValidClientGroupSettingsRule;
|
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-11 13:21:19 +01:00
|
|
|
$this->sanitize();
|
2019-10-05 00:58:51 +02:00
|
|
|
|
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-11-11 13:21:19 +01:00
|
|
|
public function sanitize()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
|
|
|
|
return $this->all();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-10-05 00:58:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
}
|