-
Notifications
You must be signed in to change notification settings - Fork 2
/
extend.php
54 lines (42 loc) · 1.75 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
51
52
53
54
<?php
/*
* This file is part of nomiscz/flarum-ext-auth-wechat.
*
* Copyright (c) 2021 NomisCZ.
*
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
namespace HamCQ\WeChatAuth;
use Flarum\Api\Serializer\UserSerializer;
use Flarum\Extend;
use HamCQ\WeChatAuth\Http\Controllers\WeChatAuthController;
use HamCQ\WeChatAuth\Api\Controllers\WeChatLinkController;
use HamCQ\WeChatAuth\Api\Controllers\WeChatUnlinkController;
use FoF\Components\Extend\AddFofComponents;
return [
new AddFofComponents(),
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js')
->css(__DIR__.'/resources/less/forum.less'),
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js')
->css(__DIR__.'/resources/less/admin.less'),
new Extend\Locales(__DIR__ . '/resources/locale'),
(new Extend\Routes('forum'))
->get('/auth/wechat', 'auth.wechat', WeChatAuthController::class),
(new Extend\Routes('api'))
->get('/auth/wechat/link', 'auth.wechat.api.link', WeChatLinkController::class)
->post('/auth/wechat/unlink', 'auth.wechat.api.unlink', WeChatUnlinkController::class),
(new Extend\ApiSerializer(UserSerializer::class))
->attributes(function($serializer, $user, $attributes) {
$loginProviders = $user->loginProviders();
$steamProvider = $loginProviders->where('provider', 'wechat')->first();
$attributes['WeChatAuth'] = [
'isLinked' => $steamProvider !== null,
'identifier' => null, // Hidden, don't expose this information
'providersCount' => $loginProviders->count()
];
return $attributes;
}),
];