mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-26 00:06:34 -06:00
154 lines
4.6 KiB
PHP
154 lines
4.6 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* TransactionController.php
|
||
|
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||
|
*
|
||
|
* This file is part of Firefly III.
|
||
|
*
|
||
|
* Firefly III is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* Firefly III 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 General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace FireflyIII\Api\V1\Controllers;
|
||
|
use FireflyIII\Models\TransactionJournal;
|
||
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
||
|
use Illuminate\Http\Request;
|
||
|
use Illuminate\Support\Collection;
|
||
|
use Preferences;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Class TransactionController
|
||
|
*/
|
||
|
class TransactionController extends Controller
|
||
|
{
|
||
|
|
||
|
/** @var JournalRepositoryInterface */
|
||
|
private $repository;
|
||
|
/**
|
||
|
* TransactionController constructor.
|
||
|
*
|
||
|
* @throws \FireflyIII\Exceptions\FireflyException
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
parent::__construct();
|
||
|
$this->middleware(
|
||
|
function ($request, $next) {
|
||
|
/** @var JournalRepositoryInterface repository */
|
||
|
$this->repository = app(JournalRepositoryInterface::class);
|
||
|
$this->repository->setUser(auth()->user());
|
||
|
|
||
|
return $next($request);
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Remove the specified resource from storage.
|
||
|
*
|
||
|
* @param \FireflyIII\Models\TransactionJournal $journal
|
||
|
*
|
||
|
* @return \Illuminate\Http\Response
|
||
|
*/
|
||
|
public function delete(TransactionJournal $journal)
|
||
|
{
|
||
|
$this->repository->destroy($journal);
|
||
|
|
||
|
return response()->json([], 204);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Display a listing of the resource.
|
||
|
*
|
||
|
* @param Request $request
|
||
|
*
|
||
|
* @return \Illuminate\Http\JsonResponse
|
||
|
*/
|
||
|
public function index(Request $request)
|
||
|
{
|
||
|
$pageSize = intval(Preferences::getForUser(auth()->user(), 'listPageSize', 50)->data);
|
||
|
$paginator = $this->repository->getPaginator($pageSize);
|
||
|
/** @var Collection $bills */
|
||
|
$bills = $paginator->getCollection();
|
||
|
|
||
|
$manager = new Manager();
|
||
|
$baseUrl = $request->getSchemeAndHttpHost() . '/api/v1';
|
||
|
$manager->setSerializer(new JsonApiSerializer($baseUrl));
|
||
|
|
||
|
$resource = new FractalCollection($bills, new BillTransformer($this->parameters), 'bills');
|
||
|
$resource->setPaginator(new IlluminatePaginatorAdapter($paginator));
|
||
|
|
||
|
return response()->json($manager->createData($resource)->toArray());
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @param Request $request
|
||
|
* @param Bill $bill
|
||
|
*
|
||
|
* @return \Illuminate\Http\JsonResponse
|
||
|
*/
|
||
|
public function show(Request $request, Bill $bill)
|
||
|
{
|
||
|
$manager = new Manager();
|
||
|
$manager->parseIncludes(['attachments', 'journals', 'user']);
|
||
|
$baseUrl = $request->getSchemeAndHttpHost() . '/api/v1';
|
||
|
$manager->setSerializer(new JsonApiSerializer($baseUrl));
|
||
|
|
||
|
$resource = new Item($bill, new BillTransformer($this->parameters), 'bills');
|
||
|
|
||
|
return response()->json($manager->createData($resource)->toArray());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param BillRequest $request
|
||
|
*
|
||
|
* @return \Illuminate\Http\JsonResponse
|
||
|
*/
|
||
|
public function store(BillRequest $request)
|
||
|
{
|
||
|
$bill = $this->repository->store($request->getAll());
|
||
|
$manager = new Manager();
|
||
|
$baseUrl = $request->getSchemeAndHttpHost() . '/api/v1';
|
||
|
$manager->setSerializer(new JsonApiSerializer($baseUrl));
|
||
|
|
||
|
$resource = new Item($bill, new BillTransformer($this->parameters), 'bills');
|
||
|
|
||
|
return response()->json($manager->createData($resource)->toArray());
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @param BillRequest $request
|
||
|
* @param Bill $bill
|
||
|
*
|
||
|
* @return \Illuminate\Http\JsonResponse
|
||
|
*/
|
||
|
public function update(BillRequest $request, Bill $bill)
|
||
|
{
|
||
|
$data = $request->getAll();
|
||
|
$bill = $this->repository->update($bill, $data);
|
||
|
$manager = new Manager();
|
||
|
$baseUrl = $request->getSchemeAndHttpHost() . '/api/v1';
|
||
|
$manager->setSerializer(new JsonApiSerializer($baseUrl));
|
||
|
|
||
|
$resource = new Item($bill, new BillTransformer($this->parameters), 'bills');
|
||
|
|
||
|
return response()->json($manager->createData($resource)->toArray());
|
||
|
|
||
|
}
|
||
|
}
|