2022-09-20 19:59:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Rules;
|
|
|
|
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
|
|
|
class OneEmailPerLine 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)
|
|
|
|
{
|
2024-02-23 10:54:12 +00:00
|
|
|
if ($value === null || empty(trim($value))) {
|
|
|
|
return true;
|
|
|
|
}
|
2022-09-20 19:59:52 +00:00
|
|
|
foreach (preg_split("/\r\n|\n|\r/", $value) as $email) {
|
|
|
|
$email = trim($email);
|
2024-02-23 10:54:12 +00:00
|
|
|
if (! filter_var($email, FILTER_VALIDATE_EMAIL)) {
|
2022-09-20 19:59:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2024-02-23 10:54:12 +00:00
|
|
|
|
2022-09-20 19:59:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation error message.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
|
|
|
return 'You need one valid email per line.';
|
|
|
|
}
|
|
|
|
}
|