You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/app/Rules/EmailNotBanned.php

26 lines
598 B
PHP

<?php
namespace App\Rules;
use Closure;
use App\Services\EmailService;
use Illuminate\Contracts\Validation\ValidationRule;
class EmailNotBanned implements ValidationRule
{
/**
* Run the validation rule.
*
* @param string $attribute
* @param mixed $value
* @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail
* @return void
*/
public function validate(string $attribute, mixed $value, Closure $fail): void
{
if (EmailService::isBanned($value)) {
$fail('Email is invalid.');
}
}
}