| 
									
										
										
										
											2021-05-16 07:29:56 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Http\Controllers; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use BookStack\Entities\Models\Entity; | 
					
						
							| 
									
										
										
										
											2021-05-23 20:34:08 +08:00
										 |  |  | use BookStack\Entities\Queries\TopFavourites; | 
					
						
							| 
									
										
										
										
											2021-05-16 07:29:56 +08:00
										 |  |  | use BookStack\Interfaces\Favouritable; | 
					
						
							|  |  |  | use BookStack\Model; | 
					
						
							|  |  |  | use Illuminate\Http\Request; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class FavouriteController extends Controller | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-23 20:34:08 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Show a listing of all favourite items for the current user. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function index(Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $viewCount = 20; | 
					
						
							|  |  |  |         $page = intval($request->get('page', 1)); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |         $favourites = (new TopFavourites())->run($viewCount + 1, (($page - 1) * $viewCount)); | 
					
						
							| 
									
										
										
										
											2021-05-23 20:34:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |         $hasMoreLink = ($favourites->count() > $viewCount) ? url('/favourites?page=' . ($page + 1)) : null; | 
					
						
							| 
									
										
										
										
											2021-05-23 20:34:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return view('common.detailed-listing-with-more', [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'title'       => trans('entities.my_favourites'), | 
					
						
							|  |  |  |             'entities'    => $favourites->slice(0, $viewCount), | 
					
						
							| 
									
										
										
										
											2021-05-23 20:34:08 +08:00
										 |  |  |             'hasMoreLink' => $hasMoreLink, | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-16 07:29:56 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Add a new item as a favourite. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function add(Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $favouritable = $this->getValidatedModelFromRequest($request); | 
					
						
							|  |  |  |         $favouritable->favourites()->firstOrCreate([ | 
					
						
							|  |  |  |             'user_id' => user()->id, | 
					
						
							|  |  |  |         ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->showSuccessNotification(trans('activities.favourite_add_notification', [ | 
					
						
							|  |  |  |             'name' => $favouritable->name, | 
					
						
							|  |  |  |         ])); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-16 07:29:56 +08:00
										 |  |  |         return redirect()->back(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Remove an item as a favourite. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function remove(Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $favouritable = $this->getValidatedModelFromRequest($request); | 
					
						
							|  |  |  |         $favouritable->favourites()->where([ | 
					
						
							|  |  |  |             'user_id' => user()->id, | 
					
						
							|  |  |  |         ])->delete(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->showSuccessNotification(trans('activities.favourite_remove_notification', [ | 
					
						
							|  |  |  |             'name' => $favouritable->name, | 
					
						
							|  |  |  |         ])); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-16 07:29:56 +08:00
										 |  |  |         return redirect()->back(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @throws \Illuminate\Validation\ValidationException | 
					
						
							|  |  |  |      * @throws \Exception | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-11-06 08:32:01 +08:00
										 |  |  |     protected function getValidatedModelFromRequest(Request $request): Entity | 
					
						
							| 
									
										
										
										
											2021-05-16 07:29:56 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $modelInfo = $this->validate($request, [ | 
					
						
							| 
									
										
										
										
											2021-11-05 08:26:55 +08:00
										 |  |  |             'type' => ['required', 'string'], | 
					
						
							|  |  |  |             'id'   => ['required', 'integer'], | 
					
						
							| 
									
										
										
										
											2021-05-16 07:29:56 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!class_exists($modelInfo['type'])) { | 
					
						
							|  |  |  |             throw new \Exception('Model not found'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /** @var Model $model */ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |         $model = new $modelInfo['type'](); | 
					
						
							|  |  |  |         if (!$model instanceof Favouritable) { | 
					
						
							| 
									
										
										
										
											2021-05-16 07:29:56 +08:00
										 |  |  |             throw new \Exception('Model not favouritable'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $modelInstance = $model->newQuery() | 
					
						
							|  |  |  |             ->where('id', '=', $modelInfo['id']) | 
					
						
							|  |  |  |             ->first(['id', 'name']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $inaccessibleEntity = ($modelInstance instanceof Entity && !userCan('view', $modelInstance)); | 
					
						
							|  |  |  |         if (is_null($modelInstance) || $inaccessibleEntity) { | 
					
						
							|  |  |  |             throw new \Exception('Model instance not found'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $modelInstance; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |