You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
3.2 KiB
137 lines
3.2 KiB
<?php
|
|
/*
|
|
* Request.php
|
|
* Copyright (c) 2021 james@firefly-iii.org
|
|
*
|
|
* This file is part of the Firefly III Data Importer
|
|
* (https://github.com/firefly-iii/data-importer).
|
|
*
|
|
* 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);
|
|
|
|
namespace App\Http\Request;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
/**
|
|
* Class Request.
|
|
*
|
|
* @codeCoverageIgnore
|
|
*/
|
|
class Request extends FormRequest
|
|
{
|
|
public function convertBoolean(?string $value): bool
|
|
{
|
|
if (null === $value) {
|
|
return false;
|
|
}
|
|
if (in_array(trim($value), ['true', 'yes', '1'], true)) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Return integer value.
|
|
*/
|
|
public function convertToInteger(string $field): int
|
|
{
|
|
return (int)$this->get($field);
|
|
}
|
|
|
|
/**
|
|
* Return string value.
|
|
*/
|
|
public function convertToString(string $field): string
|
|
{
|
|
return app('steam')->cleanStringAndNewlines((string)($this->get($field) ?? ''));
|
|
}
|
|
|
|
/**
|
|
* Parse to integer
|
|
*/
|
|
public function integerFromValue(?string $string): ?int
|
|
{
|
|
if (null === $string) {
|
|
return null;
|
|
}
|
|
if ('' === $string) {
|
|
return null;
|
|
}
|
|
|
|
return (int)$string;
|
|
}
|
|
|
|
/**
|
|
* Return integer value, or NULL when it's not set.
|
|
*/
|
|
public function nullableInteger(string $field): ?int
|
|
{
|
|
if (!$this->has($field)) {
|
|
return null;
|
|
}
|
|
|
|
$value = (string)$this->get($field);
|
|
if ('' === $value) {
|
|
return null;
|
|
}
|
|
|
|
return (int)$value;
|
|
}
|
|
|
|
/**
|
|
* Return string value, or NULL if empty.
|
|
*/
|
|
public function nullableString(string $field): ?string
|
|
{
|
|
if (!$this->has($field)) {
|
|
return null;
|
|
}
|
|
|
|
return app('steam')->cleanStringAndNewlines((string)($this->get($field) ?? ''));
|
|
}
|
|
|
|
/**
|
|
* Parse and clean a string.
|
|
*/
|
|
public function stringFromValue(?string $string): ?string
|
|
{
|
|
if (null === $string) {
|
|
return null;
|
|
}
|
|
$result = app('steam')->cleanStringAndNewlines($string);
|
|
|
|
return '' === $result ? null : $result;
|
|
}
|
|
|
|
/**
|
|
* Return date or NULL.
|
|
*/
|
|
protected function getCarbonDate(string $field): ?Carbon
|
|
{
|
|
$result = null;
|
|
|
|
try {
|
|
$result = $this->get($field) ? new Carbon($this->get($field)) : null;
|
|
} catch (\Exception $e) {
|
|
app('log')->debug(sprintf('Exception when parsing date. Not interesting: %s', $e->getMessage()));
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|