mirror of
https://github.com/flarum/core.git
synced 2025-10-18 10:16:09 +02:00
75 lines
1.7 KiB
PHP
75 lines
1.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Discussion;
|
|
|
|
use Flarum\User\User;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
class DiscussionRepository
|
|
{
|
|
/**
|
|
* Get a new query builder for the discussions table.
|
|
*
|
|
* @return Builder
|
|
*/
|
|
public function query()
|
|
{
|
|
return Discussion::query();
|
|
}
|
|
|
|
/**
|
|
* Find a discussion by ID, optionally making sure it is visible to a
|
|
* certain user, or throw an exception.
|
|
*
|
|
* @param int $id
|
|
* @param User $user
|
|
* @return \Flarum\Discussion\Discussion
|
|
*/
|
|
public function findOrFail($id, User $user = null)
|
|
{
|
|
$query = Discussion::where('id', $id);
|
|
|
|
return $this->scopeVisibleTo($query, $user)->firstOrFail();
|
|
}
|
|
|
|
/**
|
|
* Get the IDs of discussions which a user has read completely.
|
|
*
|
|
* @param User $user
|
|
* @return array
|
|
*/
|
|
public function getReadIds(User $user)
|
|
{
|
|
return Discussion::leftJoin('discussions_users', 'discussions_users.discussion_id', '=', 'discussions.id')
|
|
->where('user_id', $user->id)
|
|
->whereColumn('last_read_post_number', '>=', 'last_post_number')
|
|
->pluck('id')
|
|
->all();
|
|
}
|
|
|
|
/**
|
|
* Scope a query to only include records that are visible to a user.
|
|
*
|
|
* @param Builder $query
|
|
* @param User $user
|
|
* @return Builder
|
|
*/
|
|
protected function scopeVisibleTo(Builder $query, User $user = null)
|
|
{
|
|
if ($user !== null) {
|
|
$query->whereVisibleTo($user);
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
}
|