-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
extend.php
33 lines (27 loc) · 869 Bytes
/
extend.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/*
* This file is part of fof/disposable-emails.
*
* Copyright (c) FriendsOfFlarum.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FoF\DisposableEmails;
use Flarum\Extend;
use Flarum\Foundation\ValidationException;
use Flarum\User\Event\Saving;
use Illuminate\Support\Arr;
use MailChecker;
return [
new Extend\Locales(__DIR__.'/locale'),
(new Extend\Event())
->listen(Saving::class, function (Saving $event) {
$email = Arr::get($event->data, 'attributes.email');
if (!empty($email) && !MailChecker::isValid($email)) {
throw new ValidationException([
resolve('translator')->trans('fof-email-checker.error.disposable_email_message'),
]);
}
}),
];