2016-03-03 02:00:15 -06:00
|
|
|
<?php
|
2016-05-20 05:41:23 -05:00
|
|
|
/**
|
|
|
|
* RuleGroupServiceProvider.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
|
|
|
* This software may be modified and distributed under the terms
|
|
|
|
* of the MIT license. See the LICENSE file for details.
|
|
|
|
*/
|
|
|
|
|
2016-05-20 01:57:45 -05:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2016-03-03 02:00:15 -06:00
|
|
|
|
|
|
|
namespace FireflyIII\Providers;
|
|
|
|
|
|
|
|
use FireflyIII\Exceptions\FireflyException;
|
|
|
|
use Illuminate\Foundation\Application;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class RuleGroupServiceProvider
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Providers
|
|
|
|
*/
|
|
|
|
class RuleGroupServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Bootstrap the application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register the application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
|
|
|
$this->app->bind(
|
|
|
|
'FireflyIII\Repositories\RuleGroup\RuleGroupRepositoryInterface',
|
|
|
|
function (Application $app, array $arguments) {
|
2016-04-27 03:38:51 -05:00
|
|
|
if (!isset($arguments[0]) && $app->auth->check()) {
|
2016-07-23 14:37:06 -05:00
|
|
|
return app('FireflyIII\Repositories\RuleGroup\RuleGroupRepository', [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.');
|
2016-03-03 02:00:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return app('FireflyIII\Repositories\RuleGroup\RuleGroupRepository', $arguments);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|