| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Http\Controllers\Api; | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 08:17:45 +08:00
										 |  |  | use BookStack\Entities\Models\Bookshelf; | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | use BookStack\Entities\Repos\BookshelfRepo; | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  | use Exception; | 
					
						
							| 
									
										
										
										
											2020-04-10 22:19:18 +08:00
										 |  |  | use Illuminate\Database\Eloquent\Relations\BelongsToMany; | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  | use Illuminate\Http\Request; | 
					
						
							|  |  |  | use Illuminate\Validation\ValidationException; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class BookshelfApiController extends ApiController | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-04-05 00:24:05 +08:00
										 |  |  |     protected BookshelfRepo $bookshelfRepo; | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * BookshelfApiController constructor. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function __construct(BookshelfRepo $bookshelfRepo) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->bookshelfRepo = $bookshelfRepo; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get a listing of shelves visible to the user. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function list() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $shelves = Bookshelf::visible(); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  |         return $this->apiListingResponse($shelves, [ | 
					
						
							| 
									
										
										
										
											2022-06-07 21:27:45 +08:00
										 |  |  |             'id', 'name', 'slug', 'description', 'created_at', 'updated_at', 'created_by', 'updated_by', 'owned_by', | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Create a new shelf in the system. | 
					
						
							| 
									
										
										
										
											2020-04-10 22:19:18 +08:00
										 |  |  |      * An array of books IDs can be provided in the request. These | 
					
						
							|  |  |  |      * will be added to the shelf in the same order as provided. | 
					
						
							| 
									
										
										
										
											2022-06-20 00:26:23 +08:00
										 |  |  |      * The cover image of a shelf can be set by sending a file via an 'image' property within a 'multipart/form-data' request. | 
					
						
							|  |  |  |      * If the 'image' property is null then the shelf cover image will be removed. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  |      * @throws ValidationException | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function create(Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->checkPermission('bookshelf-create-all'); | 
					
						
							| 
									
										
										
										
											2022-06-20 00:26:23 +08:00
										 |  |  |         $requestData = $this->validate($request, $this->rules()['create']); | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $bookIds = $request->get('books', []); | 
					
						
							| 
									
										
										
										
											2020-04-10 22:19:18 +08:00
										 |  |  |         $shelf = $this->bookshelfRepo->create($requestData, $bookIds); | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return response()->json($shelf); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * View the details of a single shelf. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function read(string $id) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-04-10 22:19:18 +08:00
										 |  |  |         $shelf = Bookshelf::visible()->with([ | 
					
						
							| 
									
										
										
										
											2021-01-04 06:29:58 +08:00
										 |  |  |             'tags', 'cover', 'createdBy', 'updatedBy', 'ownedBy', | 
					
						
							| 
									
										
										
										
											2020-04-10 22:19:18 +08:00
										 |  |  |             'books' => function (BelongsToMany $query) { | 
					
						
							| 
									
										
										
										
											2021-11-23 07:33:55 +08:00
										 |  |  |                 $query->scopes('visible')->get(['id', 'name', 'slug']); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             }, | 
					
						
							| 
									
										
										
										
											2020-04-10 22:19:18 +08:00
										 |  |  |         ])->findOrFail($id); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  |         return response()->json($shelf); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Update the details of a single shelf. | 
					
						
							| 
									
										
										
										
											2020-04-10 22:19:18 +08:00
										 |  |  |      * An array of books IDs can be provided in the request. These | 
					
						
							|  |  |  |      * will be added to the shelf in the same order as provided and overwrite | 
					
						
							|  |  |  |      * any existing book assignments. | 
					
						
							| 
									
										
										
										
											2022-06-20 00:26:23 +08:00
										 |  |  |      * The cover image of a shelf can be set by sending a file via an 'image' property within a 'multipart/form-data' request. | 
					
						
							|  |  |  |      * If the 'image' property is null then the shelf cover image will be removed. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  |      * @throws ValidationException | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function update(Request $request, string $id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $shelf = Bookshelf::visible()->findOrFail($id); | 
					
						
							|  |  |  |         $this->checkOwnablePermission('bookshelf-update', $shelf); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-20 00:26:23 +08:00
										 |  |  |         $requestData = $this->validate($request, $this->rules()['update']); | 
					
						
							| 
									
										
										
										
											2020-04-10 22:19:18 +08:00
										 |  |  |         $bookIds = $request->get('books', null); | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-10 22:19:18 +08:00
										 |  |  |         $shelf = $this->bookshelfRepo->update($shelf, $requestData, $bookIds); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  |         return response()->json($shelf); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2020-11-28 23:21:54 +08:00
										 |  |  |      * Delete a single shelf. | 
					
						
							|  |  |  |      * This will typically send the shelf to the recycle bin. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  |      * @throws Exception | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function delete(string $id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $shelf = Bookshelf::visible()->findOrFail($id); | 
					
						
							|  |  |  |         $this->checkOwnablePermission('bookshelf-delete', $shelf); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->bookshelfRepo->destroy($shelf); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 13:41:49 +08:00
										 |  |  |         return response('', 204); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-06-14 00:20:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     protected function rules(): array | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return [ | 
					
						
							|  |  |  |             'create' => [ | 
					
						
							|  |  |  |                 'name'        => ['required', 'string', 'max:255'], | 
					
						
							|  |  |  |                 'description' => ['string', 'max:1000'], | 
					
						
							|  |  |  |                 'books'       => ['array'], | 
					
						
							|  |  |  |                 'tags'        => ['array'], | 
					
						
							|  |  |  |                 'image'       => array_merge(['nullable'], $this->getImageValidationRules()), | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |             'update' => [ | 
					
						
							|  |  |  |                 'name'        => ['string', 'min:1', 'max:255'], | 
					
						
							|  |  |  |                 'description' => ['string', 'max:1000'], | 
					
						
							|  |  |  |                 'books'       => ['array'], | 
					
						
							|  |  |  |                 'tags'        => ['array'], | 
					
						
							|  |  |  |                 'image'       => array_merge(['nullable'], $this->getImageValidationRules()), | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |         ]; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-03-08 06:24:05 +08:00
										 |  |  | } |