TerminalServiceProvider   A
last analyzed

Complexity

Total Complexity 9

Size/Duplication

Total Lines 97
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 7

Test Coverage

Coverage 95%

Importance

Changes 0
Metric Value
dl 0
loc 97
ccs 38
cts 40
cp 0.95
rs 10
c 0
b 0
f 0
wmc 9
lcom 1
cbo 7

5 Methods

Rating   Name   Duplication   Size   Complexity  
A register() 0 22 1
A handleRoutes() 0 10 2
A handlePublishes() 0 8 1
A boot() 0 12 3
A allowWhiteList() 0 8 2
1
<?php
2
3
namespace Recca0120\Terminal;
4
5
use Illuminate\Http\Request;
6
use Illuminate\Routing\Router;
7
use Illuminate\Support\Arr;
8
use Illuminate\Support\ServiceProvider;
9
10
class TerminalServiceProvider extends ServiceProvider
11
{
12
    /**
13
     * namespace.
14
     *
15
     * @var string
16
     */
17
    protected $namespace = 'Recca0120\Terminal\Http\Controllers';
18
19
    /**
20
     * Bootstrap any application services.
21
     *
22
     * @param Request $request
23
     * @param Router $router
24
     */
25 1
    public function boot(Request $request, Router $router)
26
    {
27 1
        $config = $this->app['config']['terminal'];
28 1
        if ($this->allowWhiteList($request, $config)) {
29 1
            $this->loadViewsFrom(__DIR__.'/../resources/views', 'terminal');
30 1
            $this->handleRoutes($router, $config);
31
        }
32
33 1
        if ($this->app->runningInConsole() === true) {
34 1
            $this->handlePublishes();
35
        }
36 1
    }
37
38
    /**
39
     * Register any application services.
40
     */
41 1
    public function register()
42
    {
43 1
        $this->mergeConfigFrom(__DIR__.'/../config/terminal.php', 'terminal');
44
45 1
        $this->app->bind(Application::class, function ($app) {
46 1
            $config = $app['config']['terminal'];
47 1
            $artisan = new Application($app, $app['events'], $app->version());
48
49 1
            return $artisan->resolveCommands($config['commands']);
50 1
        });
51
52 1
        $this->app->bind(Kernel::class, function ($app) {
53 1
            $config = $app['config']['terminal'];
54
55 1
            return new Kernel($app[Application::class], array_merge($config, [
56 1
                'basePath' => $app->basePath(),
57 1
                'environment' => $app->environment(),
58 1
                'version' => $app->version(),
59 1
                'endpoint' => $app['url']->route(Arr::get($config, 'route.as').'endpoint'),
60
            ]));
61 1
        });
62 1
    }
63
64
    /**
65
     * register routes.
66
     *
67
     * @param Router $router
68
     * @param array $config
69
     */
70 1
    protected function handleRoutes(Router $router, $config = [])
71
    {
72 1
        if ($this->app->routesAreCached() === false) {
73 1
            $router->group(array_merge([
74 1
                'namespace' => $this->namespace,
75 1
            ], Arr::get($config, 'route', [])), function () {
76
                require __DIR__.'/../routes/web.php';
77 1
            });
78
        }
79 1
    }
80
81
    /**
82
     * handle publishes.
83
     */
84 1
    protected function handlePublishes()
85
    {
86 1
        $this->publishes([
87 1
            __DIR__.'/../config/terminal.php' => config_path('terminal.php'),
88 1
            __DIR__.'/../resources/views' => base_path('resources/views/vendor/terminal'),
89 1
            __DIR__.'/../public' => public_path('vendor/terminal'),
90 1
        ], 'terminal');
91 1
    }
92
93
    /**
94
     * @param Request $request
95
     * @param $config
96
     * @return bool
97
     */
98
    private function allowWhiteList(Request $request, $config)
99
    {
100
        return in_array(
101
                $request->getClientIp(),
102
                Arr::get($config, 'whitelists', []),
103
                true
104
            ) || Arr::get($config, 'enabled');
105
    }
106
}
107