2019-04-27 19:20:03 +10:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2023-01-29 09:21:40 +11:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2019-04-27 19:20:03 +10:00
|
|
|
|
|
|
|
|
namespace App\Http\Requests\User;
|
|
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-06-05 10:43:23 +10:00
|
|
|
use App\Http\ValidationRules\UniqueUserRule;
|
2022-11-02 21:30:25 +11:00
|
|
|
use App\Http\ValidationRules\User\HasValidPhoneNumber;
|
2022-11-03 07:54:34 +11:00
|
|
|
use App\Utils\Ninja;
|
2019-04-27 19:20:03 +10:00
|
|
|
|
|
|
|
|
class UpdateUserRequest extends Request
|
|
|
|
|
{
|
2022-11-02 21:30:25 +11:00
|
|
|
private bool $phone_has_changed = false;
|
|
|
|
|
|
2019-04-27 19:20:03 +10:00
|
|
|
/**
|
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function authorize() : bool
|
|
|
|
|
{
|
2021-05-05 15:33:52 +10:00
|
|
|
return auth()->user()->id == $this->user->id || auth()->user()->isAdmin();
|
2019-04-27 19:20:03 +10:00
|
|
|
}
|
|
|
|
|
|
2019-04-28 20:25:18 +10:00
|
|
|
public function rules()
|
|
|
|
|
{
|
2019-06-05 10:43:23 +10:00
|
|
|
$input = $this->all();
|
2021-01-01 20:11:21 +11:00
|
|
|
|
|
|
|
|
$rules = [
|
|
|
|
|
'password' => 'nullable|string|min:6',
|
|
|
|
|
];
|
2019-06-05 10:43:23 +10:00
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
if (isset($input['email'])) {
|
2021-01-13 23:20:15 +11:00
|
|
|
$rules['email'] = ['email', 'sometimes', new UniqueUserRule($this->user, $input['email'])];
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|
2019-11-24 17:37:53 +11:00
|
|
|
|
2023-02-16 12:36:09 +11:00
|
|
|
if (Ninja::isHosted() && $this->phone_has_changed && $this->phone && isset($this->phone)) {
|
2022-11-07 07:44:19 +11:00
|
|
|
$rules['phone'] = ['sometimes', 'bail', 'string', new HasValidPhoneNumber()];
|
2023-02-16 12:36:09 +11:00
|
|
|
}
|
2022-11-02 21:30:25 +11:00
|
|
|
|
2019-11-24 17:37:53 +11:00
|
|
|
return $rules;
|
2019-04-28 20:25:18 +10:00
|
|
|
}
|
|
|
|
|
|
2022-06-24 11:55:41 +10:00
|
|
|
public function prepareForValidation()
|
2019-06-12 09:38:16 +10:00
|
|
|
{
|
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
2022-06-21 09:57:17 +00:00
|
|
|
if (array_key_exists('email', $input)) {
|
2021-09-07 15:12:12 +10:00
|
|
|
$input['email'] = trim($input['email']);
|
2022-06-21 09:57:17 +00:00
|
|
|
}
|
2019-06-12 09:38:16 +10:00
|
|
|
|
2022-10-02 17:24:16 +11: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']);
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-16 12:36:09 +11:00
|
|
|
if (array_key_exists('phone', $input) && isset($input['phone']) && strlen($input['phone']) > 1 && ($this->user->phone != $input['phone'])) {
|
2022-11-02 21:30:25 +11:00
|
|
|
$this->phone_has_changed = true;
|
2022-11-09 22:22:52 +11:00
|
|
|
}
|
2022-11-02 21:30:25 +11:00
|
|
|
|
2023-02-16 12:36:09 +11:00
|
|
|
if (array_key_exists('oauth_provider_id', $input) && $input['oauth_provider_id'] == '') {
|
2022-11-07 08:20:14 +11:00
|
|
|
$input['oauth_user_id'] = '';
|
2023-02-16 12:36:09 +11:00
|
|
|
}
|
2022-11-07 08:20:14 +11:00
|
|
|
|
2023-03-09 20:51:10 +11:00
|
|
|
if (array_key_exists('oauth_user_token', $input) && $input['oauth_user_token'] == '***') {
|
|
|
|
|
unset($input['oauth_user_token']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
$this->replace($input);
|
2019-06-12 09:38:16 +10:00
|
|
|
}
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|