Files
firefly-iii/app/Providers/FireflyServiceProvider.php

173 lines
5.7 KiB
PHP
Raw Normal View History

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