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
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @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-12-08 11:28:52 +01:00
|
|
|
use App\Factory\UserFactory;
|
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-12-08 11:28:52 +01:00
|
|
|
use App\Http\ValidationRules\ValidUserForCompany;
|
|
|
|
use App\Libraries\MultiDB;
|
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-11-21 09:38:57 +01:00
|
|
|
return auth()->user()->isAdmin();
|
2019-04-27 11:20:03 +02:00
|
|
|
}
|
|
|
|
|
2019-04-28 12:25:18 +02:00
|
|
|
public function rules()
|
|
|
|
{
|
2019-12-08 11:28:52 +01:00
|
|
|
$rules = [];
|
|
|
|
|
|
|
|
$rules['first_name'] = 'required|string|max:100';
|
|
|
|
$rules['last_name'] = 'required|string|max:100';
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (config('ninja.db.multi_db_enabled')) {
|
2019-12-08 11:28:52 +01:00
|
|
|
$rules['email'] = new ValidUserForCompany();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $rules;
|
2019-06-12 06:22:05 +02:00
|
|
|
}
|
2019-04-27 11:20:03 +02:00
|
|
|
|
2019-12-20 12:23:09 +01:00
|
|
|
protected function prepareForValidation()
|
2019-04-27 11:20:03 +02:00
|
|
|
{
|
2019-06-12 06:22:05 +02:00
|
|
|
$input = $this->all();
|
2019-04-27 11:20:03 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($input['company_user'])) {
|
|
|
|
if (!isset($input['company_user']['is_admin'])) {
|
2019-11-22 22:10:53 +01:00
|
|
|
$input['company_user']['is_admin'] = false;
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-06-12 06:22:05 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (!isset($input['company_user']['permissions'])) {
|
2019-11-21 09:38:57 +01:00
|
|
|
$input['company_user']['permissions'] = '';
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-06-12 06:22:05 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (!isset($input['company_user']['settings'])) {
|
2020-02-26 04:26:07 +01:00
|
|
|
//$input['company_user']['settings'] = DefaultSettings::userSettings();
|
|
|
|
$input['company_user']['settings'] = null;
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
|
|
|
} else {
|
2019-11-21 09:38:57 +01:00
|
|
|
$input['company_user'] = [
|
2020-02-26 04:26:07 +01:00
|
|
|
//'settings' => DefaultSettings::userSettings(),
|
|
|
|
'settings' => null,
|
2019-11-21 09:38:57 +01:00
|
|
|
'permissions' => '',
|
|
|
|
];
|
|
|
|
}
|
2019-04-27 11:20:03 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$this->replace($input);
|
2019-11-21 09:38:57 +01:00
|
|
|
}
|
|
|
|
|
2019-04-27 11:20:03 +02:00
|
|
|
|
2019-12-08 11:28:52 +01:00
|
|
|
public function fetchUser() :User
|
|
|
|
{
|
|
|
|
$user = MultiDB::hasUser(['email' => $this->input('email')]);
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (!$user) {
|
2019-12-08 11:28:52 +01:00
|
|
|
$user = UserFactory::create();
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-12-08 11:28:52 +01:00
|
|
|
|
|
|
|
return $user;
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|