-
Notifications
You must be signed in to change notification settings - Fork 18
/
SqsConnectionFactory.php
166 lines (141 loc) · 5.72 KB
/
SqsConnectionFactory.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
<?php
declare(strict_types=1);
namespace Enqueue\Sqs;
use Aws\Sdk;
use Aws\Sqs\SqsClient as AwsSqsClient;
use Enqueue\Dsn\Dsn;
use Interop\Queue\ConnectionFactory;
use Interop\Queue\Context;
class SqsConnectionFactory implements ConnectionFactory
{
/**
* @var array
*/
private $config;
/**
* @var SqsClient
*/
private $client;
/**
* $config = [
* 'key' => null AWS credentials. If no credentials are provided, the SDK will attempt to load them from the environment.
* 'secret' => null, AWS credentials. If no credentials are provided, the SDK will attempt to load them from the environment.
* 'token' => null, AWS credentials. If no credentials are provided, the SDK will attempt to load them from the environment.
* 'region' => null, (string, required) Region to connect to. See http://docs.aws.amazon.com/general/latest/gr/rande.html for a list of available regions.
* 'retries' => 3, (int, default=int(3)) Configures the maximum number of allowed retries for a client (pass 0 to disable retries).
* 'version' => '2012-11-05', (string, required) The version of the webservice to utilize
* 'lazy' => true, Enable lazy connection (boolean)
* 'endpoint' => null, (string, default=null) The full URI of the webservice. This is only required when connecting to a custom endpoint e.g. localstack
* 'profile' => null, (string, default=null) The name of an AWS profile to used, if provided the SDK will attempt to read associated credentials from the ~/.aws/credentials file.
* 'queue_owner_aws_account_id' The AWS account ID of the account that created the queue.
* ].
*
* or
*
* sqs:
* sqs::?key=aKey&secret=aSecret&token=aToken
*
* @param array|string|AwsSqsClient|null $config
*/
public function __construct($config = 'sqs:')
{
if ($config instanceof AwsSqsClient) {
$this->client = new SqsClient($config);
$this->config = ['lazy' => false] + $this->defaultConfig();
return;
}
if (empty($config)) {
$config = [];
} elseif (is_string($config)) {
$config = $this->parseDsn($config);
} elseif (is_array($config)) {
if (array_key_exists('dsn', $config)) {
$config = array_replace_recursive($config, $this->parseDsn($config['dsn']));
unset($config['dsn']);
}
} else {
throw new \LogicException(sprintf('The config must be either an array of options, a DSN string, null or instance of %s', AwsSqsClient::class));
}
$this->config = array_replace($this->defaultConfig(), $config);
}
/**
* @return SqsContext
*/
public function createContext(): Context
{
return new SqsContext($this->establishConnection(), $this->config);
}
private function establishConnection(): SqsClient
{
if ($this->client) {
return $this->client;
}
$config = [
'version' => $this->config['version'],
'retries' => $this->config['retries'],
'region' => $this->config['region'],
];
if (isset($this->config['endpoint'])) {
$config['endpoint'] = $this->config['endpoint'];
}
if (isset($this->config['profile'])) {
$config['profile'] = $this->config['profile'];
}
if ($this->config['key'] && $this->config['secret']) {
$config['credentials'] = [
'key' => $this->config['key'],
'secret' => $this->config['secret'],
];
if ($this->config['token']) {
$config['credentials']['token'] = $this->config['token'];
}
}
if (isset($this->config['http'])) {
$config['http'] = $this->config['http'];
}
$establishConnection = function () use ($config) {
return (new Sdk(['Sqs' => $config]))->createMultiRegionSqs();
};
$this->client = $this->config['lazy'] ?
new SqsClient($establishConnection) :
new SqsClient($establishConnection())
;
return $this->client;
}
private function parseDsn(string $dsn): array
{
$dsn = Dsn::parseFirst($dsn);
if ('sqs' !== $dsn->getSchemeProtocol()) {
throw new \LogicException(sprintf('The given scheme protocol "%s" is not supported. It must be "sqs"', $dsn->getSchemeProtocol()));
}
return array_filter(array_replace($dsn->getQuery(), [
'key' => $dsn->getString('key'),
'secret' => $dsn->getString('secret'),
'token' => $dsn->getString('token'),
'region' => $dsn->getString('region'),
'retries' => $dsn->getDecimal('retries'),
'version' => $dsn->getString('version'),
'lazy' => $dsn->getBool('lazy'),
'endpoint' => $dsn->getString('endpoint'),
'profile' => $dsn->getString('profile'),
'queue_owner_aws_account_id' => $dsn->getString('queue_owner_aws_account_id'),
'http' => $dsn->getArray('http', [])->toArray(),
]), function ($value) { return null !== $value; });
}
private function defaultConfig(): array
{
return [
'key' => null,
'secret' => null,
'token' => null,
'region' => null,
'retries' => 3,
'version' => '2012-11-05',
'lazy' => true,
'endpoint' => null,
'profile' => null,
'queue_owner_aws_account_id' => null,
'http' => [],
];
}
}