1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace App\Ship\Engine\Loaders; |
4
|
|
|
|
5
|
|
|
use App; |
6
|
|
|
use App\Ship\Engine\Butlers\Facades\ShipButler; |
7
|
|
|
use File; |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* Class ProvidersLoaderTrait. |
11
|
|
|
* |
12
|
|
|
* @author Mahmoud Zalt <[email protected]> |
13
|
|
|
*/ |
14
|
|
|
trait ProvidersLoaderTrait |
15
|
|
|
{ |
16
|
|
|
|
17
|
|
|
/** |
18
|
|
|
* Loads only the Main Service Providers from the Containers. |
19
|
|
|
* All the Service Providers (registered inside the main), will be |
20
|
|
|
* loaded from the `boot()` function on the parent of the Main |
21
|
|
|
* Service Providers. |
22
|
|
|
* |
23
|
|
|
* @param $containerName |
24
|
|
|
*/ |
25
|
|
|
public function loadOnlyMainProvidersFromContainers($containerName) |
26
|
|
|
{ |
27
|
|
|
$containerProvidersDirectory = base_path('app/Containers/' . $containerName . '/Providers'); |
28
|
|
|
|
29
|
|
|
$this->loadProviders($containerProvidersDirectory); |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* @param $directory |
34
|
|
|
*/ |
35
|
|
|
private function loadProviders($directory) |
36
|
|
|
{ |
37
|
|
|
$mainServiceProviderNameStartWith = 'Main'; |
38
|
|
|
|
39
|
|
|
if (File::isDirectory($directory)) { |
40
|
|
|
|
41
|
|
|
$files = File::allFiles($directory); |
42
|
|
|
|
43
|
|
View Code Duplication |
foreach ($files as $file) { |
|
|
|
|
44
|
|
|
|
45
|
|
|
if (File::isFile($file)) { |
46
|
|
|
|
47
|
|
|
// Check if this is the Main Service Provider |
48
|
|
|
if (ShipButler::stringStartsWith($file->getFilename(), $mainServiceProviderNameStartWith)) { |
49
|
|
|
|
50
|
|
|
$serviceProviderClass = ShipButler::getClassFullNameFromFile($file->getPathname()); |
51
|
|
|
|
52
|
|
|
$this->loadProvider($serviceProviderClass); |
53
|
|
|
} |
54
|
|
|
} |
55
|
|
|
} |
56
|
|
|
} |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* @param $providerFullName |
61
|
|
|
*/ |
62
|
|
|
private function loadProvider($providerFullName) |
63
|
|
|
{ |
64
|
|
|
App::register($providerFullName); |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
/** |
68
|
|
|
* @void |
69
|
|
|
*/ |
70
|
|
|
public function loadServiceProviders() |
71
|
|
|
{ |
72
|
|
|
foreach ($this->serviceProviders as $provider) { |
|
|
|
|
73
|
|
|
$this->loadProvider($provider); |
74
|
|
|
} |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
} |
78
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.