-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
extend.php
executable file
·129 lines (104 loc) · 6.36 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php
/*
* This file is part of fof/polls.
*
* Copyright (c) FriendsOfFlarum.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FoF\Polls;
use Flarum\Api\Controller;
use Flarum\Api\Serializer\DiscussionSerializer;
use Flarum\Api\Serializer\ForumSerializer;
use Flarum\Api\Serializer\PostSerializer;
use Flarum\Discussion\Discussion;
use Flarum\Extend;
use Flarum\Post\Event\Saving as PostSaving;
use Flarum\Post\Post;
use Flarum\Settings\Event\Saved as SettingsSaved;
use FoF\Polls\Api\Controllers;
return [
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js')
->css(__DIR__.'/resources/less/forum.less')
->route('/polls', 'fof.polls.showcase')
->route('/polls/all', 'fof.polls.list', Content\PollsDirectory::class)
->route('/polls/view/{id}', 'fof.poll.view')
->route('/polls/composer', 'fof.polls.composer'),
(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('api'))
->post('/fof/polls', 'fof.polls.create', Controllers\CreatePollController::class)
->get('/fof/polls', 'fof.polls.index', Controllers\ListGlobalPollsController::class)
->get('/fof/polls/{id:\d+}', 'fof.polls.show', Controllers\ShowPollController::class)
->patch('/fof/polls/{id:\d+}', 'fof.polls.edit', Controllers\EditPollController::class)
->delete('/fof/polls/{id:\d+}', 'fof.polls.delete', Controllers\DeletePollController::class)
->patch('/fof/polls/{id:\d+}/votes', 'fof.polls.votes', Controllers\MultipleVotesPollController::class)
->post('/fof/polls/pollImage', 'fof.polls.upload-image', Controllers\UploadPollImageController::class)
->delete('/fof/polls/pollImage/name/{fileName}', 'fof.polls.delete-image-name', Controllers\DeletePollImageByNameController::class)
->post('/fof/polls/pollImage/{pollId:\d+}', 'fof.polls.upload-image-poll', Controllers\UploadPollImageController::class)
->delete('/fof/polls/pollImage/{pollId:\d+}', 'fof.polls.delete-image-poll', Controllers\DeletePollImageController::class)
->post('/fof/polls/pollOptionImage', 'fof.polls.upload-option-image-option', Controllers\UploadPollOptionImageController::class)
->delete('/fof/polls/pollOptionImage/name/{fileName}', 'fof.polls.delete-option-image-name', Controllers\DeletePollImageByNameController::class)
->post('/fof/polls/pollOptionImage/{optionId:\d+}', 'fof.polls.upload-option-image', Controllers\UploadPollOptionImageController::class)
->delete('/fof/polls/pollOptionImage/{optionId:\d+}', 'fof.polls.delete-option-image', Controllers\DeletePollOptionImageController::class),
(new Extend\Model(Post::class))
->hasMany('polls', Poll::class, 'post_id', 'id'),
(new Extend\Model(Discussion::class))
->hasMany('polls', Poll::class, 'post_id', 'first_post_id'),
(new Extend\Event())
->listen(PostSaving::class, Listeners\SavePollsToDatabase::class)
->listen(SettingsSaved::class, Listeners\ClearFormatterCache::class),
(new Extend\ApiSerializer(DiscussionSerializer::class))
->attributes(Api\AddDiscussionAttributes::class),
(new Extend\ApiSerializer(PostSerializer::class))
->hasMany('polls', Api\Serializers\PollSerializer::class)
->attributes(Api\AddPostAttributes::class),
(new Extend\ApiSerializer(ForumSerializer::class))
->attributes(Api\AddForumAttributes::class),
(new Extend\ApiController(Controller\ListDiscussionsController::class))
->addOptionalInclude(['firstPost.polls']),
(new Extend\ApiController(Controller\ShowDiscussionController::class))
->addInclude(['posts.polls', 'posts.polls.options', 'posts.polls.myVotes', 'posts.polls.myVotes.option'])
->addOptionalInclude(['posts.polls.votes', 'posts.polls.votes.user', 'posts.polls.votes.option']),
(new Extend\ApiController(Controller\CreateDiscussionController::class))
->addInclude(['firstPost.polls', 'firstPost.polls.options', 'firstPost.polls.myVotes', 'firstPost.polls.myVotes.option'])
->addOptionalInclude(['firstPost.polls.votes', 'firstPost.polls.votes.user', 'firstPost.polls.votes.option']),
(new Extend\ApiController(Controller\CreatePostController::class))
->addInclude(['polls', 'polls.options', 'polls.myVotes', 'polls.myVotes.option'])
->addOptionalInclude(['polls.votes', 'polls.votes.user', 'polls.votes.option']),
(new Extend\ApiController(Controller\ListPostsController::class))
->addInclude(['polls', 'polls.options', 'polls.myVotes', 'polls.myVotes.option'])
->addOptionalInclude(['polls.votes', 'polls.votes.user', 'polls.votes.option']),
(new Extend\ApiController(Controller\ShowPostController::class))
->addInclude(['polls', 'polls.options', 'polls.myVotes', 'polls.myVotes.option'])
->addOptionalInclude(['polls.votes', 'polls.votes.user', 'polls.votes.option']),
(new Extend\Console())
->command(Console\RefreshVoteCountCommand::class),
(new Extend\Policy())
->modelPolicy(Poll::class, Access\PollPolicy::class)
->modelPolicy(Post::class, Access\PostPolicy::class),
(new Extend\Settings())
->default('fof-polls.maxOptions', 10)
->default('fof-polls.optionsColorBlend', true)
->default('fof-polls.directory-default-sort', 'default')
->default('fof-polls.enableGlobalPolls', false)
->default('fof-polls.image_height', 250)
->default('fof-polls.image_width', 250)
->default('fof-polls.allowImageUploads', false)
->serializeToForum('globalPollsEnabled', 'fof-polls.enableGlobalPolls', 'boolval')
->serializeToForum('allowPollOptionImage', 'fof-polls.allowOptionImage', 'boolval')
->serializeToForum('pollMaxOptions', 'fof-polls.maxOptions', 'intval')
->registerLessConfigVar('fof-polls-options-color-blend', 'fof-polls.optionsColorBlend', function ($value) {
return $value ? 'true' : 'false';
}),
(new Extend\ModelVisibility(Poll::class))
->scope(Access\ScopePollVisibility::class),
(new Extend\View())
->namespace('fof-polls', __DIR__.'/resources/views'),
(new Extend\Filesystem())
->disk('fof-polls', PollImageDisk::class),
];