-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add a solution filter for the posts endpoint (#109)
* feat: add a solution filter for the posts endpoint * Apply fixes from StyleCI * constrain to within Q&A tags --------- Co-authored-by: StyleCI Bot <[email protected]>
- Loading branch information
1 parent
0284487
commit 93d1fa6
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of fof/best-answer. | ||
* | ||
* Copyright (c) FriendsOfFlarum. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace FoF\BestAnswer\Search; | ||
|
||
use Flarum\Filter\FilterInterface; | ||
use Flarum\Filter\FilterState; | ||
use Flarum\Tags\Tag; | ||
use Flarum\User\User; | ||
use Illuminate\Database\Query\Builder; | ||
use Illuminate\Support\Collection; | ||
|
||
class BestAnswerPostFilter implements FilterInterface | ||
{ | ||
public function getFilterKey(): string | ||
{ | ||
return 'is:solution'; | ||
} | ||
|
||
public function filter(FilterState $filterState, string $filterValue, bool $negate) | ||
{ | ||
$this->constrain($filterState->getQuery(), $filterState->getActor(), $negate); | ||
} | ||
|
||
protected function constrain(Builder $query, User $actor, bool $negate) | ||
{ | ||
// Join the `discussions` table to access `best_answer_post_id`. | ||
$query->join('discussions', 'posts.discussion_id', '=', 'discussions.id') | ||
->where('posts.type', 'comment'); | ||
|
||
if ($negate) { | ||
// Exclude posts that are marked as the best answer | ||
$query->where(function ($query) { | ||
$query->whereNull('discussions.best_answer_post_id') | ||
->orWhereColumn('posts.id', '!=', 'discussions.best_answer_post_id'); | ||
}); | ||
} else { | ||
// Include only posts that are marked as the best answer | ||
$query->whereNotNull('discussions.best_answer_post_id') | ||
->whereColumn('posts.id', '=', 'discussions.best_answer_post_id'); | ||
} | ||
|
||
// Constrain to discussions within the allowed Q&A tags | ||
$query->whereIn('discussions.id', function ($subQuery) use ($actor) { | ||
$subQuery->select('discussion_id') | ||
->from('discussion_tag') | ||
->whereIn('tag_id', $this->allowedQnATags($actor)); | ||
}); | ||
} | ||
|
||
protected function allowedQnATags(User $actor): Collection | ||
{ | ||
return Tag::query() | ||
->whereVisibleTo($actor) | ||
->where('is_qna', true) | ||
->pluck('id'); | ||
} | ||
} |