2019-04-27 11:20:03 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2019-04-27 11:20:03 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\User;
|
|
|
|
|
2019-06-12 06:22:05 +02:00
|
|
|
use App\DataMapper\DefaultSettings;
|
2019-04-27 11:20:03 +02:00
|
|
|
use App\Http\Requests\Request;
|
2019-06-05 06:06:27 +02:00
|
|
|
use App\Http\ValidationRules\NewUniqueUserRule;
|
2019-04-27 11:20:03 +02:00
|
|
|
use App\Models\User;
|
|
|
|
|
|
|
|
class StoreUserRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2019-06-12 06:22:05 +02:00
|
|
|
|
2019-04-27 11:20:03 +02:00
|
|
|
return auth()->user()->can('create', User::class);
|
2019-06-12 06:22:05 +02:00
|
|
|
|
2019-04-27 11:20:03 +02:00
|
|
|
}
|
|
|
|
|
2019-04-28 12:25:18 +02:00
|
|
|
public function rules()
|
|
|
|
{
|
2019-06-12 06:22:05 +02:00
|
|
|
|
|
|
|
$this->sanitize();
|
|
|
|
|
2019-04-28 12:25:18 +02:00
|
|
|
return [
|
|
|
|
'first_name' => 'required|string|max:100',
|
|
|
|
'last_name' => 'required|string:max:100',
|
2019-06-05 06:06:27 +02:00
|
|
|
'email' => new NewUniqueUserRule(),
|
2019-06-12 06:22:05 +02:00
|
|
|
'is_admin' => 'required',
|
2019-04-28 12:25:18 +02:00
|
|
|
];
|
|
|
|
|
2019-06-12 06:22:05 +02:00
|
|
|
}
|
2019-04-27 11:20:03 +02:00
|
|
|
|
|
|
|
public function sanitize()
|
|
|
|
{
|
2019-06-12 06:22:05 +02:00
|
|
|
$input = $this->all();
|
2019-04-27 11:20:03 +02:00
|
|
|
|
2019-06-12 06:22:05 +02:00
|
|
|
if(!isset($input['is_admin']))
|
|
|
|
$input['is_admin'] = null;
|
|
|
|
|
|
|
|
if(!isset($input['permissions']))
|
|
|
|
$input['permissions'] = json_encode([]);
|
|
|
|
|
|
|
|
if(!isset($input['settings']))
|
|
|
|
$input['settings'] = json_encode(DefaultSettings::userSettings());
|
2019-04-27 11:20:03 +02:00
|
|
|
|
2019-06-12 06:22:05 +02:00
|
|
|
$this->replace($input);
|
2019-04-27 11:20:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|