2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Entities\Queries;
|
2021-05-22 09:05:28 -04:00
|
|
|
|
|
|
|
use BookStack\Actions\View;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
|
|
|
|
class RecentlyViewed extends EntityQuery
|
|
|
|
{
|
|
|
|
public function run(int $count, int $page): Collection
|
|
|
|
{
|
|
|
|
$user = user();
|
|
|
|
if ($user === null || $user->isDefault()) {
|
|
|
|
return collect();
|
|
|
|
}
|
|
|
|
|
2022-07-16 14:54:25 -04:00
|
|
|
$query = $this->permissionService()->restrictEntityRelationQuery(
|
2021-05-22 09:05:28 -04:00
|
|
|
View::query(),
|
|
|
|
'views',
|
|
|
|
'viewable_id',
|
2022-07-16 08:17:08 -04:00
|
|
|
'viewable_type'
|
2021-05-22 09:05:28 -04:00
|
|
|
)
|
|
|
|
->orderBy('views.updated_at', 'desc')
|
|
|
|
->where('user_id', '=', user()->id);
|
|
|
|
|
|
|
|
return $query->with('viewable')
|
|
|
|
->skip(($page - 1) * $count)
|
|
|
|
->take($count)
|
|
|
|
->get()
|
|
|
|
->pluck('viewable')
|
|
|
|
->filter();
|
|
|
|
}
|
|
|
|
}
|