2019-04-27 11:20:03 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2019-04-27 11:20:03 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\User;
|
|
|
|
|
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;
|
2021-06-09 14:25:25 +02:00
|
|
|
use App\Http\ValidationRules\Ninja\CanAddUserRule;
|
2021-03-01 23:08:57 +01:00
|
|
|
use App\Http\ValidationRules\User\AttachableUser;
|
2022-11-02 11:30:25 +01:00
|
|
|
use App\Http\ValidationRules\User\HasValidPhoneNumber;
|
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;
|
2021-06-09 11:57:03 +02:00
|
|
|
use App\Utils\Ninja;
|
2019-04-27 11:20:03 +02:00
|
|
|
|
|
|
|
class StoreUserRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2024-01-14 05:05:00 +01:00
|
|
|
public function authorize(): bool
|
2020-09-06 11:38:10 +02:00
|
|
|
{
|
2023-09-26 23:30:35 +02:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $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';
|
|
|
|
|
2020-12-16 12:52:40 +01:00
|
|
|
if (config('ninja.db.multi_db_enabled')) {
|
2021-03-01 23:08:57 +01:00
|
|
|
$rules['email'] = ['email', new ValidUserForCompany(), new AttachableUser()];
|
2020-12-16 12:52:40 +01:00
|
|
|
} else {
|
2021-03-01 23:08:57 +01:00
|
|
|
$rules['email'] = ['email', new AttachableUser()];
|
2020-12-16 12:52:40 +01:00
|
|
|
}
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2021-06-09 11:57:03 +02:00
|
|
|
if (Ninja::isHosted()) {
|
2021-10-20 05:35:28 +02:00
|
|
|
$rules['id'] = new CanAddUserRule();
|
2022-11-07 11:00:21 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($this->phone && isset($this->phone)) {
|
2022-11-07 11:00:21 +01:00
|
|
|
$rules['phone'] = ['bail', 'string', 'sometimes', new HasValidPhoneNumber()];
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2020-06-27 06:09:16 +02:00
|
|
|
}
|
2020-04-23 00:54:10 +02:00
|
|
|
|
2019-12-08 11:28:52 +01:00
|
|
|
return $rules;
|
2019-06-12 06:22:05 +02:00
|
|
|
}
|
2019-04-27 11:20:03 +02:00
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public 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
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (array_key_exists('email', $input)) {
|
2021-09-07 07:12:12 +02:00
|
|
|
$input['email'] = trim($input['email']);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-02-26 12:20:17 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($input['company_user'])) {
|
2020-09-06 11:38:10 +02:00
|
|
|
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
|
|
|
|
2020-09-06 11:38:10 +02: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
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! isset($input['company_user']['settings'])) {
|
2020-02-26 04:26:07 +01:00
|
|
|
$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' => null,
|
2019-11-21 09:38:57 +01:00
|
|
|
'permissions' => '',
|
|
|
|
];
|
|
|
|
}
|
2019-04-27 11:20:03 +02:00
|
|
|
|
2022-10-02 08:24:16 +02:00
|
|
|
if (array_key_exists('first_name', $input)) {
|
|
|
|
$input['first_name'] = strip_tags($input['first_name']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('last_name', $input)) {
|
|
|
|
$input['last_name'] = strip_tags($input['last_name']);
|
|
|
|
}
|
|
|
|
|
2024-03-10 11:28:50 +01:00
|
|
|
$input['id'] = null;
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$this->replace($input);
|
2019-11-21 09:38:57 +01:00
|
|
|
}
|
|
|
|
|
2020-03-04 12:09:43 +01:00
|
|
|
//@todo make sure the user links back to the account ID for this company!!!!!!
|
2024-01-14 05:05:00 +01:00
|
|
|
public function fetchUser(): User
|
2019-12-08 11:28:52 +01:00
|
|
|
{
|
|
|
|
$user = MultiDB::hasUser(['email' => $this->input('email')]);
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $user) {
|
2020-03-24 14:25:20 +01:00
|
|
|
$user = UserFactory::create(auth()->user()->account->id);
|
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
|
|
|
}
|