mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 17:57:04 +08:00
a8777c6198
* refactor: json:api refactor iteration 1 * chore: delete dead code * fix: regressions * chore: move additions/changes to package * feat: AccessTokenResource * feat: allow dependency injection in resources * feat: `ApiResource` extender * feat: improve * feat: refactor tags extension * feat: refactor flags extension * fix: regressions * fix: drop bc layer * feat: refactor suspend extension * feat: refactor subscriptions extension * feat: refactor approval extension * feat: refactor sticky extension * feat: refactor nicknames extension * feat: refactor mentions extension * feat: refactor lock extension * feat: refactor likes extension * chore: merge conflicts * feat: refactor extension-manager extension * feat: context current endpoint helpers * chore: minor * feat: cleaner sortmap implementation * chore: drop old package * chore: not needed (auto scoping) * fix: actor only fields * refactor: simplify index endpoint * feat: eager loading * test: adapt * test: phpstan * test: adapt * fix: typing * fix: approving content * tet: adapt frontend tests * chore: typings * chore: review * fix: breaking change
70 lines
2.1 KiB
PHP
70 lines
2.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
use Flarum\Api\Resource;
|
|
use Flarum\Api\Schema;
|
|
use Flarum\Approval\Access;
|
|
use Flarum\Approval\Api\PostResourceFields;
|
|
use Flarum\Approval\Event\PostWasApproved;
|
|
use Flarum\Approval\Listener;
|
|
use Flarum\Discussion\Discussion;
|
|
use Flarum\Extend;
|
|
use Flarum\Post\CommentPost;
|
|
use Flarum\Post\Post;
|
|
use Flarum\Tags\Tag;
|
|
|
|
return [
|
|
(new Extend\Frontend('forum'))
|
|
->js(__DIR__.'/js/dist/forum.js')
|
|
->css(__DIR__.'/less/forum.less'),
|
|
|
|
(new Extend\Frontend('admin'))
|
|
->js(__DIR__.'/js/dist/admin.js'),
|
|
|
|
// Discussions should be approved by default
|
|
(new Extend\Model(Discussion::class))
|
|
->default('is_approved', true)
|
|
->cast('is_approved', 'bool'),
|
|
|
|
// Posts should be approved by default
|
|
(new Extend\Model(Post::class))
|
|
->default('is_approved', true)
|
|
->cast('is_approved', 'bool'),
|
|
|
|
(new Extend\ApiResource(Resource\DiscussionResource::class))
|
|
->fields(fn () => [
|
|
Schema\Boolean::make('isApproved'),
|
|
]),
|
|
|
|
(new Extend\ApiResource(Resource\PostResource::class))
|
|
->fields(PostResourceFields::class),
|
|
|
|
new Extend\Locales(__DIR__.'/locale'),
|
|
|
|
(new Extend\Event())
|
|
->listen(PostWasApproved::class, Listener\UpdateDiscussionAfterPostApproval::class)
|
|
->subscribe(Listener\ApproveContent::class)
|
|
->subscribe(Listener\UnapproveNewContent::class),
|
|
|
|
(new Extend\Policy())
|
|
->modelPolicy(Tag::class, Access\TagPolicy::class),
|
|
|
|
(new Extend\ModelVisibility(Post::class))
|
|
->scope(Access\ScopePrivatePostVisibility::class, 'viewPrivate'),
|
|
|
|
(new Extend\ModelVisibility(Discussion::class))
|
|
->scope(Access\ScopePrivateDiscussionVisibility::class, 'viewPrivate'),
|
|
|
|
(new Extend\ModelPrivate(Discussion::class))
|
|
->checker(Listener\UnapproveNewContent::markUnapprovedContentAsPrivate(...)),
|
|
|
|
(new Extend\ModelPrivate(CommentPost::class))
|
|
->checker(Listener\UnapproveNewContent::markUnapprovedContentAsPrivate(...)),
|
|
];
|