firefly-iii/app/Api/V2/Controllers/Controller.php

165 lines
5.3 KiB
PHP
Raw Normal View History

2022-06-06 09:41:54 -05:00
<?php
2022-10-16 12:22:26 -05:00
2022-06-06 09:41:54 -05:00
/*
* Controller.php
* Copyright (c) 2022 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2022-10-16 12:22:26 -05:00
declare(strict_types=1);
2022-06-06 09:41:54 -05:00
namespace FireflyIII\Api\V2\Controllers;
2022-07-21 09:41:28 -05:00
use Carbon\Carbon;
use Carbon\Exceptions\InvalidDateException;
use Carbon\Exceptions\InvalidFormatException;
2022-06-25 07:23:52 -05:00
use FireflyIII\Transformers\V2\AbstractTransformer;
2022-06-06 09:41:54 -05:00
use Illuminate\Database\Eloquent\Model;
2022-06-25 07:23:52 -05:00
use Illuminate\Pagination\LengthAwarePaginator;
2022-06-06 09:41:54 -05:00
use Illuminate\Routing\Controller as BaseController;
2022-07-21 09:41:28 -05:00
use Illuminate\Support\Collection;
2022-06-06 09:41:54 -05:00
use League\Fractal\Manager;
2022-06-25 07:23:52 -05:00
use League\Fractal\Pagination\IlluminatePaginatorAdapter;
use League\Fractal\Resource\Collection as FractalCollection;
2022-06-06 09:41:54 -05:00
use League\Fractal\Resource\Item;
use League\Fractal\Serializer\JsonApiSerializer;
2022-07-21 09:41:28 -05:00
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
use Symfony\Component\HttpFoundation\ParameterBag;
2022-06-06 09:41:54 -05:00
/**
* Class Controller
*/
class Controller extends BaseController
{
protected const CONTENT_TYPE = 'application/vnd.api+json';
2022-07-21 09:41:28 -05:00
protected int $pageSize;
protected ParameterBag $parameters;
2022-06-25 07:23:52 -05:00
/**
*
*/
public function __construct()
{
2022-07-21 09:41:28 -05:00
$this->parameters = $this->getParameters();
$this->pageSize = 50;
2022-06-25 07:23:52 -05:00
if (auth()->check()) {
$this->pageSize = (int) app('preferences')->getForUser(auth()->user(), 'listPageSize', 50)->data;
}
}
2022-06-06 09:41:54 -05:00
/**
* Returns a JSON API object and returns it.
*
* @param string $key
* @param Model $object
* @param AbstractTransformer $transformer
* @return array
*/
final protected function jsonApiObject(string $key, Model $object, AbstractTransformer $transformer): array
{
// create some objects:
2022-10-30 08:23:00 -05:00
$manager = new Manager();
2022-06-06 09:41:54 -05:00
$baseUrl = request()->getSchemeAndHttpHost() . '/api/v2';
$manager->setSerializer(new JsonApiSerializer($baseUrl));
2022-07-21 09:41:28 -05:00
$transformer->collectMetaData(new Collection([$object]));
2022-06-06 09:41:54 -05:00
$resource = new Item($object, $transformer, $key);
return $manager->createData($resource)->toArray();
}
2022-06-25 07:23:52 -05:00
/**
* @param string $key
* @param LengthAwarePaginator $paginator
* @param AbstractTransformer $transformer
* @return array
*/
final protected function jsonApiList(string $key, LengthAwarePaginator $paginator, AbstractTransformer $transformer): array
{
2022-10-30 08:23:00 -05:00
$manager = new Manager();
2022-06-25 07:23:52 -05:00
$baseUrl = request()->getSchemeAndHttpHost() . '/api/v2';
$manager->setSerializer(new JsonApiSerializer($baseUrl));
2022-07-21 09:41:28 -05:00
$objects = $paginator->getCollection();
2022-07-16 02:25:10 -05:00
// the transformer, at this point, needs to collect information that ALL items in the collection
// require, like meta data and stuff like that, and save it for later.
$transformer->collectMetaData($objects);
2022-06-25 07:23:52 -05:00
$resource = new FractalCollection($objects, $transformer, $key);
$resource->setPaginator(new IlluminatePaginatorAdapter($paginator));
return $manager->createData($resource)->toArray();
}
2022-07-21 09:41:28 -05:00
/**
* TODO duplicate from V1 controller
* Method to grab all parameters from the URL.
*
* @return ParameterBag
*/
private function getParameters(): ParameterBag
{
2022-10-30 08:23:00 -05:00
$bag = new ParameterBag();
2022-07-21 09:41:28 -05:00
try {
$page = (int) request()->get('page');
} catch (ContainerExceptionInterface|NotFoundExceptionInterface $e) {
$page = 1;
}
$integers = ['limit'];
$dates = ['start', 'end', 'date'];
if ($page < 1) {
$page = 1;
}
if ($page > (2 ^ 16)) {
$page = (2 ^ 16);
}
$bag->set('page', $page);
// some date fields:
foreach ($dates as $field) {
$date = request()->query->get($field);
$obj = null;
if (null !== $date) {
try {
$obj = Carbon::parse($date);
} catch (InvalidDateException|InvalidFormatException $e) {
// don't care
2022-10-30 08:44:49 -05:00
app('log')->warning(sprintf('Ignored invalid date "%s" in API v2 controller parameter check: %s', $date, $e->getMessage()));
2022-07-21 09:41:28 -05:00
}
}
$bag->set($field, $obj);
}
// integer fields:
foreach ($integers as $integer) {
$value = request()->query->get($integer);
if (null !== $value) {
$bag->set($integer, (int) $value);
}
}
// sort fields:
// return $this->getSortParameters($bag);
return $bag;
}
2022-06-06 09:41:54 -05:00
}