-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extend.php
50 lines (38 loc) · 1.37 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/*
* This file is part of fof/pwned-passwords.
*
* Copyright (c) FriendsOfFlarum.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FoF\PwnedPasswords;
use Flarum\Api\Serializer\UserSerializer;
use Flarum\Extend;
use Flarum\User\Event\PasswordChanged;
use Flarum\User\User;
use FoF\PwnedPasswords\Listeners\UnmarkPassword;
return [
new Extend\Locales(__DIR__.'/locale'),
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js'),
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js'),
(new Extend\Model(User::class))
->cast('has_pwned_password', 'bool'),
(new Extend\Middleware('forum'))
->add(Middleware\PreventPwnedPassword::class)
->add(Middleware\CheckLoginPassword::class)
->add(Middleware\CheckPasswordReset::class),
(new Extend\Event())
->listen(PasswordChanged::class, UnmarkPassword::class),
(new Extend\ApiSerializer(UserSerializer::class))
->attribute('hasPwnedPassword', function (UserSerializer $serializer, User $user) {
return $user->has_pwned_password;
}),
(new Extend\User())
->permissionGroups(Listeners\RevokeAccessWhenPasswordPwned::class),
(new Extend\Policy())
->globalPolicy(Access\GlobalPolicy::class),
];