2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http\Controllers\Api;
|
2019-12-28 09:58:07 -05:00
|
|
|
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Book;
|
2020-01-12 09:45:54 -05:00
|
|
|
use BookStack\Entities\Repos\BookRepo;
|
|
|
|
use Illuminate\Http\Request;
|
2020-01-15 15:18:02 -05:00
|
|
|
use Illuminate\Validation\ValidationException;
|
2019-12-28 09:58:07 -05:00
|
|
|
|
2020-05-22 19:28:41 -04:00
|
|
|
class BookApiController extends ApiController
|
2019-12-28 09:58:07 -05:00
|
|
|
{
|
2020-01-12 09:45:54 -05:00
|
|
|
protected $bookRepo;
|
|
|
|
|
|
|
|
public function __construct(BookRepo $bookRepo)
|
|
|
|
{
|
|
|
|
$this->bookRepo = $bookRepo;
|
|
|
|
}
|
|
|
|
|
2019-12-28 09:58:07 -05:00
|
|
|
/**
|
|
|
|
* Get a listing of books visible to the user.
|
|
|
|
*/
|
2020-01-18 09:03:11 -05:00
|
|
|
public function list()
|
2019-12-28 09:58:07 -05:00
|
|
|
{
|
|
|
|
$books = Book::visible();
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-12-28 09:58:07 -05:00
|
|
|
return $this->apiListingResponse($books, [
|
2022-06-07 09:27:45 -04:00
|
|
|
'id', 'name', 'slug', 'description', 'created_at', 'updated_at', 'created_by', 'updated_by', 'owned_by',
|
2019-12-28 09:58:07 -05:00
|
|
|
]);
|
|
|
|
}
|
2020-01-01 11:33:47 -05:00
|
|
|
|
2020-01-12 09:45:54 -05:00
|
|
|
/**
|
2020-01-15 15:18:02 -05:00
|
|
|
* Create a new book in the system.
|
2022-06-19 12:26:23 -04:00
|
|
|
* The cover image of a book 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 book cover image will be removed.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2020-01-15 15:18:02 -05:00
|
|
|
* @throws ValidationException
|
2020-01-12 09:45:54 -05:00
|
|
|
*/
|
|
|
|
public function create(Request $request)
|
2020-01-01 11:33:47 -05:00
|
|
|
{
|
2020-01-12 09:45:54 -05:00
|
|
|
$this->checkPermission('book-create-all');
|
2022-06-19 12:26:23 -04:00
|
|
|
$requestData = $this->validate($request, $this->rules()['create']);
|
2020-01-12 09:45:54 -05:00
|
|
|
|
|
|
|
$book = $this->bookRepo->create($requestData);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2020-01-12 09:45:54 -05:00
|
|
|
return response()->json($book);
|
2020-01-01 11:33:47 -05:00
|
|
|
}
|
|
|
|
|
2020-01-12 09:45:54 -05:00
|
|
|
/**
|
|
|
|
* View the details of a single book.
|
|
|
|
*/
|
|
|
|
public function read(string $id)
|
2020-01-01 11:33:47 -05:00
|
|
|
{
|
2021-01-03 17:29:58 -05:00
|
|
|
$book = Book::visible()->with(['tags', 'cover', 'createdBy', 'updatedBy', 'ownedBy'])->findOrFail($id);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2020-01-12 09:45:54 -05:00
|
|
|
return response()->json($book);
|
2020-01-01 11:33:47 -05:00
|
|
|
}
|
|
|
|
|
2020-01-12 09:45:54 -05:00
|
|
|
/**
|
|
|
|
* Update the details of a single book.
|
2022-06-19 12:26:23 -04:00
|
|
|
* The cover image of a book 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 book cover image will be removed.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2020-01-15 15:18:02 -05:00
|
|
|
* @throws ValidationException
|
2020-01-12 09:45:54 -05:00
|
|
|
*/
|
|
|
|
public function update(Request $request, string $id)
|
2020-01-01 11:33:47 -05:00
|
|
|
{
|
2020-01-12 09:45:54 -05:00
|
|
|
$book = Book::visible()->findOrFail($id);
|
|
|
|
$this->checkOwnablePermission('book-update', $book);
|
|
|
|
|
2022-06-19 12:26:23 -04:00
|
|
|
$requestData = $this->validate($request, $this->rules()['update']);
|
2020-01-12 09:45:54 -05:00
|
|
|
$book = $this->bookRepo->update($book, $requestData);
|
|
|
|
|
|
|
|
return response()->json($book);
|
2020-01-01 11:33:47 -05:00
|
|
|
}
|
|
|
|
|
2020-01-12 09:45:54 -05:00
|
|
|
/**
|
2020-11-28 10:21:54 -05:00
|
|
|
* Delete a single book.
|
|
|
|
* This will typically send the book to the recycle bin.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2020-11-21 19:17:45 -05:00
|
|
|
* @throws \Exception
|
2020-01-12 09:45:54 -05:00
|
|
|
*/
|
|
|
|
public function delete(string $id)
|
2020-01-01 11:33:47 -05:00
|
|
|
{
|
2020-01-12 09:45:54 -05:00
|
|
|
$book = Book::visible()->findOrFail($id);
|
|
|
|
$this->checkOwnablePermission('book-delete', $book);
|
|
|
|
|
|
|
|
$this->bookRepo->destroy($book);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2020-01-12 09:45:54 -05:00
|
|
|
return response('', 204);
|
2020-01-01 11:33:47 -05:00
|
|
|
}
|
2022-06-13 12:20:21 -04:00
|
|
|
|
2022-06-19 13:14:53 -04:00
|
|
|
protected function rules(): array
|
|
|
|
{
|
2022-06-13 12:20:21 -04:00
|
|
|
return [
|
|
|
|
'create' => [
|
|
|
|
'name' => ['required', 'string', 'max:255'],
|
|
|
|
'description' => ['string', 'max:1000'],
|
|
|
|
'tags' => ['array'],
|
|
|
|
'image' => array_merge(['nullable'], $this->getImageValidationRules()),
|
|
|
|
],
|
|
|
|
'update' => [
|
|
|
|
'name' => ['string', 'min:1', 'max:255'],
|
|
|
|
'description' => ['string', 'max:1000'],
|
|
|
|
'tags' => ['array'],
|
|
|
|
'image' => array_merge(['nullable'], $this->getImageValidationRules()),
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
2021-03-07 17:24:05 -05:00
|
|
|
}
|