+
+ /**
+ * Create a new book in the system.
+ * @throws ValidationException
+ */
+ public function create(Request $request)
+ {
+ $this->checkPermission('book-create-all');
+ $requestData = $this->validate($request, $this->rules['create']);
+
+ $book = $this->bookRepo->create($requestData);
+ Activity::add($book, 'book_create', $book->id);
+
+ return response()->json($book);
+ }
+
+ /**
+ * View the details of a single book.
+ */
+ public function read(string $id)
+ {
+ $book = Book::visible()->with(['tags', 'cover', 'createdBy', 'updatedBy'])->findOrFail($id);
+ return response()->json($book);
+ }
+
+ /**
+ * Update the details of a single book.
+ * @throws ValidationException
+ */
+ public function update(Request $request, string $id)
+ {
+ $book = Book::visible()->findOrFail($id);
+ $this->checkOwnablePermission('book-update', $book);
+
+ $requestData = $this->validate($request, $this->rules['update']);
+ $book = $this->bookRepo->update($book, $requestData);
+ Activity::add($book, 'book_update', $book->id);
+
+ return response()->json($book);
+ }
+
+ /**
+ * Delete a single book from the system.
+ * @throws NotifyException
+ * @throws BindingResolutionException
+ */
+ public function delete(string $id)
+ {
+ $book = Book::visible()->findOrFail($id);
+ $this->checkOwnablePermission('book-delete', $book);
+
+ $this->bookRepo->destroy($book);
+ Activity::addMessage('book_delete', $book->name);
+
+ return response('', 204);
+ }