-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAmazonSnsTransportFactory.php
60 lines (48 loc) · 1.79 KB
/
AmazonSnsTransportFactory.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
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Notifier\Bridge\AmazonSns;
use AsyncAws\Sns\SnsClient;
use Symfony\Component\Notifier\Exception\UnsupportedSchemeException;
use Symfony\Component\Notifier\Transport\AbstractTransportFactory;
use Symfony\Component\Notifier\Transport\Dsn;
/**
* @author Adrien Chinour <[email protected]>
*/
final class AmazonSnsTransportFactory extends AbstractTransportFactory
{
public function create(Dsn $dsn): AmazonSnsTransport
{
$scheme = $dsn->getScheme();
if ('sns' !== $scheme) {
throw new UnsupportedSchemeException($dsn, 'sns', $this->getSupportedSchemes());
}
$host = 'default' === $dsn->getHost() ? null : $dsn->getHost();
$port = $dsn->getPort();
$protocol = 'disable' === $dsn->getOption('sslmode') ? 'http' : 'https';
$options = null === $host ? [] : ['endpoint' => $protocol.'://'.$host.($port ? ':'.$port : '')];
if ($dsn->getUser()) {
$options += [
'accessKeyId' => $dsn->getUser(),
'accessKeySecret' => $dsn->getPassword(),
];
}
if ($dsn->getOption('region')) {
$options['region'] = $dsn->getOption('region');
}
if ($dsn->getOption('profile')) {
$options['profile'] = $dsn->getOption('profile');
}
return (new AmazonSnsTransport(new SnsClient($options, null, $this->client), $this->client, $this->dispatcher))->setHost($host)->setPort($port);
}
protected function getSupportedSchemes(): array
{
return ['sns'];
}
}