-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathApplicationConfiguration.php
More file actions
436 lines (387 loc) · 9.61 KB
/
ApplicationConfiguration.php
File metadata and controls
436 lines (387 loc) · 9.61 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
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
<?php
namespace SumUp\Application;
use SumUp\Exceptions\SumUpConfigurationException;
use SumUp\SdkInfo;
/**
* Class ApplicationConfiguration
*
* @package SumUp\ApplicationConfiguration
*/
class ApplicationConfiguration implements ApplicationConfigurationInterface
{
/**
* The default scopes that are recommended to be requested every time.
*/
const DEFAULT_SCOPES = ['payments', 'transactions.history', 'user.app-settings', 'user.profile_readonly'];
/**
* Header name for the SDK's User-Agent.
*/
const USER_AGENT_HEADER = 'User-Agent';
/**
* The possible values for grant type.
*/
const GRANT_TYPES = ['authorization_code', 'client_credentials', 'password'];
/**
* The client ID.
*
* @var string
*/
protected $appId;
/**
* The client secret.
*
* @var string
*/
protected $appSecret;
/**
* The scopes that are needed for all services the application uses.
*
* @var array
*/
protected $scopes;
/**
* The base URL of the SumUp API.
*
* @var string;
*/
protected $baseURL;
/**
* The merchant's username. Needed only if the authorization flow is "password".
*
* @var string
*/
protected $username;
/**
* The merchant's account password. Needed only if the authorization flow is "password".
*
* @var string
*/
protected $password;
/**
* The authorization grant type. Allowed values are: 'authorization_code'|'client_credentials'|'password'.
*
* @var string
*/
protected $grantType;
/**
* The authorization code.
*
* @var string
*/
protected $code;
/**
* The access token.
*
* @var null|string
*/
protected $accessToken;
/**
* The refresh token.
*
* @var null|string
*/
protected $refreshToken;
/**
* Flag whether to use GuzzleHttp over cURL if both are present.
*
* @var $forceGuzzle
*/
protected $forceGuzzle;
/**
* Custom headers to be sent with every request.
*
* @var array $customHeaders
*/
protected $customHeaders;
/**
* Path to a custom CA bundle. If not provided, the SDK ships one by default.
*
* @var string|null
*/
protected $caBundlePath;
/**
* The API key for authentication.
*
* @var string|null
*/
protected $apiKey;
/**
* Create a new application configuration.
*
* @param array $config
*
* @throws SumUpConfigurationException
*/
public function __construct(array $config = [])
{
$config = array_merge([
'api_key' => null,
'app_id' => null,
'app_secret' => null,
'grant_type' => 'authorization_code',
'base_uri' => 'https://api.sumup.com',
'scopes' => [],
'code' => null,
'access_token' => null,
'refresh_token' => null,
'username' => null,
'password' => null,
'use_guzzlehttp_over_curl' => false,
'custom_headers' => [],
'ca_bundle_path' => null
], $config);
$this->apiKey = $config['api_key'];
$this->setAppId($config['app_id']);
$this->setAppSecret($config['app_secret']);
$this->setScopes($config['scopes']);
$this->setGrantType($config['grant_type']);
$this->baseURL = $config['base_uri'];
$this->username = $config['username'];
$this->password = $config['password'];
$this->code = $config['code'];
$this->accessToken = $config['access_token'];
$this->refreshToken = $config['refresh_token'];
$this->setForceGuzzle($config['use_guzzlehttp_over_curl']);
$this->setCustomHeaders($config['custom_headers']);
$this->setCABundlePath($config['ca_bundle_path']);
}
/**
* Returns the client ID.
*
* @return string
*/
public function getAppId(): string
{
return $this->appId;
}
/**
* Returns the client secret.
*
* @return string
*/
public function getAppSecret(): string
{
return $this->appSecret;
}
/**
* Returns the scopes.
*
* @return array
*/
public function getScopes(): array
{
return $this->scopes;
}
/**
* Returns the scopes formatted as they should appear in the request.
*
* @return string
*/
public function getFormattedScopes(): string
{
return implode(' ', $this->scopes);
}
/**
* Returns the base URL of the SumUp API.
*
* @return string
*/
public function getBaseURL(): string
{
return $this->baseURL;
}
/**
* Returns authorization code.
*
* @return string
*/
public function getCode(): string
{
return $this->code;
}
/**
* Returns grant type.
*
* @return string;
*/
public function getGrantType(): string
{
return $this->grantType;
}
/**
* Returns merchant's username.
*
* @return string
*/
public function getUsername(): string
{
return $this->username;
}
/**
* Returns merchant's password.
*
* @return string
*/
public function getPassword(): string
{
return $this->password;
}
/**
* Returns initial access token.
*
* @return null|string
*/
public function getAccessToken(): ?string
{
return $this->accessToken;
}
/**
* Returns initial refresh token.
*
* @return null|string
*/
public function getRefreshToken(): ?string
{
return $this->refreshToken;
}
/**
* Returns the flag whether to use GuzzleHttp.
*
* @return bool
*/
public function getForceGuzzle(): bool
{
return $this->forceGuzzle;
}
/**
* Returns associative array with custom headers.
*
* @return array
*/
public function getCustomHeaders(): array
{
return $this->customHeaders;
}
/**
* Returns the path to the CA bundle used for HTTPS verification.
*
* @return string|null
*/
public function getCABundlePath(): ?string
{
if (!empty($this->caBundlePath)) {
return $this->caBundlePath;
}
return $this->getDefaultCABundlePath();
}
/**
* Returns the API key if set.
*
* @return string|null
*/
public function getApiKey(): ?string
{
return $this->apiKey;
}
/**
* Set application ID.
*
* @param ?string $appId
*
* @throws SumUpConfigurationException
*/
protected function setAppId(?string $appId): void
{
if (empty($appId) && empty($this->apiKey)) {
throw new SumUpConfigurationException('Missing mandatory parameter app_id or api_key');
}
$this->appId = $appId;
}
/**
* Set application secret.
*
* @param string $appSecret
*
* @throws SumUpConfigurationException
*/
protected function setAppSecret(?string $appSecret): void
{
if (empty($appSecret) && empty($this->apiKey)) {
throw new SumUpConfigurationException('Missing mandatory parameter app_secret or api_key');
}
$this->appSecret = $appSecret;
}
/**
* Set the authorization grant type.
*
* @param string $grantType
*
* @throws SumUpConfigurationException
*/
protected function setGrantType(string $grantType): void
{
if (!in_array($grantType, $this::GRANT_TYPES)) {
throw new SumUpConfigurationException('Invalid parameter for "grant_type". Allowed values are: ' . implode(' | ', $this::GRANT_TYPES) . '.');
}
$this->grantType = $grantType;
}
/**
* Set the scopes and always include the default ones.
*
* @param array $scopes
*/
protected function setScopes(array $scopes = []): void
{
$this->scopes = array_unique(array_merge($this::DEFAULT_SCOPES, $scopes), SORT_REGULAR);
}
/**
* Set the flag whether to use GuzzleHttp.
*
* @param bool $forceGuzzle
*/
protected function setForceGuzzle(bool $forceGuzzle): void
{
$this->forceGuzzle = $forceGuzzle;
}
/**
* Set the associative array with custom headers.
*
* @param array $customHeaders
*/
public function setCustomHeaders(array $customHeaders): void
{
$customHeaders[self::USER_AGENT_HEADER] = SdkInfo::getUserAgent();
$this->customHeaders = $customHeaders;
}
/**
* Set the CA bundle path used for TLS verification.
*
* @param string|null $caBundlePath
*
* @throws SumUpConfigurationException
*/
protected function setCABundlePath(?string $caBundlePath): void
{
if ($caBundlePath === null || $caBundlePath === '') {
$this->caBundlePath = null;
return;
}
if (!is_readable($caBundlePath)) {
throw new SumUpConfigurationException(sprintf('The provided ca_bundle_path "%s" is not readable.', $caBundlePath));
}
$this->caBundlePath = $caBundlePath;
}
/**
* Returns the path to the CA bundle shipped with the SDK, if present.
*
* @return string|null
*/
private function getDefaultCABundlePath(): ?string
{
$path = realpath(__DIR__ . '/../../../resources/ca-bundle.crt');
if ($path && is_readable($path)) {
return $path;
}
return null;
}
}