X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/ea55b7f141a70e2d6edb209f6c48610a9c005e4e..refs/pull/236/head:/app/Services/ViewService.php diff --git a/app/Services/ViewService.php b/app/Services/ViewService.php index 55e32fe1c..1a9ee5f70 100644 --- a/app/Services/ViewService.php +++ b/app/Services/ViewService.php @@ -1,6 +1,5 @@ view = $view; - $this->user = auth()->user(); + $this->user = user(); + $this->permissionService = $permissionService; } /** @@ -27,6 +29,7 @@ class ViewService */ public function add(Entity $entity) { + if ($this->user === null) return 0; $view = $entity->views()->where('user_id', '=', $this->user->id)->first(); // Add view if model exists if ($view) { @@ -43,27 +46,50 @@ class ViewService return 1; } + /** + * Get the entities with the most views. + * @param int $count + * @param int $page + * @param bool|false|array $filterModel + */ + public function getPopular($count = 10, $page = 0, $filterModel = false) + { + $skipCount = $count * $page; + $query = $this->permissionService->filterRestrictedEntityRelations($this->view, 'views', 'viewable_id', 'viewable_type') + ->select('*', 'viewable_id', 'viewable_type', \DB::raw('SUM(views) as view_count')) + ->groupBy('viewable_id', 'viewable_type') + ->orderBy('view_count', 'desc'); + + if ($filterModel && is_array($filterModel)) { + $query->whereIn('viewable_type', $filterModel); + } else if ($filterModel) { + $query->where('viewable_type', '=', get_class($filterModel)); + }; + + return $query->with('viewable')->skip($skipCount)->take($count)->get()->pluck('viewable'); + } + /** * Get all recently viewed entities for the current user. - * @param int $count - * @param int $page + * @param int $count + * @param int $page * @param Entity|bool $filterModel * @return mixed */ public function getUserRecentlyViewed($count = 10, $page = 0, $filterModel = false) { - $skipCount = $count * $page; - $query = $this->view->where('user_id', '=', auth()->user()->id); + if ($this->user === null) return collect(); - if ($filterModel) $query->where('viewable_type', '=', get_class($filterModel)); + $query = $this->permissionService + ->filterRestrictedEntityRelations($this->view, 'views', 'viewable_id', 'viewable_type'); - $views = $query->with('viewable')->orderBy('updated_at', 'desc')->skip($skipCount)->take($count)->get(); - $viewedEntities = $views->map(function ($item) { - return $item->viewable()->getResults(); - }); - return $viewedEntities; - } + if ($filterModel) $query = $query->where('viewable_type', '=', get_class($filterModel)); + $query = $query->where('user_id', '=', user()->id); + $viewables = $query->with('viewable')->orderBy('updated_at', 'desc') + ->skip($count * $page)->take($count)->get()->pluck('viewable'); + return $viewables; + } /** * Reset all view counts by deleting all views. @@ -73,5 +99,4 @@ class ViewService $this->view->truncate(); } - } \ No newline at end of file