firefly-iii/app/Providers/FireflyServiceProvider.php

179 lines
5.9 KiB
PHP
Raw Normal View History

2015-02-06 13:43:19 -06:00
<?php
/**
* FireflyServiceProvider.php
2017-10-21 01:40:00 -05:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 01:40:00 -05:00
* This file is part of Firefly III.
*
2017-10-21 01:40:00 -05:00
* 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
2017-12-17 07:44:05 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
2017-03-29 14:20:54 -05:00
declare(strict_types=1);
2015-02-06 13:43:19 -06:00
namespace FireflyIII\Providers;
2017-08-18 08:32:11 -05:00
use FireflyIII\Export\ExpandedProcessor;
2017-02-02 00:35:53 -06:00
use FireflyIII\Export\ProcessorInterface;
use FireflyIII\Generator\Chart\Basic\ChartJsGenerator;
use FireflyIII\Generator\Chart\Basic\GeneratorInterface;
use FireflyIII\Helpers\Attachments\AttachmentHelper;
use FireflyIII\Helpers\Attachments\AttachmentHelperInterface;
use FireflyIII\Helpers\Chart\MetaPieChart;
use FireflyIII\Helpers\Chart\MetaPieChartInterface;
use FireflyIII\Helpers\FiscalHelper;
use FireflyIII\Helpers\FiscalHelperInterface;
use FireflyIII\Helpers\Help\Help;
use FireflyIII\Helpers\Help\HelpInterface;
use FireflyIII\Helpers\Report\BalanceReportHelper;
use FireflyIII\Helpers\Report\BalanceReportHelperInterface;
use FireflyIII\Helpers\Report\BudgetReportHelper;
use FireflyIII\Helpers\Report\BudgetReportHelperInterface;
2017-03-29 14:20:54 -05:00
use FireflyIII\Helpers\Report\PopupReport;
use FireflyIII\Helpers\Report\PopupReportInterface;
2017-02-02 00:35:53 -06:00
use FireflyIII\Helpers\Report\ReportHelper;
use FireflyIII\Helpers\Report\ReportHelperInterface;
use FireflyIII\Repositories\User\UserRepository;
use FireflyIII\Repositories\User\UserRepositoryInterface;
2017-08-04 08:48:26 -05:00
use FireflyIII\Services\Password\PwndVerifier;
use FireflyIII\Services\Password\Verifier;
2015-02-11 00:35:10 -06:00
use FireflyIII\Support\Amount;
use FireflyIII\Support\ExpandedForm;
use FireflyIII\Support\FireflyConfig;
2015-02-11 00:35:10 -06:00
use FireflyIII\Support\Navigation;
use FireflyIII\Support\Preferences;
use FireflyIII\Support\Steam;
use FireflyIII\Support\Twig\AmountFormat;
2015-05-01 15:44:35 -05:00
use FireflyIII\Support\Twig\General;
2015-05-02 04:32:45 -05:00
use FireflyIII\Support\Twig\Journal;
use FireflyIII\Support\Twig\Loader\TransactionJournalLoader;
use FireflyIII\Support\Twig\Loader\TransactionLoader;
2015-05-02 04:32:45 -05:00
use FireflyIII\Support\Twig\PiggyBank;
2016-01-15 01:10:22 -06:00
use FireflyIII\Support\Twig\Rule;
use FireflyIII\Support\Twig\Transaction;
2016-10-10 00:49:55 -05:00
use FireflyIII\Support\Twig\Translation;
2015-02-11 00:35:10 -06:00
use FireflyIII\Validation\FireflyValidator;
2017-06-05 04:12:50 -05:00
use Illuminate\Foundation\Application;
2015-02-06 13:43:19 -06:00
use Illuminate\Support\ServiceProvider;
2015-05-01 01:29:41 -05:00
use Twig;
use TwigBridge\Extension\Loader\Functions;
use Validator;
2015-02-06 13:43:19 -06:00
/**
* @codeCoverageIgnore
2017-11-15 05:25:49 -06:00
* Class FireflyServiceProvider.
*/
2015-02-06 13:43:19 -06:00
class FireflyServiceProvider extends ServiceProvider
{
2017-12-22 11:32:43 -06:00
/**
* Start provider.
*/
2015-02-11 00:35:10 -06:00
public function boot()
{
Validator::resolver(
2015-06-06 16:09:12 -05:00
function ($translator, $data, $rules, $messages) {
2015-02-11 00:35:10 -06:00
return new FireflyValidator($translator, $data, $rules, $messages);
}
);
2015-07-07 12:09:45 -05:00
$config = app('config');
2015-05-01 11:44:49 -05:00
Twig::addExtension(new Functions($config));
Twig::addRuntimeLoader(new TransactionLoader);
Twig::addRuntimeLoader(new TransactionJournalLoader);
2015-05-02 04:32:45 -05:00
Twig::addExtension(new PiggyBank);
2015-05-01 15:44:35 -05:00
Twig::addExtension(new General);
2015-05-02 04:32:45 -05:00
Twig::addExtension(new Journal);
2015-05-09 15:42:45 -05:00
Twig::addExtension(new Translation);
Twig::addExtension(new Transaction);
2016-01-15 01:10:22 -06:00
Twig::addExtension(new Rule);
Twig::addExtension(new AmountFormat);
}
2015-02-11 00:35:10 -06:00
2015-05-17 03:30:18 -05:00
/**
2017-12-22 11:32:43 -06:00
* Register stuff.
2015-05-17 03:30:18 -05:00
*/
2015-02-06 13:43:19 -06:00
public function register()
{
$this->app->bind(
2017-11-15 03:52:29 -06:00
'preferences',
function () {
return new Preferences;
}
2015-02-06 13:43:19 -06:00
);
$this->app->bind(
2017-11-15 03:52:29 -06:00
'fireflyconfig',
function () {
return new FireflyConfig;
}
);
2015-02-06 14:23:14 -06:00
$this->app->bind(
2017-11-15 03:52:29 -06:00
'navigation',
function () {
return new Navigation;
}
2015-02-06 14:23:14 -06:00
);
2015-02-06 23:49:24 -06:00
$this->app->bind(
2017-11-15 03:52:29 -06:00
'amount',
function () {
return new Amount;
}
2015-02-06 23:49:24 -06:00
);
$this->app->bind(
2017-11-15 03:52:29 -06:00
'steam',
function () {
return new Steam;
}
);
$this->app->bind(
2017-11-15 03:52:29 -06:00
'expandedform',
function () {
return new ExpandedForm;
}
);
2015-02-09 00:23:39 -06:00
2016-12-11 09:02:04 -06:00
// chart generator:
2017-02-02 00:35:53 -06:00
$this->app->bind(GeneratorInterface::class, ChartJsGenerator::class);
2016-12-11 09:02:04 -06:00
// chart builder
2017-04-29 01:55:37 -05:00
$this->app->bind(
MetaPieChartInterface::class,
function (Application $app) {
/** @var MetaPieChart $chart */
$chart = app(MetaPieChart::class);
if ($app->auth->check()) {
$chart->setUser(auth()->user());
}
return $chart;
}
);
2016-12-11 09:25:46 -06:00
// other generators
2017-08-18 08:32:11 -05:00
// export:
$this->app->bind(ProcessorInterface::class, ExpandedProcessor::class);
2017-02-02 00:35:53 -06:00
$this->app->bind(UserRepositoryInterface::class, UserRepository::class);
$this->app->bind(AttachmentHelperInterface::class, AttachmentHelper::class);
2016-12-25 05:55:22 -06:00
2017-03-29 14:20:54 -05:00
// more generators:
$this->app->bind(PopupReportInterface::class, PopupReport::class);
2017-02-02 00:35:53 -06:00
$this->app->bind(HelpInterface::class, Help::class);
$this->app->bind(ReportHelperInterface::class, ReportHelper::class);
2017-02-16 23:42:36 -06:00
$this->app->bind(FiscalHelperInterface::class, FiscalHelper::class);
2017-02-02 00:35:53 -06:00
$this->app->bind(BalanceReportHelperInterface::class, BalanceReportHelper::class);
$this->app->bind(BudgetReportHelperInterface::class, BudgetReportHelper::class);
2017-08-04 08:46:52 -05:00
// password verifier thing
$this->app->bind(Verifier::class, PwndVerifier::class);
2015-02-06 13:43:19 -06:00
}
2015-03-29 01:14:32 -05:00
}