mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-25 16:24:35 +02:00
* refactor: migration from laravel-enum package to native php enums * style: fix StyleCI findings
183 lines
5.8 KiB
PHP
183 lines
5.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Requests\Api;
|
|
|
|
use App\Contracts\Http\Api\Schema\SearchableSchema;
|
|
use App\Enums\Http\Api\Filter\BinaryLogicalOperator;
|
|
use App\Http\Api\Filter\HasFilter;
|
|
use App\Http\Api\Parser\FilterParser;
|
|
use App\Http\Api\Parser\SearchParser;
|
|
use App\Http\Api\Parser\SortParser;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Fluent;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Validation\Validator;
|
|
|
|
/**
|
|
* Class IndexRequest.
|
|
*/
|
|
class IndexRequest extends ReadRequest
|
|
{
|
|
/**
|
|
* Get the filter validation rules.
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function getFilterRules(): array
|
|
{
|
|
$schema = $this->schema();
|
|
$types = Arr::wrap($schema->type());
|
|
|
|
$schemaFormattedFilters = array_merge(
|
|
$this->getSchemaFormattedFilters($schema),
|
|
$this->getFilterFormats(new HasFilter($schema->allowedIncludes()), BinaryLogicalOperator::cases())
|
|
);
|
|
|
|
$param = Str::of(FilterParser::param())->append('.')->append($schema->type())->__toString();
|
|
$rules = $this->restrictAllowedTypes($param, $schemaFormattedFilters);
|
|
|
|
$types = array_merge($types, $schemaFormattedFilters);
|
|
|
|
foreach ($schema->allowedIncludes() as $allowedInclude) {
|
|
$relationSchema = $allowedInclude->schema();
|
|
$types[] = $relationSchema->type();
|
|
|
|
$relationSchemaFormattedFilters = $this->getSchemaFormattedFilters($relationSchema);
|
|
$types = array_merge($types, $relationSchemaFormattedFilters);
|
|
|
|
$param = Str::of(FilterParser::param())->append('.')->append($relationSchema->type())->__toString();
|
|
$rules = $rules + $this->restrictAllowedTypes($param, $relationSchemaFormattedFilters);
|
|
}
|
|
|
|
return $rules + $this->restrictAllowedTypes(FilterParser::param(), array_unique($types));
|
|
}
|
|
|
|
/**
|
|
* Get the paging validation rules.
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function getPagingRules(): array
|
|
{
|
|
return $this->offset();
|
|
}
|
|
|
|
/**
|
|
* Get the search validation rules.
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function getSearchRules(): array
|
|
{
|
|
$schema = $this->schema();
|
|
|
|
if ($schema instanceof SearchableSchema) {
|
|
return $this->optional(SearchParser::param());
|
|
}
|
|
|
|
return $this->prohibit(SearchParser::param());
|
|
}
|
|
|
|
/**
|
|
* Get the sort validation rules.
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function getSortRules(): array
|
|
{
|
|
$schema = $this->schema();
|
|
|
|
$param = Str::of(SortParser::param())->append('.')->append($schema->type())->__toString();
|
|
$rules = $this->restrictAllowedSortValues($param, $schema);
|
|
|
|
foreach ($schema->allowedIncludes() as $allowedInclude) {
|
|
$relationSchema = $allowedInclude->schema();
|
|
|
|
$param = Str::of(SortParser::param())->append('.')->append($relationSchema->type())->__toString();
|
|
$rules = $rules + $this->restrictAllowedSortValues($param, $relationSchema);
|
|
}
|
|
|
|
return $rules;
|
|
}
|
|
|
|
/**
|
|
* Configure validator with needed conditional validation.
|
|
*
|
|
* @param Validator $validator
|
|
* @return void
|
|
*/
|
|
protected function handleConditionalValidation(Validator $validator): void
|
|
{
|
|
parent::handleConditionalValidation($validator);
|
|
|
|
$this->conditionallyRestrictAllowedSortTypes($validator);
|
|
}
|
|
|
|
/**
|
|
* Filters shall be validated based on values.
|
|
* If the value contains a separator, this is a multi-value filter that builds a where in clause.
|
|
* Otherwise, this is a single-value filter that builds a where clause.
|
|
* Logical operators apply to specific clauses, so we must check formatted filter parameters against filter values.
|
|
*
|
|
* @param Validator $validator
|
|
* @return void
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
protected function conditionallyRestrictAllowedFilterValues(Validator $validator): void
|
|
{
|
|
$schema = $this->schema();
|
|
|
|
foreach ($schema->filters() as $filter) {
|
|
$this->conditionallyRestrictFilter($validator, $schema, $filter);
|
|
}
|
|
$this->conditionallyRestrictFilter($validator, $schema, new HasFilter($schema->allowedIncludes()));
|
|
|
|
foreach ($schema->allowedIncludes() as $allowedInclude) {
|
|
$relationSchema = $allowedInclude->schema();
|
|
foreach ($relationSchema->filters() as $relationFilter) {
|
|
$this->conditionallyRestrictFilter($validator, $relationSchema, $relationFilter);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sort types can be scoped globally or by type for index endpoints.
|
|
* Ex: /api/anime?sort=year.
|
|
* Ex: /api/anime?sort[anime]=year.
|
|
*
|
|
* @param Validator $validator
|
|
* @return void
|
|
*/
|
|
protected function conditionallyRestrictAllowedSortTypes(Validator $validator): void
|
|
{
|
|
$schema = $this->schema();
|
|
$types = Arr::wrap($schema->type());
|
|
|
|
foreach ($schema->allowedIncludes() as $allowedInclude) {
|
|
$relationSchema = $allowedInclude->schema();
|
|
$types[] = $relationSchema->type();
|
|
}
|
|
|
|
$rules = $this->restrictAllowedSortValues(SortParser::param(), $schema);
|
|
|
|
$validator->sometimes(
|
|
SortParser::param(),
|
|
Arr::get($rules, SortParser::param()),
|
|
fn (Fluent $fluent) => Arr::has($fluent->toArray(), SortParser::param()) && ! is_array($fluent->get(SortParser::param()))
|
|
);
|
|
|
|
$validator->sometimes(
|
|
SortParser::param(),
|
|
[
|
|
'sometimes',
|
|
'required',
|
|
Str::of('array:')->append(implode(',', $types))->__toString(),
|
|
],
|
|
fn (Fluent $fluent) => is_array($fluent->get(SortParser::param()))
|
|
);
|
|
}
|
|
}
|