-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMicroserviceClientProvider.php
141 lines (121 loc) · 3.42 KB
/
MicroserviceClientProvider.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
/**
* @author simon <[email protected]>
* @datetime 2018/07/02 19:15
*
* @link http://crcms.cn/
*
* @copyright Copyright © 2018 Rights Reserved CRCMS
*/
namespace CrCms\Microservice\Client;
use Laravel\Lumen\Application;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\ServiceProvider;
use CrCms\Microservice\Client\Selectors\RandSelector;
use CrCms\Microservice\Bridging\BridgingServiceProvider;
use CrCms\Microservice\Client\Contracts\SelectorContract;
use CrCms\Microservice\Client\Contracts\ServiceDiscoverContract;
/**
* Class MicroServiceProvider.
*/
class MicroserviceClientProvider extends ServiceProvider
{
/**
* @var bool
*/
protected $defer = true;
/**
* @var string
*/
protected $namespaceName = 'microservice-client';
/**
* @var string
*/
protected $packagePath = __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR;
/**
* @return void
*/
public function boot()
{
//move config path
if ($this->isLumen()) {
} else {
$this->publishes([
$this->packagePath.'config/config.php' => config_path($this->namespaceName.'.php'),
]);
}
//event listen
foreach ($this->app->make('config')->get('microservice-client.events', []) as $event) {
Event::listen('microservice.call', $event.'@handle');
Event::listen('microservice.call.failed', $event.'@failed');
}
}
/**
* @return void
*/
public function register(): void
{
if ($this->isLumen()) {
$this->app->configure($this->namespaceName);
}
//merge config
$configFile = $this->packagePath.'config/config.php';
if (file_exists($configFile)) {
$this->mergeConfigFrom($configFile, $this->namespaceName);
}
$this->registerAlias();
$this->registerServices();
$this->registerCommands();
$this->app->register(BridgingServiceProvider::class);
}
/**
* @return void
*/
protected function registerServices(): void
{
$this->app->singleton(ServiceFactory::class, function ($app) {
return new ServiceFactory($app);
});
$this->app->singleton('microservice-client.selector', function ($app) {
return new RandSelector($app['microservice-client.discover']);
});
$this->app->singleton('microservice-client.discover', function ($app) {
$factory = new ServiceConnnectionFactory($app);
return $factory->make(
$app['config']->get('microservice-client.connection')
);
});
}
/**
* @return bool
*/
protected function isLumen(): bool
{
return class_exists(Application::class) && $this->app instanceof Application;
}
/**
* @return void
*/
protected function registerCommands(): void
{
}
/**
* @return void
*/
protected function registerAlias(): void
{
$this->app->alias('microservice-client.discover', ServiceDiscoverContract::class);
$this->app->alias('microservice-client.selector', SelectorContract::class);
}
/**
* @return array
*/
public function provides(): array
{
return [
ServiceDiscoverContract::class,
SelectorContract::class,
ServiceFactory::class,
];
}
}