2021-11-30 17:36:45 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Rules;
|
|
|
|
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
|
|
|
|
class CaseInsensitiveEmailExists implements Rule
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Create a new rule instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the validation rule passes.
|
|
|
|
*
|
|
|
|
* @param string $attribute
|
|
|
|
* @param mixed $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function passes($attribute, $value)
|
|
|
|
{
|
|
|
|
$user = DB::table('users')
|
2023-06-28 21:11:13 +02:00
|
|
|
->whereRaw('email = ?' . ('sqlite' === config('database.default') ? ' COLLATE NOCASE' : ''), [strtolower($value)])
|
2021-11-30 17:36:45 +01:00
|
|
|
->first();
|
|
|
|
|
2022-11-22 15:15:52 +01:00
|
|
|
return ! $user ? false : true;
|
2021-11-30 17:36:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation error message.
|
2022-11-22 15:15:52 +01:00
|
|
|
*
|
2021-11-30 17:36:45 +01:00
|
|
|
* @codeCoverageIgnore
|
2022-11-22 15:15:52 +01:00
|
|
|
*
|
2022-08-26 15:57:18 +02:00
|
|
|
* @return array|string
|
2021-11-30 17:36:45 +01:00
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
|
|
|
return trans('validation.custom.email.exists');
|
|
|
|
}
|
|
|
|
}
|