2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http\Controllers\Api;
|
2020-02-23 00:41:49 -05:00
|
|
|
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Bookshelf;
|
2021-06-26 11:23:15 -04:00
|
|
|
use BookStack\Entities\Repos\BookshelfRepo;
|
2020-02-23 00:41:49 -05:00
|
|
|
use Exception;
|
2020-04-10 10:19:18 -04:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
2020-02-23 00:41:49 -05:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
|
|
|
|
class BookshelfApiController extends ApiController
|
|
|
|
{
|
2022-04-04 12:24:05 -04:00
|
|
|
protected BookshelfRepo $bookshelfRepo;
|
2020-02-23 00:41:49 -05: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 11:23:15 -04:00
|
|
|
|
2020-02-23 00:41:49 -05:00
|
|
|
return $this->apiListingResponse($shelves, [
|
2022-06-07 09:27:45 -04:00
|
|
|
'id', 'name', 'slug', 'description', 'created_at', 'updated_at', 'created_by', 'updated_by', 'owned_by',
|
2020-02-23 00:41:49 -05:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new shelf in the system.
|
2020-04-10 10:19:18 -04: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-19 12:26:23 -04: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 11:23:15 -04:00
|
|
|
*
|
2020-02-23 00:41:49 -05:00
|
|
|
* @throws ValidationException
|
|
|
|
*/
|
|
|
|
public function create(Request $request)
|
|
|
|
{
|
|
|
|
$this->checkPermission('bookshelf-create-all');
|
2022-06-19 12:26:23 -04:00
|
|
|
$requestData = $this->validate($request, $this->rules()['create']);
|
2020-02-23 00:41:49 -05:00
|
|
|
|
|
|
|
$bookIds = $request->get('books', []);
|
2020-04-10 10:19:18 -04:00
|
|
|
$shelf = $this->bookshelfRepo->create($requestData, $bookIds);
|
2020-02-23 00:41:49 -05:00
|
|
|
|
|
|
|
return response()->json($shelf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* View the details of a single shelf.
|
|
|
|
*/
|
|
|
|
public function read(string $id)
|
|
|
|
{
|
2020-04-10 10:19:18 -04:00
|
|
|
$shelf = Bookshelf::visible()->with([
|
2021-01-03 17:29:58 -05:00
|
|
|
'tags', 'cover', 'createdBy', 'updatedBy', 'ownedBy',
|
2020-04-10 10:19:18 -04:00
|
|
|
'books' => function (BelongsToMany $query) {
|
2021-11-22 18:33:55 -05:00
|
|
|
$query->scopes('visible')->get(['id', 'name', 'slug']);
|
2021-06-26 11:23:15 -04:00
|
|
|
},
|
2020-04-10 10:19:18 -04:00
|
|
|
])->findOrFail($id);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2020-02-23 00:41:49 -05:00
|
|
|
return response()->json($shelf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the details of a single shelf.
|
2020-04-10 10:19:18 -04: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-19 12:26:23 -04: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 11:23:15 -04:00
|
|
|
*
|
2020-02-23 00:41:49 -05:00
|
|
|
* @throws ValidationException
|
|
|
|
*/
|
|
|
|
public function update(Request $request, string $id)
|
|
|
|
{
|
|
|
|
$shelf = Bookshelf::visible()->findOrFail($id);
|
|
|
|
$this->checkOwnablePermission('bookshelf-update', $shelf);
|
|
|
|
|
2022-06-19 12:26:23 -04:00
|
|
|
$requestData = $this->validate($request, $this->rules()['update']);
|
2020-04-10 10:19:18 -04:00
|
|
|
$bookIds = $request->get('books', null);
|
2020-02-23 00:41:49 -05:00
|
|
|
|
2020-04-10 10:19:18 -04:00
|
|
|
$shelf = $this->bookshelfRepo->update($shelf, $requestData, $bookIds);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2020-02-23 00:41:49 -05:00
|
|
|
return response()->json($shelf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-11-28 10:21:54 -05:00
|
|
|
* Delete a single shelf.
|
|
|
|
* This will typically send the shelf to the recycle bin.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2020-02-23 00:41:49 -05: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 11:23:15 -04:00
|
|
|
|
2020-02-23 00:41:49 -05:00
|
|
|
return response('', 204);
|
|
|
|
}
|
2022-06-13 12:20:21 -04: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-07 17:24:05 -05:00
|
|
|
}
|