2019-03-18 16:53:05 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2019-03-23 08:10:59 +01:00
|
|
|
* ReportSum.php
|
2019-03-18 16:53:05 +01:00
|
|
|
* Copyright (c) 2019 thegrumpydictator@gmail.com
|
|
|
|
*
|
|
|
|
* This file is part of Firefly III.
|
|
|
|
*
|
|
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Firefly III 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-03-23 08:10:59 +01:00
|
|
|
namespace FireflyIII\Console\Commands\Integrity;
|
2019-03-18 16:53:05 +01:00
|
|
|
|
2019-03-23 08:10:59 +01:00
|
|
|
use FireflyIII\Repositories\User\UserRepositoryInterface;
|
|
|
|
use FireflyIII\User;
|
2019-03-18 16:53:05 +01:00
|
|
|
use Illuminate\Console\Command;
|
|
|
|
|
|
|
|
/**
|
2019-03-23 08:10:59 +01:00
|
|
|
* Class ReportSkeleton
|
2019-03-18 16:53:05 +01:00
|
|
|
*/
|
2019-03-23 08:10:59 +01:00
|
|
|
class ReportSum extends Command
|
2019-03-18 16:53:05 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2019-03-23 08:10:59 +01:00
|
|
|
protected $description = 'Report on the total sum of transactions. Must be 0.';
|
2019-03-18 16:53:05 +01:00
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2019-03-23 08:10:59 +01:00
|
|
|
protected $signature = 'firefly-iii:report-sum';
|
2019-03-18 16:53:05 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function handle(): int
|
|
|
|
{
|
2019-03-23 08:10:59 +01:00
|
|
|
$this->reportSum();
|
2019-03-18 16:53:05 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-03-23 08:10:59 +01:00
|
|
|
* Reports for each user when the sum of their transactions is not zero.
|
2019-03-18 16:53:05 +01:00
|
|
|
*/
|
2019-03-23 08:10:59 +01:00
|
|
|
private function reportSum(): void
|
2019-03-18 16:53:05 +01:00
|
|
|
{
|
2019-03-23 18:58:06 +01:00
|
|
|
$start = microtime(true);
|
2019-03-23 08:10:59 +01:00
|
|
|
/** @var UserRepositoryInterface $userRepository */
|
|
|
|
$userRepository = app(UserRepositoryInterface::class);
|
|
|
|
|
|
|
|
/** @var User $user */
|
|
|
|
foreach ($userRepository->all() as $user) {
|
|
|
|
$sum = (string)$user->transactions()->sum('amount');
|
|
|
|
if (0 !== bccomp($sum, '0')) {
|
2019-03-23 18:58:06 +01:00
|
|
|
$message = sprintf('Error: Transactions for user #%d (%s) are off by %s!', $user->id, $user->email, $sum);
|
|
|
|
$this->error($message);
|
2019-03-23 08:10:59 +01:00
|
|
|
}
|
|
|
|
if (0 === bccomp($sum, '0')) {
|
|
|
|
$this->info(sprintf('Amount integrity OK for user #%d', $user->id));
|
|
|
|
}
|
|
|
|
}
|
2019-03-23 18:58:06 +01:00
|
|
|
$end = round(microtime(true) - $start, 2);
|
|
|
|
$this->info(sprintf('Report on total sum finished in %s seconds', $end));
|
|
|
|
|
2019-03-18 16:53:05 +01:00
|
|
|
}
|
|
|
|
}
|