-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBaseClient.php
91 lines (78 loc) · 2.62 KB
/
BaseClient.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
<?php
namespace Sil\EmailService\Client;
use GuzzleHttp\Client as HttpClient;
use GuzzleHttp\Command\Guzzle\Description;
use GuzzleHttp\Command\Guzzle\GuzzleClient;
class BaseClient extends GuzzleClient
{
/**
* @param array $config
*/
public function __construct(array $config = [])
{
// Ensure that the credentials have been provided.
if ( ! isset($config['access_token'])) {
throw new \InvalidArgumentException(
'You must provide an Access Token.'
);
}
// Apply some defaults.
$mergedConfig = array_replace_recursive($config, [
/** @todo Changed... find equivalent. */
//'max_retries' => 3,
'http_client_options' => [
'http_errors' => false,
'headers' => [
'Authorization' => 'Bearer ' . $config['access_token'],
],
],
]);
// Create the client.
parent::__construct(
$this->getHttpClientFromConfig($mergedConfig),
$this->getDescriptionFromConfig($mergedConfig),
null,
null,
null,
$mergedConfig
);
}
/**
* @return \GuzzleHttp\ClientInterface
*/
private function getHttpClientFromConfig(array $config)
{
// If a client was provided, return it.
if (isset($config['http_client'])) {
return $config['http_client'];
}
// Create a Guzzle HttpClient.
$clientOptions = isset($config['http_client_options'])
? $config['http_client_options']
: [];
$client = new HttpClient($clientOptions);
return $client;
}
/**
* @return \GuzzleHttp\Command\Guzzle\DescriptionInterface
*/
private function getDescriptionFromConfig(array $config)
{
// If a description was provided, return it.
if (isset($config['description'])) {
return $config['description'];
}
// Load service description data.
$data = is_readable($config['description_path'])
? include $config['description_path']
: [];
// Override description from local config if set
if (isset($config['description_override'])) {
$data = array_replace_recursive($data, $config['description_override']);
}
if ( ! isset($data['baseUri'])) {
throw new \Exception('A baseUri is required.', 1488211973);
}
return new Description($data);
}
}