mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
160 lines
3.8 KiB
PHP
160 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* YearReportGenerator.php
|
|
* 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\Generator\Report\Standard;
|
|
|
|
use Carbon\Carbon;
|
|
use FireflyIII\Generator\Report\ReportGeneratorInterface;
|
|
use Illuminate\Support\Collection;
|
|
use Log;
|
|
use Throwable;
|
|
|
|
/**
|
|
* Class MonthReportGenerator.
|
|
*
|
|
* @codeCoverageIgnore
|
|
*/
|
|
class YearReportGenerator implements ReportGeneratorInterface
|
|
{
|
|
/** @var Collection The accounts involved. */
|
|
private $accounts;
|
|
/** @var Carbon The end date. */
|
|
private $end;
|
|
/** @var Carbon The start date. */
|
|
private $start;
|
|
|
|
/**
|
|
* Generates the report.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function generate(): string
|
|
{
|
|
// and some id's, joined:
|
|
$accountIds = implode(',', $this->accounts->pluck('id')->toArray());
|
|
$reportType = 'default';
|
|
|
|
try {
|
|
$result = prefixView(
|
|
'reports.default.year',
|
|
compact('accountIds', 'reportType')
|
|
)->with('start', $this->start)->with('end', $this->end)->render();
|
|
} catch (Throwable $e) {
|
|
Log::error(sprintf('Cannot render reports.account.report: %s', $e->getMessage()));
|
|
$result = 'Could not render report view.';
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
|
|
/**
|
|
* Set the accounts.
|
|
*
|
|
* @param Collection $accounts
|
|
*
|
|
* @return ReportGeneratorInterface
|
|
*/
|
|
public function setAccounts(Collection $accounts): ReportGeneratorInterface
|
|
{
|
|
$this->accounts = $accounts;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Unused budget setter.
|
|
*
|
|
* @param Collection $budgets
|
|
*
|
|
* @return ReportGeneratorInterface
|
|
*/
|
|
public function setBudgets(Collection $budgets): ReportGeneratorInterface
|
|
{
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Unused categories setter.
|
|
*
|
|
* @param Collection $categories
|
|
*
|
|
* @return ReportGeneratorInterface
|
|
*/
|
|
public function setCategories(Collection $categories): ReportGeneratorInterface
|
|
{
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set the end date.
|
|
*
|
|
* @param Carbon $date
|
|
*
|
|
* @return ReportGeneratorInterface
|
|
*/
|
|
public function setEndDate(Carbon $date): ReportGeneratorInterface
|
|
{
|
|
$this->end = $date;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set the expenses used.
|
|
*
|
|
* @param Collection $expense
|
|
*
|
|
* @return ReportGeneratorInterface
|
|
*/
|
|
public function setExpense(Collection $expense): ReportGeneratorInterface
|
|
{
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set the start date.
|
|
*
|
|
* @param Carbon $date
|
|
*
|
|
* @return ReportGeneratorInterface
|
|
*/
|
|
public function setStartDate(Carbon $date): ReportGeneratorInterface
|
|
{
|
|
$this->start = $date;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Unused tags setter.
|
|
*
|
|
* @param Collection $tags
|
|
*
|
|
* @return ReportGeneratorInterface
|
|
*/
|
|
public function setTags(Collection $tags): ReportGeneratorInterface
|
|
{
|
|
return $this;
|
|
}
|
|
}
|