2015-09-22 16:44:56 +08:00
|
|
|
<?php
|
|
|
|
|
2015-10-11 20:24:48 +08:00
|
|
|
/*
|
|
|
|
* This file is part of Flarum.
|
|
|
|
*
|
2019-11-30 07:01:32 +08:00
|
|
|
* For detailed copyright and license information, please view the
|
|
|
|
* LICENSE file that was distributed with this source code.
|
2015-10-11 20:24:48 +08:00
|
|
|
*/
|
2015-09-22 16:44:56 +08:00
|
|
|
|
2020-12-09 03:04:22 +08:00
|
|
|
use Flarum\Api\Serializer\BasicDiscussionSerializer;
|
|
|
|
use Flarum\Api\Serializer\PostSerializer;
|
2016-05-28 08:22:47 +08:00
|
|
|
use Flarum\Approval\Access;
|
2020-12-09 04:08:18 +08:00
|
|
|
use Flarum\Approval\Event\PostWasApproved;
|
2016-06-13 20:05:19 +08:00
|
|
|
use Flarum\Approval\Listener;
|
2020-04-24 21:54:12 +08:00
|
|
|
use Flarum\Discussion\Discussion;
|
2018-01-17 06:17:47 +08:00
|
|
|
use Flarum\Extend;
|
2021-03-14 04:15:11 +08:00
|
|
|
use Flarum\Post\CommentPost;
|
2020-12-09 04:08:18 +08:00
|
|
|
use Flarum\Post\Event\Saving;
|
2020-04-24 21:54:12 +08:00
|
|
|
use Flarum\Post\Post;
|
2020-12-09 04:08:18 +08:00
|
|
|
use Flarum\Tags\Tag;
|
2015-10-11 20:24:48 +08:00
|
|
|
|
2018-01-17 06:17:47 +08:00
|
|
|
return [
|
2018-07-23 22:27:07 +08:00
|
|
|
(new Extend\Frontend('forum'))
|
2018-06-20 12:04:41 +08:00
|
|
|
->js(__DIR__.'/js/dist/forum.js')
|
2018-07-23 22:27:07 +08:00
|
|
|
->css(__DIR__.'/less/forum.less'),
|
2018-06-20 12:04:41 +08:00
|
|
|
|
2018-07-23 22:27:07 +08:00
|
|
|
(new Extend\Frontend('admin'))
|
2018-06-20 12:04:41 +08:00
|
|
|
->js(__DIR__.'/js/dist/admin.js'),
|
|
|
|
|
2020-04-24 21:54:12 +08:00
|
|
|
// Discussions should be approved by default
|
|
|
|
(new Extend\Model(Discussion::class))
|
|
|
|
->default('is_approved', true),
|
|
|
|
|
|
|
|
// Posts should be approved by default
|
|
|
|
(new Extend\Model(Post::class))
|
|
|
|
->default('is_approved', true),
|
|
|
|
|
2020-12-09 03:04:22 +08:00
|
|
|
(new Extend\ApiSerializer(BasicDiscussionSerializer::class))
|
|
|
|
->attribute('isApproved', function ($serializer, Discussion $discussion) {
|
|
|
|
return (bool) $discussion->is_approved;
|
|
|
|
}),
|
|
|
|
|
|
|
|
(new Extend\ApiSerializer(PostSerializer::class))
|
|
|
|
->attribute('isApproved', function ($serializer, Post $post) {
|
|
|
|
return (bool) $post->is_approved;
|
|
|
|
})->attribute('canApprove', function (PostSerializer $serializer, Post $post) {
|
|
|
|
return (bool) $serializer->getActor()->can('approvePosts', $post->discussion);
|
|
|
|
}),
|
|
|
|
|
2020-06-20 09:48:53 +08:00
|
|
|
new Extend\Locales(__DIR__.'/locale'),
|
|
|
|
|
2020-12-09 04:08:18 +08:00
|
|
|
(new Extend\Event())
|
|
|
|
->listen(Saving::class, [Listener\ApproveContent::class, 'approvePost'])
|
|
|
|
->listen(Saving::class, [Listener\UnapproveNewContent::class, 'unapproveNewPosts'])
|
|
|
|
->listen(PostWasApproved::class, [Listener\ApproveContent::class, 'approveDiscussion']),
|
|
|
|
|
|
|
|
(new Extend\Policy())
|
|
|
|
->modelPolicy(Tag::class, Access\TagPolicy::class),
|
|
|
|
|
|
|
|
(new Extend\ModelVisibility(Post::class))
|
|
|
|
->scope(Access\ScopePrivatePostVisibility::class, 'viewPrivate'),
|
2016-05-28 08:22:47 +08:00
|
|
|
|
2020-12-09 04:08:18 +08:00
|
|
|
(new Extend\ModelVisibility(Discussion::class))
|
|
|
|
->scope(Access\ScopePrivateDiscussionVisibility::class, 'viewPrivate'),
|
|
|
|
|
2021-03-14 04:15:11 +08:00
|
|
|
(new Extend\ModelPrivate(Discussion::class))
|
|
|
|
->checker([Listener\UnapproveNewContent::class, 'markUnapprovedContentAsPrivate']),
|
|
|
|
|
|
|
|
(new Extend\ModelPrivate(CommentPost::class))
|
|
|
|
->checker([Listener\UnapproveNewContent::class, 'markUnapprovedContentAsPrivate']),
|
2018-01-17 06:17:47 +08:00
|
|
|
];
|