BookStack/app/Http/Controllers/Api/ApiController.php

47 lines
1.2 KiB
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\Http\Controllers\Api;
2019-12-28 14:58:07 +00:00
use BookStack\Api\ListingResponseBuilder;
use BookStack\Http\Controllers\Controller;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Http\JsonResponse;
2020-11-22 14:56:19 +00:00
abstract class ApiController extends Controller
2019-12-28 14:58:07 +00:00
{
protected $rules = [];
2019-12-28 14:58:07 +00:00
/**
* Provide a paginated listing JSON response in a standard format
* taking into account any pagination parameters passed by the user.
*/
protected function apiListingResponse(Builder $query, array $fields, array $modifiers = []): JsonResponse
2019-12-28 14:58:07 +00:00
{
$listing = new ListingResponseBuilder($query, request(), $fields);
foreach ($modifiers as $modifier) {
$listing->modifyResults($modifier);
}
2021-06-26 15:23:15 +00:00
2019-12-28 14:58:07 +00:00
return $listing->toResponse();
}
/**
* Get the validation rules for this controller.
* Defaults to a $rules property but can be a rules() method.
*/
public function getValidationRules(): array
{
return $this->rules();
}
/**
* Get the validation rules for the actions in this controller.
* Defaults to a $rules property but can be a rules() method.
*/
protected function rules(): array
{
return $this->rules;
}
2021-03-07 22:24:05 +00:00
}