mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-28 03:34:32 -06:00
61 lines
1.3 KiB
PHP
61 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* UserFormRequest.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 UserFormRequest
|
|
*
|
|
*
|
|
* @package FireflyIII\Http\Requests
|
|
*/
|
|
class UserFormRequest extends Request
|
|
{
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
// Only allow logged in users
|
|
return auth()->check();
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getUserData(): array
|
|
{
|
|
return [
|
|
'email' => trim($this->get('email')),
|
|
'blocked' => intval($this->get('blocked')),
|
|
'blocked_code' => trim($this->get('blocked_code')),
|
|
'password' => trim($this->get('password')),
|
|
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'id' => 'required|exists:users,id',
|
|
'email' => 'required',
|
|
'password' => 'confirmed',
|
|
'blocked_code' => 'between:0,30',
|
|
'blocked' => 'between:0,1|numeric',
|
|
];
|
|
}
|
|
}
|