Files
firefly-iii/app/Api/V1/Requests/Data/Bulk/TransactionRequest.php

83 lines
2.5 KiB
PHP
Raw Normal View History

2021-08-10 18:43:21 +02:00
<?php
2021-08-10 19:31:55 +02:00
/*
* TransactionRequest.php
* Copyright (c) 2021 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/>.
*/
declare(strict_types=1);
2021-08-10 18:43:21 +02:00
namespace FireflyIII\Api\V1\Requests\Data\Bulk;
use FireflyIII\Enums\ClauseType;
use FireflyIII\Rules\IsValidBulkClause;
use FireflyIII\Support\Request\ChecksLogin;
use FireflyIII\Support\Request\ConvertsDataTypes;
use FireflyIII\Validation\Api\Data\Bulk\ValidatesBulkTransactionQuery;
use Illuminate\Foundation\Http\FormRequest;
2024-01-09 20:48:17 +01:00
use Illuminate\Support\Facades\Log;
2021-08-10 18:43:21 +02:00
use Illuminate\Validation\Validator;
2025-05-04 17:16:07 +02:00
use function Safe\json_decode;
2021-08-10 18:43:21 +02:00
/**
* Class TransactionRequest
*/
class TransactionRequest extends FormRequest
{
2022-10-30 14:23:00 +01:00
use ChecksLogin;
use ConvertsDataTypes;
use ValidatesBulkTransactionQuery;
2021-08-10 18:43:21 +02:00
public function getAll(): array
{
$data = [];
2023-12-20 19:35:52 +01:00
2021-08-10 18:43:21 +02:00
try {
$data = [
2025-05-04 17:16:07 +02:00
'query' => json_decode($this->get('query'), true, 8, JSON_THROW_ON_ERROR),
2021-08-10 18:43:21 +02:00
];
2023-12-20 19:35:52 +01:00
} catch (\JsonException $e) {
2021-08-10 18:43:21 +02:00
// dont really care. the validation should catch invalid json.
2023-10-29 06:32:00 +01:00
app('log')->error($e->getMessage());
2021-08-10 18:43:21 +02:00
}
return $data;
}
public function rules(): array
{
return [
'query' => ['required', 'min:1', 'max:255', 'json', new IsValidBulkClause(ClauseType::TRANSACTION)],
];
}
public function withValidator(Validator $validator): void
{
$validator->after(
2023-12-21 04:59:23 +01:00
function (Validator $validator): void {
2021-08-10 18:43:21 +02:00
// validate transaction query data.
$this->validateTransactionQuery($validator);
}
);
if ($validator->fails()) {
Log::channel('audit')->error(sprintf('Validation errors in %s', self::class), $validator->errors()->toArray());
2024-01-09 20:48:17 +01:00
}
2021-08-10 18:43:21 +02:00
}
2021-08-10 19:31:55 +02:00
}