-
-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathGitHubServiceProvider.php
194 lines (167 loc) · 4.97 KB
/
GitHubServiceProvider.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<?php
declare(strict_types=1);
/*
* This file is part of Laravel GitHub.
*
* (c) Graham Campbell <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace GrahamCampbell\GitHub;
use Github\Client;
use GrahamCampbell\GitHub\Auth\AuthenticatorFactory;
use GrahamCampbell\GitHub\Cache\ConnectionFactory;
use GrahamCampbell\GitHub\HttpClient\BuilderFactory;
use GuzzleHttp\Client as GuzzleClient;
use GuzzleHttp\Psr7\HttpFactory as GuzzlePsrFactory;
use Illuminate\Contracts\Container\Container;
use Illuminate\Foundation\Application as LaravelApplication;
use Illuminate\Support\ServiceProvider;
use Laravel\Lumen\Application as LumenApplication;
/**
* This is the github service provider class.
*
* @author Graham Campbell <[email protected]>
*/
class GitHubServiceProvider extends ServiceProvider
{
/**
* Boot the service provider.
*
* @return void
*/
public function boot(): void
{
$this->setupConfig();
}
/**
* Setup the config.
*
* @return void
*/
private function setupConfig(): void
{
$source = realpath($raw = __DIR__.'/../config/github.php') ?: $raw;
if ($this->app instanceof LaravelApplication && $this->app->runningInConsole()) {
$this->publishes([$source => config_path('github.php')]);
} elseif ($this->app instanceof LumenApplication) {
$this->app->configure('github');
}
$this->mergeConfigFrom($source, 'github');
}
/**
* Register the service provider.
*
* @return void
*/
public function register(): void
{
$this->registerHttpClientFactory();
$this->registerAuthFactory();
$this->registerCacheFactory();
$this->registerGitHubFactory();
$this->registerManager();
$this->registerBindings();
}
/**
* Register the http client factory class.
*
* @return void
*/
private function registerHttpClientFactory(): void
{
$this->app->singleton('github.httpclientfactory', function (): BuilderFactory {
$psrFactory = new GuzzlePsrFactory();
return new BuilderFactory(
new GuzzleClient(['connect_timeout' => 10, 'timeout' => 30]),
$psrFactory,
$psrFactory,
);
});
$this->app->alias('github.httpclientfactory', BuilderFactory::class);
}
/**
* Register the auth factory class.
*
* @return void
*/
private function registerAuthFactory(): void
{
$this->app->singleton('github.authfactory', function (): AuthenticatorFactory {
return new AuthenticatorFactory();
});
$this->app->alias('github.authfactory', AuthenticatorFactory::class);
}
/**
* Register the cache factory class.
*
* @return void
*/
private function registerCacheFactory(): void
{
$this->app->singleton('github.cachefactory', function (Container $app): ConnectionFactory {
$cache = $app->bound('cache') ? $app->make('cache') : null;
return new ConnectionFactory($cache);
});
$this->app->alias('github.cachefactory', ConnectionFactory::class);
}
/**
* Register the github factory class.
*
* @return void
*/
private function registerGitHubFactory(): void
{
$this->app->singleton('github.factory', function (Container $app): GitHubFactory {
$builder = $app['github.httpclientfactory'];
$auth = $app['github.authfactory'];
$cache = $app['github.cachefactory'];
return new GitHubFactory($builder, $auth, $cache);
});
$this->app->alias('github.factory', GitHubFactory::class);
}
/**
* Register the manager class.
*
* @return void
*/
private function registerManager(): void
{
$this->app->singleton('github', function (Container $app): GitHubManager {
$config = $app['config'];
$factory = $app['github.factory'];
return new GitHubManager($config, $factory);
});
$this->app->alias('github', GitHubManager::class);
}
/**
* Register the bindings.
*
* @return void
*/
private function registerBindings(): void
{
$this->app->bind('github.connection', function (Container $app): Client {
$manager = $app['github'];
return $manager->connection();
});
$this->app->alias('github.connection', Client::class);
}
/**
* Get the services provided by the provider.
*
* @return string[]
*/
public function provides(): array
{
return [
'github.httpclientfactory',
'github.authfactory',
'github.cachefactory',
'github.factory',
'github',
'github.connection',
];
}
}