mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 00:43:39 +08:00
4b126d9f4c
* refactor: move gambits to frontend (#3885) * refactor: move gambits to frontend * test: GambitManager * refactor: merge filterer and searcher concepts (#3892) * chore: drop remaining backend regex gambits * refactor: merge filterer & searcher concept * refactor: adapt extenders * refactor: no longer need to push gambits to `q` * refactor: filters to gambits * refactor: drop shred `Query` namespace * chore: cleanup * chore: leftover gambit references on the backend (#3894) * chore: leftover gambit references on the backend * chore: namespace * feat: search driver backend extension API (#3902) * feat: first iteration of search drivers * feat: indexer API & tweaks * feat: changes after POC driver * fix: properly fire custom observables * chore: remove debugging code * fix: phpstan * fix: custom eloquent events * chore: drop POC usage * test: indexer extender API * fix: extension searcher fails without filters * fix: phpstan * fix: frontend created gambit * feat: advanced page and localized driver settings (#3905) * feat: allow getting total search results and replacing filters (#3906) * feat: allow accessing total search results * feat: allow replacing filters * chore: phpstan
90 lines
3.5 KiB
PHP
90 lines
3.5 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.
|
|
*/
|
|
|
|
namespace Flarum\Likes;
|
|
|
|
use Flarum\Api\Controller;
|
|
use Flarum\Api\Serializer\BasicUserSerializer;
|
|
use Flarum\Api\Serializer\PostSerializer;
|
|
use Flarum\Extend;
|
|
use Flarum\Likes\Api\LoadLikesRelationship;
|
|
use Flarum\Likes\Event\PostWasLiked;
|
|
use Flarum\Likes\Event\PostWasUnliked;
|
|
use Flarum\Likes\Notification\PostLikedBlueprint;
|
|
use Flarum\Likes\Query\LikedByFilter;
|
|
use Flarum\Likes\Query\LikedFilter;
|
|
use Flarum\Post\Filter\PostSearcher;
|
|
use Flarum\Post\Post;
|
|
use Flarum\Search\Database\DatabaseSearchDriver;
|
|
use Flarum\User\Search\UserSearcher;
|
|
use Flarum\User\User;
|
|
|
|
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'),
|
|
|
|
(new Extend\Model(Post::class))
|
|
->belongsToMany('likes', User::class, 'post_likes', 'post_id', 'user_id'),
|
|
|
|
new Extend\Locales(__DIR__.'/locale'),
|
|
|
|
(new Extend\Notification())
|
|
->type(PostLikedBlueprint::class, PostSerializer::class, ['alert']),
|
|
|
|
(new Extend\ApiSerializer(PostSerializer::class))
|
|
->hasMany('likes', BasicUserSerializer::class)
|
|
->attribute('canLike', function (PostSerializer $serializer, $model) {
|
|
return (bool) $serializer->getActor()->can('like', $model);
|
|
})
|
|
->attribute('likesCount', function (PostSerializer $serializer, $model) {
|
|
return $model->getAttribute('likes_count') ?: 0;
|
|
}),
|
|
|
|
(new Extend\ApiController(Controller\ShowDiscussionController::class))
|
|
->addInclude('posts.likes')
|
|
->loadWhere('posts.likes', LoadLikesRelationship::mutateRelation(...))
|
|
->prepareDataForSerialization(LoadLikesRelationship::countRelation(...)),
|
|
|
|
(new Extend\ApiController(Controller\ListPostsController::class))
|
|
->addInclude('likes')
|
|
->loadWhere('likes', LoadLikesRelationship::mutateRelation(...))
|
|
->prepareDataForSerialization(LoadLikesRelationship::countRelation(...)),
|
|
(new Extend\ApiController(Controller\ShowPostController::class))
|
|
->addInclude('likes')
|
|
->loadWhere('likes', LoadLikesRelationship::mutateRelation(...))
|
|
->prepareDataForSerialization(LoadLikesRelationship::countRelation(...)),
|
|
(new Extend\ApiController(Controller\CreatePostController::class))
|
|
->addInclude('likes')
|
|
->loadWhere('likes', LoadLikesRelationship::mutateRelation(...))
|
|
->prepareDataForSerialization(LoadLikesRelationship::countRelation(...)),
|
|
(new Extend\ApiController(Controller\UpdatePostController::class))
|
|
->addInclude('likes')
|
|
->loadWhere('likes', LoadLikesRelationship::mutateRelation(...))
|
|
->prepareDataForSerialization(LoadLikesRelationship::countRelation(...)),
|
|
|
|
(new Extend\Event())
|
|
->listen(PostWasLiked::class, Listener\SendNotificationWhenPostIsLiked::class)
|
|
->listen(PostWasUnliked::class, Listener\SendNotificationWhenPostIsUnliked::class)
|
|
->subscribe(Listener\SaveLikesToDatabase::class),
|
|
|
|
(new Extend\SearchDriver(DatabaseSearchDriver::class))
|
|
->addFilter(PostSearcher::class, LikedByFilter::class)
|
|
->addFilter(UserSearcher::class, LikedFilter::class),
|
|
|
|
(new Extend\Settings())
|
|
->default('flarum-likes.like_own_post', true),
|
|
|
|
(new Extend\Policy())
|
|
->modelPolicy(Post::class, Access\LikePostPolicy::class),
|
|
];
|