2019-12-28 09:58:07 -05:00
|
|
|
<?php namespace BookStack\Http\Controllers\Api;
|
|
|
|
|
|
|
|
use BookStack\Api\ListingResponseBuilder;
|
|
|
|
use BookStack\Http\Controllers\Controller;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
use Illuminate\Http\JsonResponse;
|
|
|
|
|
2020-11-22 09:56:19 -05:00
|
|
|
abstract class ApiController extends Controller
|
2019-12-28 09:58:07 -05:00
|
|
|
{
|
|
|
|
|
2020-01-12 09:45:54 -05:00
|
|
|
protected $rules = [];
|
2021-05-06 05:10:49 -04:00
|
|
|
protected $printHidden = [];
|
2020-01-12 09:45:54 -05:00
|
|
|
|
2019-12-28 09:58:07 -05:00
|
|
|
/**
|
|
|
|
* Provide a paginated listing JSON response in a standard format
|
|
|
|
* taking into account any pagination parameters passed by the user.
|
|
|
|
*/
|
2021-05-06 05:10:49 -04:00
|
|
|
protected function apiListingResponse(Builder $query, array $fields, array $protectedFieldsToPrint = []): JsonResponse
|
2019-12-28 09:58:07 -05:00
|
|
|
{
|
2021-05-06 05:10:49 -04:00
|
|
|
$listing = new ListingResponseBuilder($query, request(), $fields, $protectedFieldsToPrint);
|
2019-12-28 09:58:07 -05:00
|
|
|
return $listing->toResponse();
|
|
|
|
}
|
2020-01-12 09:45:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules for this controller.
|
|
|
|
*/
|
|
|
|
public function getValdationRules(): array
|
|
|
|
{
|
|
|
|
return $this->rules;
|
|
|
|
}
|
2021-03-07 17:24:05 -05:00
|
|
|
}
|