mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-27 09:14:43 +02:00
* refactor(api): prefer composition to strict inheritance for API queries, requests & actions * style: fix StyleCI findigns
81 lines
2.0 KiB
PHP
81 lines
2.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Api\Field;
|
|
|
|
use App\Contracts\Http\Api\Field\FilterableField;
|
|
use App\Contracts\Http\Api\Field\RenderableField;
|
|
use App\Contracts\Http\Api\Field\SelectableField;
|
|
use App\Contracts\Http\Api\Field\SortableField;
|
|
use App\Http\Api\Filter\DateFilter;
|
|
use App\Http\Api\Filter\Filter;
|
|
use App\Http\Api\Query\Query;
|
|
use App\Http\Api\Schema\Schema;
|
|
use App\Http\Api\Sort\Sort;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class DateField.
|
|
*/
|
|
abstract class DateField extends Field implements FilterableField, RenderableField, SelectableField, SortableField
|
|
{
|
|
/**
|
|
* Get the filter that can be applied to the field.
|
|
*
|
|
* @return Filter
|
|
*/
|
|
public function getFilter(): Filter
|
|
{
|
|
return new DateFilter($this->getKey(), $this->getColumn());
|
|
}
|
|
|
|
/**
|
|
* Determine if the field should be displayed to the user.
|
|
*
|
|
* @param Query $query
|
|
* @return bool
|
|
*/
|
|
public function shouldRender(Query $query): bool
|
|
{
|
|
$criteria = $query->getFieldCriteria($this->schema->type());
|
|
|
|
return $criteria === null || $criteria->isAllowedField($this->getKey());
|
|
}
|
|
|
|
/**
|
|
* Get the value to display to the user.
|
|
*
|
|
* @param Model $model
|
|
* @return mixed
|
|
*/
|
|
public function render(Model $model): mixed
|
|
{
|
|
return $model->getAttribute($this->getColumn());
|
|
}
|
|
|
|
/**
|
|
* Determine if the field should be included in the select clause of our query.
|
|
*
|
|
* @param Query $query
|
|
* @param Schema $schema
|
|
* @return bool
|
|
*/
|
|
public function shouldSelect(Query $query, Schema $schema): bool
|
|
{
|
|
$criteria = $query->getFieldCriteria($this->schema->type());
|
|
|
|
return $criteria === null || $criteria->isAllowedField($this->getKey());
|
|
}
|
|
|
|
/**
|
|
* Get the sort that can be applied to the field.
|
|
*
|
|
* @return Sort
|
|
*/
|
|
public function getSort(): Sort
|
|
{
|
|
return new Sort($this->getKey(), $this->getColumn());
|
|
}
|
|
}
|