-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAbstractOAuth2Api.php
More file actions
166 lines (153 loc) · 5.48 KB
/
AbstractOAuth2Api.php
File metadata and controls
166 lines (153 loc) · 5.48 KB
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
<?php namespace App\Services\Apis;
/**
* Copyright 2020 OpenStack Foundation
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
use App\Services\Auth\OAuth2ClientFactory;;
use Illuminate\Support\Facades\Config;
use libs\utils\ICacheService;
use Illuminate\Support\Facades\Log;
use League\OAuth2\Client\Provider\GenericProvider;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Exception\ClientException;
/**
* Class AbstractOAuth2Api
* @package App\Services\Apis
*/
abstract class AbstractOAuth2Api
{
const MaxRetries = 3;
/**
* @var ICacheService
*/
protected $cacheService;
/**
* ExternalUserApi constructor.
* @param ICacheService $cacheService
*/
public function __construct(ICacheService $cacheService)
{
$this->cacheService = $cacheService;
}
const SkewTime = 120;
const AccessTokenCacheKey = '%s_OAUTH2_ACCESS_TOKEN';
public abstract function getAppName():string;
public function getIdpConfig():array {
return [
'authorization_endpoint' => Config::get("idp.authorization_endpoint"),
'token_endpoint' => Config::get("idp.token_endpoint"),
];
}
/**
* @return array
*/
public abstract function getAppConfig():array;
/**
* @return GenericProvider
*/
private function getIDPClient():GenericProvider {
return OAuth2ClientFactory::build
(
$this->getIdpConfig(),
$this->getAppConfig()
);
}
/**
* @return string
*/
private function getAccessTokenCacheKey():string{
return sprintf(self::AccessTokenCacheKey, $this->getAppName());
}
/**
* @param \Closure $callback
* @return mixed|null
* @throws \Exception
*/
protected function invokeWithRetry(\Closure $callback)
{
$retry = 0;
$done = false;
$result = null;
while (!$done and $retry < self::MaxRetries) {
try {
$result = $callback($this);
$done = true;
} catch (ClientException $ex) {
Log::warning("AbstractOAuth2Api::invokeWithRetry retrying ...");
$retry++;
if ($retry === self::MaxRetries) {
if ($ex->getCode() == 404) {
return null;
}
throw $ex;
}
$this->cleanAccessToken();
Log::warning($ex);
}
catch (RequestException $ex){
$this->cleanAccessToken();
Log::error($ex);
if($ex->getCode() == 404){
return null;
}
throw $ex;
}
catch (\Exception $ex) {
$this->cleanAccessToken();
Log::error($ex);
throw $ex;
}
}
return $result;
}
/**
* @return string|null
* @throws \League\OAuth2\Client\Provider\Exception\IdentityProviderException
*/
protected function getAccessToken():?string{
Log::debug("AbstractOAuth2Api::getAccessToken");
$token = $this->cacheService->getSingleValue($this->getAccessTokenCacheKey());
if (empty($token)) {
try {
Log::debug("AbstractOAuth2Api::getAccessToken - access token is empty, getting new one");
$client = $this->getIDPClient();
$appConfig = $this->getAppConfig();
$scopes = $appConfig['scopes'] ?? '';
Log::debug(sprintf( "AbstractOAuth2Api::getAccessToken - got scopes %s", $scopes));
// Try to get an access token using the client credentials grant.
$accessToken = $client->getAccessToken('client_credentials', ['scope' => $scopes]);
$token = $accessToken->getToken();
$expires_in = $accessToken->getExpires() - time();
Log::debug(sprintf("AbstractOAuth2Api::getAccessToken - setting new access token %s expires in %s", $token, $expires_in));
$ttl = $expires_in - self::SkewTime;
if($ttl < 0)
$ttl = $expires_in;
if($ttl > 0) {
Log::debug(sprintf("AbstractOAuth2Api::getAccessToken ttl %s", $ttl));
$this->cacheService->setSingleValue($this->getAccessTokenCacheKey(), $token, $ttl);
}
}
catch (ClientException $ex){
Log::warning($ex);
if($ex->getCode() == 401) {
// invalid token
$this->cacheService->delete($this->getAccessTokenCacheKey());
}
throw $ex;
}
}
Log::debug(sprintf("AbstractOAuth2Api::getAccessToken - returning access token %s", $token));
return $token;
}
protected function cleanAccessToken():void{
$this->cacheService->delete($this->getAccessTokenCacheKey());
}
}