Files
firefly-iii/app/Console/Commands/Correction/FixIbans.php

132 lines
4.0 KiB
PHP
Raw Normal View History

<?php
2022-03-29 14:55:51 +02:00
/*
* FixIbans.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-01-07 16:17:38 +01:00
declare(strict_types=1);
namespace FireflyIII\Console\Commands\Correction;
use FireflyIII\Models\Account;
2023-04-28 09:06:05 +02:00
use FireflyIII\Models\AccountType;
use Illuminate\Console\Command;
2023-04-28 09:06:05 +02:00
use Illuminate\Support\Collection;
/**
* Class FixIbans
*/
class FixIbans extends Command
{
/**
* The console command description.
*
* @var string
*/
protected $description = 'Removes spaces from IBANs';
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'firefly-iii:fix-ibans';
/**
* Execute the console command.
*
* @return int
*/
public function handle(): int
{
$accounts = Account::whereNotNull('iban')->get();
2023-04-28 09:06:05 +02:00
$this->filterIbans($accounts);
$this->countAndCorrectIbans($accounts);
return 0;
}
/**
* @param Collection $accounts
2023-05-29 13:56:55 +02:00
*
2023-04-28 09:06:05 +02:00
* @return void
*/
private function countAndCorrectIbans(Collection $accounts): void
{
$set = [];
/** @var Account $account */
2023-05-07 20:17:29 +02:00
foreach ($accounts as $account) {
2023-05-29 13:56:55 +02:00
$userId = (int)$account->user_id;
2023-04-28 09:06:05 +02:00
$set[$userId] = $set[$userId] ?? [];
2023-05-29 13:56:55 +02:00
$iban = (string)$account->iban;
2023-05-07 20:17:29 +02:00
if ('' === $iban) {
2023-04-29 07:08:11 +02:00
continue;
}
2023-04-28 09:06:05 +02:00
$type = $account->accountType->type;
2023-05-07 20:17:29 +02:00
if (in_array($type, [AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE], true)) {
2023-04-28 09:06:05 +02:00
$type = 'liabilities';
}
2023-05-07 20:17:29 +02:00
if (array_key_exists($iban, $set[$userId])) {
2023-04-28 09:06:05 +02:00
// iban already in use! two exceptions exist:
2023-05-07 20:17:29 +02:00
if (
2023-05-29 13:56:55 +02:00
!(AccountType::EXPENSE === $set[$userId][$iban] && AccountType::REVENUE === $type)
&& // allowed combination
2023-04-28 09:06:05 +02:00
!(AccountType::REVENUE === $set[$userId][$iban] && AccountType::EXPENSE === $type) // also allowed combination.
2023-04-28 09:27:14 +02:00
) {
2023-05-07 20:17:29 +02:00
$this->line(
sprintf(
'IBAN "%s" is used more than once and will be removed from %s #%d ("%s")',
$iban,
$account->accountType->type,
$account->id,
$account->name
)
);
2023-04-28 09:06:05 +02:00
$account->iban = null;
$account->save();
}
}
2023-05-07 20:17:29 +02:00
if (!array_key_exists($iban, $set[$userId])) {
2023-04-28 09:06:05 +02:00
$set[$userId][$iban] = $type;
}
}
}
/**
* @param Collection $accounts
2023-05-29 13:56:55 +02:00
*
2023-04-28 09:06:05 +02:00
* @return void
*/
private function filterIbans(Collection $accounts): void
{
/** @var Account $account */
foreach ($accounts as $account) {
$iban = $account->iban;
if (str_contains($iban, ' ')) {
2022-10-30 12:24:51 +01:00
$iban = app('steam')->filterSpaces((string)$account->iban);
if ('' !== $iban) {
$account->iban = $iban;
$account->save();
$this->line(sprintf('Removed spaces from IBAN of account #%d', $account->id));
}
}
}
}
}