54 lines
1.7 KiB
PHP
54 lines
1.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\API;
|
|
|
|
use App\Entity\User;
|
|
use App\Timesheet\DateTimeFactory;
|
|
use App\Utils\Pagination;
|
|
use FOS\RestBundle\View\View;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\Form\Extension\Core\Type\DateTimeType;
|
|
use Symfony\Component\Form\Extension\Core\Type\FormType;
|
|
use Symfony\Component\Form\FormInterface;
|
|
|
|
/**
|
|
* @method null|User getUser()
|
|
*/
|
|
abstract class BaseApiController extends AbstractController
|
|
{
|
|
public const DATE_ONLY_FORMAT = 'yyyy-MM-dd';
|
|
public const DATE_FORMAT = DateTimeType::HTML5_FORMAT;
|
|
public const DATE_FORMAT_PHP = 'Y-m-d\TH:i:s';
|
|
|
|
protected function createSearchForm(string $type = FormType::class, $data = null, array $options = []): FormInterface
|
|
{
|
|
return $this->container
|
|
->get('form.factory')
|
|
->createNamed('', $type, $data, array_merge(['method' => 'GET'], $options));
|
|
}
|
|
|
|
protected function getDateTimeFactory(?User $user = null): DateTimeFactory
|
|
{
|
|
if (null === $user) {
|
|
$user = $this->getUser();
|
|
}
|
|
|
|
return DateTimeFactory::createByUser($user);
|
|
}
|
|
|
|
protected function addPagination(View $view, Pagination $pagination): void
|
|
{
|
|
$view->setHeader('X-Page', (string) $pagination->getCurrentPage());
|
|
$view->setHeader('X-Total-Count', (string) $pagination->getNbResults());
|
|
$view->setHeader('X-Total-Pages', (string) $pagination->getNbPages());
|
|
$view->setHeader('X-Per-Page', (string) $pagination->getMaxPerPage());
|
|
}
|
|
}
|