-
Notifications
You must be signed in to change notification settings - Fork 531
/
Copy pathOAuth2ServerServiceProvider.php
199 lines (171 loc) · 6.78 KB
/
OAuth2ServerServiceProvider.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
195
196
197
198
199
<?php
/*
* This file is part of OAuth 2.0 Laravel.
*
* (c) Luca Degasperi <packages@lucadegasperi.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace LucaDegasperi\OAuth2Server;
use Illuminate\Contracts\Container\Container as Application;
use Illuminate\Foundation\Application as LaravelApplication;
use Illuminate\Support\ServiceProvider;
use Laravel\Lumen\Application as LumenApplication;
use League\OAuth2\Server\AuthorizationServer;
use League\OAuth2\Server\ResourceServer;
use League\OAuth2\Server\Storage\AccessTokenInterface;
use League\OAuth2\Server\Storage\AuthCodeInterface;
use League\OAuth2\Server\Storage\ClientInterface;
use League\OAuth2\Server\Storage\RefreshTokenInterface;
use League\OAuth2\Server\Storage\ScopeInterface;
use League\OAuth2\Server\Storage\SessionInterface;
use LucaDegasperi\OAuth2Server\Middleware\CheckAuthCodeRequestMiddleware;
use LucaDegasperi\OAuth2Server\Middleware\OAuthClientOwnerMiddleware;
use LucaDegasperi\OAuth2Server\Middleware\OAuthMiddleware;
use LucaDegasperi\OAuth2Server\Middleware\OAuthUserOwnerMiddleware;
/**
* This is the oauth2 server service provider class.
*
* @author Luca Degasperi <packages@lucadegasperi.com>
*/
class OAuth2ServerServiceProvider extends ServiceProvider
{
/**
* Boot the service provider.
*
* @return void
*/
public function boot()
{
$this->setupConfig($this->app);
$this->setupMigrations($this->app);
}
/**
* Setup the config.
*
* @param \Illuminate\Contracts\Container\Container $app
*
* @return void
*/
protected function setupConfig(Application $app)
{
$source = realpath(__DIR__.'/../config/oauth2.php');
if ($app instanceof LaravelApplication && $app->runningInConsole()) {
$this->publishes([$source => config_path('oauth2.php')]);
} elseif ($app instanceof LumenApplication) {
$app->configure('oauth2');
}
$this->mergeConfigFrom($source, 'oauth2');
}
/**
* Setup the migrations.
*
* @param \Illuminate\Contracts\Container\Container $app
*
* @return void
*/
protected function setupMigrations(Application $app)
{
$source = realpath(__DIR__.'/../database/migrations/');
if ($app instanceof LaravelApplication && $app->runningInConsole()) {
$this->publishes([$source => database_path('migrations')], 'migrations');
}
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
$this->registerAuthorizer($this->app);
$this->registerMiddlewareBindings($this->app);
}
/**
* Register the Authorization server with the IoC container.
*
* @param \Illuminate\Contracts\Container\Container $app
*
* @return void
*/
public function registerAuthorizer(Application $app)
{
$app->singleton('oauth2-server.authorizer', function ($app) {
$config = $app['config']->get('oauth2');
$issuer = $app->make(AuthorizationServer::class)
->setClientStorage($app->make(ClientInterface::class))
->setSessionStorage($app->make(SessionInterface::class))
->setAuthCodeStorage($app->make(AuthCodeInterface::class))
->setAccessTokenStorage($app->make(AccessTokenInterface::class))
->setRefreshTokenStorage($app->make(RefreshTokenInterface::class))
->setScopeStorage($app->make(ScopeInterface::class))
->requireScopeParam($config['scope_param'])
->setDefaultScope($config['default_scope'])
->requireStateParam($config['state_param'])
->setScopeDelimiter($config['scope_delimiter'])
->setAccessTokenTTL($config['access_token_ttl']);
// add the supported grant types to the authorization server
foreach ($config['grant_types'] as $grantIdentifier => $grantParams) {
$grant = $app->make($grantParams['class']);
$grant->setAccessTokenTTL($grantParams['access_token_ttl']);
if (array_key_exists('callback', $grantParams)) {
list($className, $method) = array_pad(explode('@', $grantParams['callback']), 2, 'verify');
$verifier = $app->make($className);
$grant->setVerifyCredentialsCallback([$verifier, $method]);
}
if (array_key_exists('auth_token_ttl', $grantParams)) {
$grant->setAuthTokenTTL($grantParams['auth_token_ttl']);
}
if (array_key_exists('refresh_token_ttl', $grantParams)) {
$grant->setRefreshTokenTTL($grantParams['refresh_token_ttl']);
}
if (array_key_exists('rotate_refresh_tokens', $grantParams)) {
$grant->setRefreshTokenRotation($grantParams['rotate_refresh_tokens']);
}
$issuer->addGrantType($grant, $grantIdentifier);
}
$checker = $app->make(ResourceServer::class);
$authorizer = new Authorizer($issuer, $checker);
$authorizer->setRequest($app['request']);
$authorizer->setTokenType($app->make($config['token_type']));
$app->refresh('request', $authorizer, 'setRequest');
return $authorizer;
});
$app->alias('oauth2-server.authorizer', Authorizer::class);
}
/**
* Register the Middleware to the IoC container because
* some middleware need additional parameters.
*
* @param \Illuminate\Contracts\Container\Container $app
*
* @return void
*/
public function registerMiddlewareBindings(Application $app)
{
$app->singleton(CheckAuthCodeRequestMiddleware::class, function ($app) {
return new CheckAuthCodeRequestMiddleware($app['oauth2-server.authorizer']);
});
$app->singleton(OAuthMiddleware::class, function ($app) {
$httpHeadersOnly = $app['config']->get('oauth2.http_headers_only');
return new OAuthMiddleware($app['oauth2-server.authorizer'], $httpHeadersOnly);
});
$app->singleton(OAuthClientOwnerMiddleware::class, function ($app) {
return new OAuthClientOwnerMiddleware($app['oauth2-server.authorizer']);
});
$app->singleton(OAuthUserOwnerMiddleware::class, function ($app) {
return new OAuthUserOwnerMiddleware($app['oauth2-server.authorizer']);
});
}
/**
* Get the services provided by the provider.
*
* @return string[]
* @codeCoverageIgnore
*/
public function provides()
{
return ['oauth2-server.authorizer'];
}
}