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

115 lines
3.8 KiB
PHP
Raw Normal View History

2019-03-23 08:10:59 +01:00
<?php
/**
* EnableCurrencies.php
2020-01-23 20:35:02 +01:00
* Copyright (c) 2020 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/>.
*/
2019-08-17 12:09:03 +02:00
declare(strict_types=1);
2019-03-23 08:10:59 +01:00
namespace FireflyIII\Console\Commands\Correction;
use FireflyIII\Models\AccountMeta;
use FireflyIII\Models\BudgetLimit;
use FireflyIII\Models\Transaction;
use FireflyIII\Models\TransactionCurrency;
use FireflyIII\Models\TransactionJournal;
use Illuminate\Console\Command;
use Illuminate\Support\Collection;
2020-10-10 11:21:45 +02:00
use Log;
2019-03-23 08:10:59 +01:00
/**
* Class EnableCurrencies
*/
class EnableCurrencies extends Command
{
/**
* The console command description.
*
* @var string
*/
protected $description = 'Enables all currencies in use.';
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'firefly-iii:enable-currencies';
2019-03-23 08:10:59 +01:00
/**
* Execute the console command.
*
* @return int
2019-03-23 08:10:59 +01:00
*/
public function handle(): int
{
2019-03-23 18:58:06 +01:00
$start = microtime(true);
2019-03-23 08:10:59 +01:00
$found = [];
// get all meta entries
/** @var Collection $meta */
$meta = AccountMeta::where('name', 'currency_id')->groupBy('data')->get(['data']);
foreach ($meta as $entry) {
$found[] = (int) $entry->data;
2019-03-23 08:10:59 +01:00
}
// get all from journals:
/** @var Collection $journals */
2020-10-23 18:15:37 +02:00
$journals = TransactionJournal::groupBy('transaction_currency_id')->get(['transaction_currency_id']);
2019-03-23 08:10:59 +01:00
foreach ($journals as $entry) {
$found[] = (int) $entry->transaction_currency_id;
2019-03-23 08:10:59 +01:00
}
// get all from transactions
/** @var Collection $transactions */
2020-10-10 11:21:45 +02:00
$transactions = Transaction::groupBy('transaction_currency_id', 'foreign_currency_id')->get(['transaction_currency_id','foreign_currency_id']);
2019-03-23 08:10:59 +01:00
foreach ($transactions as $entry) {
$found[] = (int) $entry->transaction_currency_id;
2020-10-10 11:21:45 +02:00
$found[] = (int) $entry->foreign_currency_id;
2019-03-23 08:10:59 +01:00
}
// get all from budget limits
/** @var Collection $limits */
$limits = BudgetLimit::groupBy('transaction_currency_id')->get(['transaction_currency_id']);
foreach ($limits as $entry) {
$found[] = (int) $entry->transaction_currency_id;
2019-03-23 08:10:59 +01:00
}
2020-10-10 11:21:45 +02:00
$found = array_values(array_unique($found));
$found = array_values(array_filter($found, function (int $currencyId) {
return $currencyId !== 0;
}));
$message = sprintf('%d different currencies are currently in use.', count($found));
$this->info($message);
Log::debug($message, $found);
2019-06-10 20:14:00 +02:00
2019-03-23 08:10:59 +01:00
$disabled = TransactionCurrency::whereIn('id', $found)->where('enabled', false)->count();
if ($disabled > 0) {
2019-06-10 20:14:00 +02:00
$this->info(sprintf('%d were (was) still disabled. This has been corrected.', $disabled));
}
if (0 === $disabled) {
$this->info('All currencies are correctly enabled or disabled.');
2019-03-23 08:10:59 +01:00
}
TransactionCurrency::whereIn('id', $found)->update(['enabled' => true]);
2019-03-23 18:58:06 +01:00
$end = round(microtime(true) - $start, 2);
$this->info(sprintf('Verified currencies in %s seconds.', $end));
2020-03-21 15:43:41 +01:00
2019-03-23 08:10:59 +01:00
return 0;
}
}