2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
2021-05-22 09:05:28 -04:00
|
|
|
|
2021-06-26 11:23:15 -04:00
|
|
|
namespace BookStack\Entities\Queries;
|
2021-05-22 09:05:28 -04:00
|
|
|
|
2023-05-17 12:56:55 -04:00
|
|
|
use BookStack\Activity\Models\View;
|
2024-02-08 11:39:59 -05:00
|
|
|
use BookStack\Entities\EntityProvider;
|
2024-02-28 08:07:34 -05:00
|
|
|
use BookStack\Entities\Tools\MixedEntityListLoader;
|
2024-02-08 11:39:59 -05:00
|
|
|
use BookStack\Permissions\PermissionApplicator;
|
2023-06-10 10:08:07 -04:00
|
|
|
use Illuminate\Support\Collection;
|
2021-05-22 09:05:28 -04:00
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
|
2024-02-08 11:39:59 -05:00
|
|
|
class QueryPopular
|
2021-05-22 09:05:28 -04:00
|
|
|
{
|
2024-02-08 11:39:59 -05:00
|
|
|
public function __construct(
|
|
|
|
protected PermissionApplicator $permissions,
|
|
|
|
protected EntityProvider $entityProvider,
|
2024-02-28 08:07:34 -05:00
|
|
|
protected MixedEntityListLoader $listLoader,
|
2024-02-08 11:39:59 -05:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2024-02-28 08:07:34 -05:00
|
|
|
public function run(int $count, int $page, array $filterModels = null): Collection
|
2021-05-22 09:05:28 -04:00
|
|
|
{
|
2024-02-08 11:39:59 -05:00
|
|
|
$query = $this->permissions
|
2022-07-16 14:54:25 -04:00
|
|
|
->restrictEntityRelationQuery(View::query(), 'views', 'viewable_id', 'viewable_type')
|
2021-05-22 09:05:28 -04:00
|
|
|
->select('*', 'viewable_id', 'viewable_type', DB::raw('SUM(views) as view_count'))
|
|
|
|
->groupBy('viewable_id', 'viewable_type')
|
|
|
|
->orderBy('view_count', 'desc');
|
|
|
|
|
|
|
|
if ($filterModels) {
|
2024-02-08 11:39:59 -05:00
|
|
|
$query->whereIn('viewable_type', $this->entityProvider->getMorphClasses($filterModels));
|
2021-05-22 09:05:28 -04:00
|
|
|
}
|
|
|
|
|
2024-02-28 08:07:34 -05:00
|
|
|
$views = $query
|
2021-05-22 09:05:28 -04:00
|
|
|
->skip($count * ($page - 1))
|
|
|
|
->take($count)
|
2024-02-28 08:07:34 -05:00
|
|
|
->get();
|
2023-06-10 10:08:07 -04:00
|
|
|
|
2024-02-28 08:20:24 -05:00
|
|
|
$this->listLoader->loadIntoRelations($views->all(), 'viewable', true);
|
2023-06-10 10:08:07 -04:00
|
|
|
|
2024-02-28 08:07:34 -05:00
|
|
|
return $views->pluck('viewable')->filter();
|
2021-05-22 09:05:28 -04:00
|
|
|
}
|
2021-06-26 11:23:15 -04:00
|
|
|
}
|