. */ declare(strict_types=1); namespace FireflyIII\Console\Commands\Integrity; use FireflyIII\Console\Commands\ShowsFriendlyMessages; use FireflyIII\Repositories\User\UserRepositoryInterface; use FireflyIII\User; use Illuminate\Console\Command; /** * Class ReportSkeleton */ class ReportSum extends Command { use ShowsFriendlyMessages; protected $description = 'Report on the total sum of transactions. Must be 0.'; protected $signature = 'firefly-iii:report-sum'; /** * Execute the console command. * * @return int */ public function handle(): int { $this->reportSum(); return 0; } /** * Reports for each user when the sum of their transactions is not zero. */ private function reportSum(): void { /** @var UserRepositoryInterface $userRepository */ $userRepository = app(UserRepositoryInterface::class); /** @var User $user */ foreach ($userRepository->all() as $user) { $sum = (string)$user->transactions()->sum('amount'); if (!is_numeric($sum)) { $message = sprintf('Error: Transactions for user #%d (%s) have an invalid sum ("%s").', $user->id, $user->email, $sum); $this->friendlyError($message); continue; } if (0 !== bccomp($sum, '0')) { $message = sprintf('Error: Transactions for user #%d (%s) are off by %s!', $user->id, $user->email, $sum); $this->friendlyError($message); } if (0 === bccomp($sum, '0')) { $this->friendlyPositive(sprintf('Amount integrity OK for user #%d', $user->id)); } } } }