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
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. 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;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-06-05 02:43:23 +02:00
|
|
|
use App\Http\ValidationRules\UniqueUserRule;
|
2022-11-02 11:30:25 +01:00
|
|
|
use App\Http\ValidationRules\User\HasValidPhoneNumber;
|
2022-11-02 21:54:34 +01:00
|
|
|
use App\Utils\Ninja;
|
2019-04-27 11:20:03 +02:00
|
|
|
|
|
|
|
class UpdateUserRequest extends Request
|
|
|
|
{
|
2022-11-02 11:30:25 +01:00
|
|
|
|
|
|
|
private bool $phone_has_changed = false;
|
|
|
|
|
2019-04-27 11:20:03 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2021-05-05 07:33:52 +02:00
|
|
|
return auth()->user()->id == $this->user->id || auth()->user()->isAdmin();
|
2019-04-27 11:20:03 +02:00
|
|
|
}
|
|
|
|
|
2019-04-28 12:25:18 +02:00
|
|
|
public function rules()
|
|
|
|
{
|
2019-06-05 02:43:23 +02:00
|
|
|
$input = $this->all();
|
2021-01-01 10:11:21 +01:00
|
|
|
|
|
|
|
$rules = [
|
|
|
|
'password' => 'nullable|string|min:6',
|
|
|
|
];
|
2019-06-05 02:43:23 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($input['email'])) {
|
2021-01-13 13:20:15 +01:00
|
|
|
$rules['email'] = ['email', 'sometimes', new UniqueUserRule($this->user, $input['email'])];
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-11-24 07:37:53 +01:00
|
|
|
|
2022-11-02 11:30:25 +01:00
|
|
|
if(Ninja::isHosted() && $this->phone_has_changed)
|
|
|
|
$rules['phone'] = ['sometimes', new HasValidPhoneNumber()];
|
|
|
|
|
2019-11-24 07:37:53 +01:00
|
|
|
return $rules;
|
2019-04-28 12:25:18 +02:00
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2019-06-12 01:38:16 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
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
|
|
|
}
|
2019-06-12 01:38:16 +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']);
|
|
|
|
}
|
|
|
|
|
2022-11-02 21:54:34 +01:00
|
|
|
if(array_key_exists('phone', $input) && strlen($input['phone']) > 1 && ($this->user->phone != $input['phone']))
|
2022-11-02 11:30:25 +01:00
|
|
|
$this->phone_has_changed = true;
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$this->replace($input);
|
2019-06-12 01:38:16 +02:00
|
|
|
}
|
2022-11-02 11:30:25 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|