-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathSqsConnectionFactory.php
162 lines (137 loc) · 4.61 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
<?php
namespace Enqueue\Sqs;
use Aws\Sqs\SqsClient;
use Interop\Queue\PsrConnectionFactory;
class SqsConnectionFactory implements PsrConnectionFactory
{
/**
* @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
* ].
*
* or
*
* sqs:
* sqs::?key=aKey&secret=aSecret&token=aToken
*
* @param array|string|null $config
*/
public function __construct($config = 'sqs:')
{
if (empty($config) || 'sqs:' === $config) {
$config = [];
} elseif (is_string($config)) {
$config = $this->parseDsn($config);
} elseif (is_array($config)) {
$dsn = array_key_exists('dsn', $config) ? $config['dsn'] : null;
unset($config['dsn']);
if ($dsn) {
$config = array_replace($config, $this->parseDsn($dsn));
}
} else {
throw new \LogicException('The config must be either an array of options, a DSN string or null');
}
$this->config = array_replace($this->defaultConfig(), $config);
}
/**
* {@inheritdoc}
*
* @return SqsContext
*/
public function createContext()
{
if ($this->config['lazy']) {
return new SqsContext(function () {
return $this->establishConnection();
});
}
return new SqsContext($this->establishConnection());
}
/**
* {@inheritdoc}
*/
public function close()
{
}
/**
* @return SqsClient
*/
private function establishConnection()
{
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 ($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'];
}
}
$this->client = new SqsClient($config);
return $this->client;
}
/**
* @param string $dsn
*
* @return array
*/
private function parseDsn($dsn)
{
if (false === strpos($dsn, 'sqs:')) {
throw new \LogicException(sprintf('The given DSN "%s" is not supported. Must start with "sqs:".', $dsn));
}
if (false === $config = parse_url($dsn)) {
throw new \LogicException(sprintf('Failed to parse DSN "%s"', $dsn));
}
if ($query = parse_url($dsn, PHP_URL_QUERY)) {
$queryConfig = [];
parse_str($query, $queryConfig);
$config = array_replace($queryConfig, $config);
}
unset($config['query'], $config['scheme']);
$config['lazy'] = empty($config['lazy']) ? false : true;
return $config;
}
/**
* @return array
*/
private function defaultConfig()
{
return [
'key' => null,
'secret' => null,
'token' => null,
'region' => null,
'retries' => 3,
'version' => '2012-11-05',
'lazy' => true,
'endpoint' => null,
];
}
}