firefly-iii/app/Providers/JournalServiceProvider.php

101 lines
2.9 KiB
PHP
Raw Normal View History

<?php
/**
* JournalServiceProvider.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2016-05-20 01:57:45 -05:00
declare(strict_types = 1);
namespace FireflyIII\Providers;
use FireflyIII\Exceptions\FireflyException;
use Illuminate\Foundation\Application;
use Illuminate\Support\ServiceProvider;
/**
* Class JournalServiceProvider
*
* @package FireflyIII\Providers
*/
class JournalServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register the application services.
*
* @return void
*/
public function register()
2016-10-15 05:39:34 -05:00
{
$this->registerRepository();
$this->registerTasker();
2016-11-20 01:57:48 -06:00
$this->registerCollector();
}
2016-11-20 04:43:19 -06:00
private function registerCollector()
{
2016-11-20 01:57:48 -06:00
$this->app->bind(
'FireflyIII\Helpers\Collector\JournalCollectorInterface',
function (Application $app, array $arguments) {
if (!isset($arguments[0]) && $app->auth->check()) {
return app('FireflyIII\Helpers\Collector\JournalCollector', [auth()->user()]);
}
if (!isset($arguments[0]) && !$app->auth->check()) {
throw new FireflyException('There is no user present.');
}
return app('FireflyIII\Helpers\Collector\JournalCollector', $arguments);
}
);
2016-10-15 05:39:34 -05:00
}
private function registerRepository()
{
$this->app->bind(
'FireflyIII\Repositories\Journal\JournalRepositoryInterface',
function (Application $app, array $arguments) {
2016-04-26 07:56:42 -05:00
if (!isset($arguments[0]) && $app->auth->check()) {
2016-07-23 14:37:06 -05:00
return app('FireflyIII\Repositories\Journal\JournalRepository', [auth()->user()]);
2016-04-27 22:50:29 -05:00
}
if (!isset($arguments[0]) && !$app->auth->check()) {
throw new FireflyException('There is no user present.');
}
return app('FireflyIII\Repositories\Journal\JournalRepository', $arguments);
}
);
}
2016-10-15 05:39:34 -05:00
private function registerTasker()
{
$this->app->bind(
'FireflyIII\Repositories\Journal\JournalTaskerInterface',
function (Application $app, array $arguments) {
if (!isset($arguments[0]) && $app->auth->check()) {
return app('FireflyIII\Repositories\Journal\JournalTasker', [auth()->user()]);
}
if (!isset($arguments[0]) && !$app->auth->check()) {
throw new FireflyException('There is no user present.');
}
return app('FireflyIII\Repositories\Journal\JournalTasker', $arguments);
}
);
}
}