1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Filled out base Book API endpoints, added example responses

This commit is contained in:
Dan Brown
2020-01-12 14:45:54 +00:00
parent a8595d8aaf
commit 04a8614136
12 changed files with 284 additions and 20 deletions

View File

@ -47,7 +47,7 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon
* The attributes excluded from the model's JSON form.
* @var array
*/
protected $hidden = ['password', 'remember_token'];
protected $hidden = ['password', 'remember_token', 'system_name', 'email_confirmed', 'external_auth_id', 'email'];
/**
* This holds the user's permissions when loaded.

View File

@ -18,7 +18,8 @@ class Book extends Entity implements HasCoverImage
{
public $searchFactor = 2;
protected $fillable = ['name', 'description', 'image_id'];
protected $fillable = ['name', 'description'];
protected $hidden = ['restricted'];
/**
* Get the url for this book.

View File

@ -8,6 +8,8 @@ use Illuminate\Http\JsonResponse;
class ApiController extends Controller
{
protected $rules = [];
/**
* Provide a paginated listing JSON response in a standard format
* taking into account any pagination parameters passed by the user.
@ -17,4 +19,12 @@ class ApiController extends Controller
$listing = new ListingResponseBuilder($query, request(), $fields);
return $listing->toResponse();
}
/**
* Get the validation rules for this controller.
*/
public function getValdationRules(): array
{
return $this->rules;
}
}

View File

@ -1,47 +1,99 @@
<?php namespace BookStack\Http\Controllers\Api;
use BookStack\Entities\Book;
use BookStack\Entities\Repos\BookRepo;
use BookStack\Facades\Activity;
use Illuminate\Http\Request;
class BooksApiController extends ApiController
{
public $validation = [
protected $bookRepo;
protected $rules = [
'create' => [
// TODO
'name' => 'required|string|max:255',
'description' => 'string|max:1000',
],
'update' => [
// TODO
'name' => 'string|min:1|max:255',
'description' => 'string|max:1000',
],
];
/**
* BooksApiController constructor.
*/
public function __construct(BookRepo $bookRepo)
{
$this->bookRepo = $bookRepo;
}
/**
* Get a listing of books visible to the user.
* @api listing
*/
public function index()
{
$books = Book::visible();
return $this->apiListingResponse($books, [
'id', 'name', 'slug', 'description', 'created_at', 'updated_at', 'created_by', 'updated_by',
'restricted', 'image_id',
'id', 'name', 'slug', 'description', 'created_at', 'updated_at', 'created_by', 'updated_by', 'image_id',
]);
}
public function create()
/**
* Create a new book.
* @throws \Illuminate\Validation\ValidationException
*/
public function create(Request $request)
{
// TODO -
$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);
}
public function read()
/**
* View the details of a single book.
*/
public function read(string $id)
{
// TODO -
$book = Book::visible()->with(['tags', 'cover', 'createdBy', 'updatedBy'])->findOrFail($id);
return response()->json($book);
}
public function update()
/**
* Update the details of a single book.
* @throws \Illuminate\Validation\ValidationException
*/
public function update(Request $request, string $id)
{
// TODO -
$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);
}
public function delete()
/**
* Delete a book from the system.
* @throws \BookStack\Exceptions\NotifyException
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function delete(string $id)
{
// TODO -
$book = Book::visible()->findOrFail($id);
$this->checkOwnablePermission('book-delete', $book);
$this->bookRepo->destroy($book);
Activity::addMessage('book_delete', $book->name);
return response('', 204);
}
}

View File

@ -8,6 +8,7 @@ class Image extends Ownable
{
protected $fillable = ['name'];
protected $hidden = [];
/**
* Get a thumbnail for this image.