2018-10-17 14:26:27 +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
|
|
|
|
*/
|
2018-10-17 14:26:27 +02:00
|
|
|
|
|
|
|
namespace App\Http\ValidationRules;
|
|
|
|
|
2018-10-18 07:04:36 +02:00
|
|
|
use App\Libraries\MultiDB;
|
2018-10-17 14:26:27 +02:00
|
|
|
use App\Models\User;
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
|
|
|
* Class UniqueUserRule
|
|
|
|
* @package App\Http\ValidationRules
|
|
|
|
*/
|
2018-10-17 14:26:27 +02:00
|
|
|
class UniqueUserRule implements Rule
|
|
|
|
{
|
2019-06-05 02:43:23 +02:00
|
|
|
public $user;
|
|
|
|
|
|
|
|
public $new_email;
|
|
|
|
|
|
|
|
public function __construct($user, $new_email)
|
|
|
|
{
|
|
|
|
$this->user= $user;
|
|
|
|
|
|
|
|
$this->new_email = $new_email;
|
|
|
|
}
|
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
|
|
|
* @param string $attribute
|
|
|
|
* @param mixed $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-10-17 14:26:27 +02:00
|
|
|
public function passes($attribute, $value)
|
|
|
|
{
|
2019-06-05 02:43:23 +02:00
|
|
|
/* If the input has not changed, return early! */
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if ($this->user->email == $this->new_email) {
|
2019-06-05 02:43:23 +02:00
|
|
|
return true;
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
|
|
|
return ! $this->checkIfEmailExists($value);
|
|
|
|
} //if it exists, return false!
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-10-17 14:26:27 +02:00
|
|
|
public function message()
|
|
|
|
{
|
2019-01-25 11:47:23 +01:00
|
|
|
return ctrans('texts.email_already_register');
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
|
|
|
|
2019-01-27 00:22:57 +01:00
|
|
|
/**
|
|
|
|
* @param $email
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-10-17 14:26:27 +02:00
|
|
|
private function checkIfEmailExists($email) : bool
|
|
|
|
{
|
2018-10-18 07:04:36 +02:00
|
|
|
return MultiDB::checkUserEmailExists($email);
|
2018-10-17 14:26:27 +02:00
|
|
|
}
|
|
|
|
}
|