-
Notifications
You must be signed in to change notification settings - Fork 0
/
AbstractBaseProvider.php
391 lines (337 loc) · 10 KB
/
AbstractBaseProvider.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
<?php
/**
* SocialConnect project
* @author: Patsura Dmitry https://github.com/ovr <[email protected]>
*/
declare(strict_types=1);
namespace SocialConnect\Provider;
use Psr\Http\Client\ClientInterface;
use Psr\Http\Message\RequestFactoryInterface;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
use SocialConnect\Provider\Exception\InvalidProviderConfiguration;
use SocialConnect\Common\HttpStack;
use SocialConnect\Provider\Exception\InvalidRequest;
use SocialConnect\Provider\Exception\InvalidResponse;
use SocialConnect\Provider\Session\SessionInterface;
abstract class AbstractBaseProvider
{
/**
* @var Consumer
*/
protected $consumer;
/**
* @var array
*/
protected $scope = [];
/**
* @var HttpStack
*/
protected $httpStack;
/**
* @var string
*/
protected $redirectUri;
/**
* @var SessionInterface
*/
protected $session;
/**
* @var array
*/
protected $options = [];
/**
* @param HttpStack $httpStack
* @param SessionInterface $session
* @param array $parameters
* @throws InvalidProviderConfiguration
*/
public function __construct(HttpStack $httpStack, SessionInterface $session, array $parameters)
{
if (isset($parameters['scope'])) {
$this->setScope($parameters['scope']);
}
if (isset($parameters['redirectUri'])) {
$this->redirectUri = $parameters['redirectUri'];
}
if (isset($parameters['options'])) {
$this->options = $parameters['options'];
}
$this->consumer = $this->createConsumer($parameters);
$this->httpStack = $httpStack;
$this->session = $session;
}
/**
* @param int $bytes Default it's 16 bytes / 128 bit / 16 symbols / 32 symbols in hex
* @return string
* @throws \Exception
*/
protected function generateState(int $bytes = 16): string
{
return bin2hex(random_bytes($bytes));
}
/**
* @param array $parameters
* @return Consumer
* @throws InvalidProviderConfiguration
*/
protected function createConsumer(array $parameters): Consumer
{
return new Consumer(
$this->getRequiredStringParameter('applicationId', $parameters),
$this->getRequiredStringParameter('applicationSecret', $parameters)
);
}
/**
* @param string $key
* @param array $parameters
* @return string
* @throws InvalidProviderConfiguration
*/
protected function getRequiredStringParameter(string $key, array $parameters): string
{
if (!isset($parameters[$key])) {
throw new InvalidProviderConfiguration(
"Parameter '{$key}' doesn`t exists for '{$this->getName()}' provider configuration"
);
}
if (!is_string($parameters[$key])) {
throw new InvalidProviderConfiguration(
"Parameter '{$key}' must be string inside '{$this->getName()}' provider configuration"
);
}
return $parameters[$key];
}
/**
* @param string $key
* @param bool $default
* @return bool
*/
public function getBoolOption($key, $default): bool
{
if (array_key_exists($key, $this->options)) {
return (bool) $this->options[$key];
}
return $default;
}
/**
* @param string $key
* @param array $default
* @return array
*/
public function getArrayOption($key, array $default = []): array
{
if (array_key_exists($key, $this->options)) {
return (array) $this->options[$key];
}
return $default;
}
/**
* @return string
*/
public function getRedirectUrl(): string
{
return str_replace('${provider}', $this->getName(), $this->redirectUri);
}
/**
* Default parameters for auth url, can be redeclared inside implementation of the Provider
*
* @return array
*/
public function getAuthUrlParameters(): array
{
return $this->getArrayOption('auth.parameters', []);
}
/**
* @return string
*/
abstract public function getBaseUri();
/**
* Return Provider's name
*
* @return string
*/
abstract public function getName();
/**
* @param array $requestParameters
* @return \SocialConnect\Provider\AccessTokenInterface
*/
abstract public function getAccessTokenByRequestParameters(array $requestParameters);
/**
* @return string
*/
abstract public function makeAuthUrl(): string;
/**
* Sometimes it's needed to login user by access token on the server
* You can pass all information related auth in json_encoded to the server
* and use this method to instance new token
*
* @param array $information
* @return mixed
*/
abstract public function createAccessToken(array $information);
/**
* Get current user identity from social network by $accessToken
*
* @param AccessTokenInterface $accessToken
* @return \SocialConnect\Common\Entity\User
*
* @throws \Psr\Http\Client\ClientExceptionInterface
* @throws \SocialConnect\Provider\Exception\InvalidResponse
*/
abstract public function getIdentity(AccessTokenInterface $accessToken);
/**
* @param RequestInterface $request
* @return ResponseInterface
* @throws InvalidResponse
* @throws \Psr\Http\Client\ClientExceptionInterface
*/
protected function executeRequest(RequestInterface $request): ResponseInterface
{
$response = $this->httpStack->sendRequest($request);
$statusCode = $response->getStatusCode();
if (200 <= $statusCode && 300 > $statusCode) {
return $response;
}
throw new InvalidResponse(
'API response with error code',
$response
);
}
/**
* @param ResponseInterface $response
* @return array
* @throws InvalidResponse
*/
protected function hydrateResponse(ResponseInterface $response): array
{
$result = json_decode($response->getBody()->getContents(), true);
if (!$result) {
throw new InvalidResponse(
'API response is not a valid JSON object',
$response
);
}
return $result;
}
/**
* This is a lifecycle method, should be redeclared inside Provider when it's needed to mutate $query or $headers
*
* @param string $method
* @param string $uri
* @param array $headers
* @param array $query
* @param AccessTokenInterface|null $accessToken Null is needed to allow send request for not OAuth
*/
public function prepareRequest(string $method, string $uri, array &$headers, array &$query, AccessTokenInterface $accessToken = null): void
{
if ($accessToken) {
$query['access_token'] = $accessToken->getToken();
}
}
/**
* @param string $method
* @param string $url
* @param array $query
* @param AccessTokenInterface|null $accessToken
* @param array|null $payload
* @return array
* @throws \Psr\Http\Client\ClientExceptionInterface
*/
public function request(string $method, string $url, array $query, AccessTokenInterface $accessToken = null, array $payload = null)
{
$headers = [];
$this->prepareRequest(
$method,
$this->getBaseUri() . $url,
$headers,
$query,
$accessToken
);
$request = $this->createRequest(
$method,
$this->getBaseUri() . $url,
$query,
$headers,
$payload
);
return $this->hydrateResponse(
$this->executeRequest(
$request
)
);
}
/**
* @return array
*/
public function getScope()
{
return $this->scope;
}
/**
* @param array $scope
*/
public function setScope(array $scope)
{
$this->scope = $scope;
}
/**
* @return string
*/
public function getScopeInline()
{
return implode(',', $this->scope);
}
/**
* @return \SocialConnect\Provider\Consumer
*/
public function getConsumer()
{
return $this->consumer;
}
/**
* @param string $method
* @param string $uri
* @param array $query
* @param array $headers
* @param array|null $payload
* @return RequestInterface
*/
protected function createRequest(string $method, string $uri, array $query, array $headers, array $payload = null): RequestInterface
{
$url = $uri;
if (count($query) > 0) {
$url .= '?' . http_build_query($query);
}
$request = $this->httpStack->createRequest($method, $url);
foreach ($headers as $k => $v) {
$request = $request->withHeader($k, $v);
}
$method = strtoupper($request->getMethod());
$withPayload = $method === 'POST' || $method === 'PUT';
// Case-insensitive
if (!$request->hasHeader('User-Agent')) {
$request = $request->withHeader(
'User-Agent',
'SocialConnect\Auth (https://github.com/SocialConnect/auth) v3'
);
}
if ($payload) {
if ($withPayload) {
$payloadAsString = http_build_query($payload);
$contentLength = mb_strlen($payloadAsString);
$request = $request
->withHeader('Content-Length', $contentLength)
->withHeader('Content-Type', 'application/x-www-form-urlencoded')
;
return $request->withBody(
$this->httpStack->createStream(
$payloadAsString
)
);
}
throw new InvalidRequest('You are not able to send payload on HTTP method without body');
}
return $request;
}
}