firefly-iii/app/Rules/UniqueIban.php

166 lines
5.2 KiB
PHP
Raw Normal View History

<?php
/**
* UniqueIban.php
2020-02-16 06:56:25 -06:00
* Copyright (c) 2019 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);
namespace FireflyIII\Rules;
use FireflyIII\Models\Account;
2018-03-19 02:16:54 -05:00
use FireflyIII\Models\AccountType;
2024-05-17 23:42:09 -05:00
use FireflyIII\Support\Facades\Steam;
2023-04-28 02:06:05 -05:00
use Illuminate\Contracts\Validation\ValidationRule;
/**
* Class UniqueIban
*/
2023-04-28 02:06:05 -05:00
class UniqueIban implements ValidationRule
{
2021-01-26 12:27:49 -06:00
private ?Account $account;
2023-04-28 02:27:14 -05:00
private array $expectedTypes;
2018-03-19 02:16:54 -05:00
/**
* Create a new rule instance.
*/
2018-03-19 02:16:54 -05:00
public function __construct(?Account $account, ?string $expectedType)
{
2023-04-28 02:27:14 -05:00
$this->account = $account;
$this->expectedTypes = [];
if (null === $expectedType) {
2023-04-28 02:06:05 -05:00
return;
}
$this->expectedTypes = [$expectedType];
2021-01-26 12:27:49 -06:00
// a very basic fix to make sure we get the correct account type:
if ('expense' === $expectedType) {
2023-04-28 02:06:05 -05:00
$this->expectedTypes = [AccountType::EXPENSE];
2021-01-26 12:27:49 -06:00
}
if ('revenue' === $expectedType) {
2023-04-28 02:06:05 -05:00
$this->expectedTypes = [AccountType::REVENUE];
2021-01-26 12:27:49 -06:00
}
if ('asset' === $expectedType) {
2023-04-28 02:06:05 -05:00
$this->expectedTypes = [AccountType::ASSET];
}
if ('liabilities' === $expectedType) {
$this->expectedTypes = [AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE];
2021-01-26 12:27:49 -06:00
}
}
/**
* Get the validation error message.
*/
2018-07-25 23:10:17 -05:00
public function message(): string
{
2022-12-29 12:42:26 -06:00
return (string)trans('validation.unique_iban_for_user');
}
2023-12-20 12:35:52 -06:00
public function validate(string $attribute, mixed $value, \Closure $fail): void
2023-06-21 05:34:58 -05:00
{
if (!$this->passes($attribute, $value)) {
$fail((string)trans('validation.unique_iban_for_user'));
}
}
/**
* Determine if the validation rule passes.
*
2023-06-21 05:34:58 -05:00
* @param string $attribute
* @param mixed $value
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
2018-07-25 23:10:17 -05:00
public function passes($attribute, $value): bool
{
if (!auth()->check()) {
return true;
}
2023-04-28 02:06:05 -05:00
if (0 === count($this->expectedTypes)) {
return true;
2018-03-19 02:16:54 -05:00
}
2018-07-25 23:10:17 -05:00
$maxCounts = $this->getMaxOccurrences();
2018-03-19 02:16:54 -05:00
foreach ($maxCounts as $type => $max) {
2024-05-17 23:42:09 -05:00
// make sure to trim the value of $value so all spaces are removed.
$value = Steam::filterSpaces($value);
2018-07-25 23:10:17 -05:00
$count = $this->countHits($type, $value);
2023-10-29 00:33:43 -05:00
app('log')->debug(sprintf('Count for "%s" and IBAN "%s" is %d', $type, $value, $count));
2018-03-19 02:16:54 -05:00
if ($count > $max) {
2023-10-29 00:33:43 -05:00
app('log')->debug(
2018-03-19 02:16:54 -05:00
sprintf(
2023-04-28 02:06:05 -05:00
'IBAN "%s" is in use with %d account(s) of type "%s", which is too much for expected types "%s"',
2022-10-30 08:24:37 -05:00
$value,
$count,
$type,
2023-11-04 08:18:49 -05:00
implode(', ', $this->expectedTypes)
2018-03-19 02:16:54 -05:00
)
);
return false;
}
}
return true;
}
2018-07-25 23:10:17 -05:00
2023-06-21 05:34:58 -05:00
private function getMaxOccurrences(): array
2018-07-25 23:10:17 -05:00
{
2023-06-21 05:34:58 -05:00
$maxCounts = [
AccountType::ASSET => 0,
AccountType::EXPENSE => 0,
AccountType::REVENUE => 0,
'liabilities' => 0,
];
if (in_array('expense', $this->expectedTypes, true) || in_array(AccountType::EXPENSE, $this->expectedTypes, true)) {
// IBAN should be unique amongst expense and asset accounts.
// may appear once in revenue accounts
$maxCounts[AccountType::REVENUE] = 1;
}
if (in_array('revenue', $this->expectedTypes, true) || in_array(AccountType::REVENUE, $this->expectedTypes, true)) {
// IBAN should be unique amongst revenue and asset accounts.
// may appear once in expense accounts
$maxCounts[AccountType::EXPENSE] = 1;
2018-07-25 23:10:17 -05:00
}
2023-06-21 05:34:58 -05:00
return $maxCounts;
2018-07-25 23:10:17 -05:00
}
2021-03-21 03:15:40 -05:00
private function countHits(string $type, string $iban): int
{
2023-04-28 02:06:05 -05:00
$typesArray = [$type];
2023-04-28 02:27:14 -05:00
if ('liabilities' === $type) {
2023-04-28 02:06:05 -05:00
$typesArray = [AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE];
}
2021-03-21 03:15:40 -05:00
$query
= auth()->user()
->accounts()
->leftJoin('account_types', 'account_types.id', '=', 'accounts.account_type_id')
->where('accounts.iban', $iban)
->whereIn('account_types.type', $typesArray)
2023-12-20 12:35:52 -06:00
;
2021-03-21 03:15:40 -05:00
if (null !== $this->account) {
$query->where('accounts.id', '!=', $this->account->id);
}
return $query->count();
}
2018-03-05 12:35:58 -06:00
}