firefly-iii/app/Http/Requests/ConfigurationRequest.php

59 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/**
* ConfigurationRequest.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
declare(strict_types = 1);
namespace FireflyIII\Http\Requests;
/**
* Class ConfigurationRequest
*
*
* @package FireflyIII\Http\Requests
*/
class ConfigurationRequest extends Request
{
/**
* @return bool
*/
public function authorize()
{
// Only allow logged in users and admins
2016-09-16 05:15:58 -05:00
return auth()->check() && auth()->user()->hasRole('owner');
}
2016-10-23 05:10:22 -05:00
/**
* @return array
*/
public function getConfigurationData(): array
{
return [
2016-11-07 11:49:35 -06:00
'single_user_mode' => intval($this->get('single_user_mode')) === 1,
'must_confirm_account' => intval($this->get('must_confirm_account')) === 1,
'is_demo_site' => intval($this->get('is_demo_site')) === 1,
2016-10-23 05:10:22 -05:00
];
}
/**
* @return array
*/
public function rules()
{
$rules = [
2016-11-07 11:49:35 -06:00
'single_user_mode' => 'between:0,1|numeric',
'must_confirm_account' => 'between:0,1|numeric',
'is_demo_site' => 'between:0,1|numeric',
];
return $rules;
}
}