Completed
Pull Request — master (#9)
by
unknown
10:44
created

FakeIdServiceProvider::class_uses_deep()   B

Complexity

Conditions 4
Paths 4

Size

Total Lines 23
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 20

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 23
ccs 0
cts 14
cp 0
rs 8.7972
cc 4
eloc 13
nc 4
nop 2
crap 20
1
<?php namespace Propaganistas\LaravelFakeId;
2
3
use Closure;
4
use Illuminate\Support\ServiceProvider;
5
use Jenssegers\Optimus\Optimus;
6
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
7
8
class FakeIdServiceProvider extends ServiceProvider
9
{
10
    /**
11
     * Boots the service provider.
12
     *
13
     * @return void
14
     */
15 12
    public function boot()
16
    {
17
        // Publish config.
18 12
        $this->publishes([
19 8
            __DIR__ . '/../config/config.php' => config_path('fakeid.php'),
20 8
        ], 'config');
21 12
    }
22
23
    /**
24
     * Register the service provider.
25
     *
26
     * @return void
27
     */
28 12
    public function register()
29
    {
30
        // Merge default config.
31 8
        $this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'fakeid');
32
33
        // Register setup command.
34
        $this->app->singleton('fakeid.command.setup', function ($app) {
0 ignored issues
show
Unused Code introduced by
The parameter $app is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
35
            return new Commands\FakeIdSetupCommand();
36 8
        });
37 8
        $this->commands('fakeid.command.setup');
38
39
        // Register FakeId driver.
40
        $this->app->singleton('Jenssegers\Optimus\Optimus', function ($app) {
41 6
            return new Optimus(
42 9
                $app['config']['fakeid.prime'],
43 9
                $app['config']['fakeid.inverse'],
44 9
                $app['config']['fakeid.random']
45 3
            );
46 8
        });
47 8
        $this->app->alias('Jenssegers\Optimus\Optimus', 'fakeid');
48
49 8
        $this->registerRouterMacro();
50
51 12
    }
52
53
    /**
54
     * Register the custom router macro.
55
     */
56
    protected function registerRouterMacro()
57
    {
58
        $this->app['router']->macro('fakeIdModel', function ($key, $class, Closure $callback = null) {
59 8
            $this->bind($key, function ($value) use ($key, $class, $callback) {
0 ignored issues
show
Bug introduced by
The method bind() does not seem to exist on object<Propaganistas\Lar...\FakeIdServiceProvider>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
60
                if (is_null($value)) {
61
                    return;
62
                }
63
64
                // For model binders, we will attempt to retrieve the models using the first
65
                // method on the model instance. If we cannot retrieve the models we'll
66
                // throw a not found exception otherwise we will return the instance.
67 4
                $instance = $this->container->make($class);
0 ignored issues
show
Bug introduced by
The property container does not exist. Did you maybe forget to declare it?

In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:

class MyClass { }

$x = new MyClass();
$x->foo = true;

Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion:

class MyClass {
    public $foo;
}

$x = new MyClass();
$x->foo = true;
Loading history...
68
69
                // Decode FakeId first if applicable.
70
                if (in_array('Propaganistas\LaravelFakeId\FakeIdTrait', self::class_uses_deep($class))) {
71
                    $value = $this->container->make('fakeid')->decode($value);
72
                }
73
74
                if ($model = $instance->where($instance->getRouteKeyName(), $value)->first()) {
75
                    return $model;
76
                }
77
78
                // If a callback was supplied to the method we will call that to determine
79
                // what we should do when the model is not found. This just gives these
80
                // developer a little greater flexibility to decide what will happen.
81
                if ($callback instanceof Closure) {
82
                    return call_user_func($callback, $value);
83
                }
84
85
                throw new NotFoundHttpException;
86 8
            });
87 8
        });
88 12
    }
89
90
	private static function class_uses_deep($class, $autoload = true)
91
	{
92
		$traits = [];
93
94
		// Get traits of all parent classes
95
		do {
96
			$traits = array_merge(class_uses($class, $autoload), $traits);
97
		} while ($class = get_parent_class($class));
98
99
		// Get traits of all parent traits
100
		$traitsToSearch = $traits;
101
		while (!empty($traitsToSearch)) {
102
			$newTraits = class_uses(array_pop($traitsToSearch), $autoload);
103
			$traits = array_merge($newTraits, $traits);
104
			$traitsToSearch = array_merge($newTraits, $traitsToSearch);
105
		};
106
107
		foreach ($traits as $trait => $same) {
108
			$traits = array_merge(class_uses($trait, $autoload), $traits);
109
		}
110
111
		return array_unique($traits);
112
	}
113
114
}
115