2019-04-27 19:20:03 +10:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10: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 19:20:03 +10:00
|
|
|
|
|
|
|
|
namespace App\Http\Requests\User;
|
|
|
|
|
|
2019-06-12 14:22:05 +10:00
|
|
|
use App\DataMapper\DefaultSettings;
|
2019-04-27 19:20:03 +10:00
|
|
|
use App\Http\Requests\Request;
|
2019-06-05 14:06:27 +10:00
|
|
|
use App\Http\ValidationRules\NewUniqueUserRule;
|
2019-04-27 19:20:03 +10: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 14:22:05 +10:00
|
|
|
|
2019-11-21 19:38:57 +11:00
|
|
|
return auth()->user()->isAdmin();
|
2019-06-12 14:22:05 +10:00
|
|
|
|
2019-04-27 19:20:03 +10:00
|
|
|
}
|
|
|
|
|
|
2019-04-28 20:25:18 +10:00
|
|
|
public function rules()
|
|
|
|
|
{
|
2019-06-12 14:22:05 +10:00
|
|
|
|
|
|
|
|
$this->sanitize();
|
|
|
|
|
|
2019-04-28 20:25:18 +10:00
|
|
|
return [
|
|
|
|
|
'first_name' => 'required|string|max:100',
|
|
|
|
|
'last_name' => 'required|string:max:100',
|
2019-06-05 14:06:27 +10:00
|
|
|
'email' => new NewUniqueUserRule(),
|
2019-04-28 20:25:18 +10:00
|
|
|
];
|
|
|
|
|
|
2019-06-12 14:22:05 +10:00
|
|
|
}
|
2019-04-27 19:20:03 +10:00
|
|
|
|
|
|
|
|
public function sanitize()
|
|
|
|
|
{
|
2019-06-12 14:22:05 +10:00
|
|
|
$input = $this->all();
|
2019-04-27 19:20:03 +10:00
|
|
|
|
2019-11-21 19:38:57 +11:00
|
|
|
if(isset($input['company_user']))
|
|
|
|
|
{
|
2019-11-23 08:10:53 +11:00
|
|
|
if(!isset($input['company_user']['is_admin']))
|
|
|
|
|
$input['company_user']['is_admin'] = false;
|
2019-06-12 14:22:05 +10:00
|
|
|
|
2019-11-21 19:38:57 +11:00
|
|
|
if(!isset($input['company_user']['permissions']))
|
|
|
|
|
$input['company_user']['permissions'] = '';
|
2019-06-12 14:22:05 +10:00
|
|
|
|
2019-11-21 19:38:57 +11:00
|
|
|
if(!isset($input['company_user']['settings']))
|
|
|
|
|
$input['company_user']['settings'] = json_encode(DefaultSettings::userSettings());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
$input['company_user'] = [
|
|
|
|
|
'settings' => json_encode(DefaultSettings::userSettings()),
|
|
|
|
|
'permissions' => '',
|
|
|
|
|
];
|
|
|
|
|
}
|
2019-04-27 19:20:03 +10:00
|
|
|
|
2019-06-12 14:22:05 +10:00
|
|
|
$this->replace($input);
|
2019-11-24 17:37:53 +11:00
|
|
|
|
2019-11-21 19:38:57 +11:00
|
|
|
return $this->all();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-27 19:20:03 +10:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|