-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSmsOnlineTransport.php
68 lines (60 loc) · 1.93 KB
/
SmsOnlineTransport.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
<?php
namespace Bankiru\Sms\SmsOnline;
use GuzzleHttp\Exception\GuzzleException;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use ScayTrase\SmsDeliveryBundle\Exception\DeliveryFailedException;
use ScayTrase\SmsDeliveryBundle\Service\ShortMessageInterface;
use ScayTrase\SmsDeliveryBundle\Transport\TransportInterface;
final class SmsOnlineTransport implements TransportInterface
{
/** @var SmsOnline */
private $client;
/** @var LoggerInterface */
private $logger;
/** @var string */
private $sender;
/** @var string */
private $transactionPrefix;
/**
* SmsOnlineTransport constructor.
*
* @param SmsOnline $client
* @param string $sender
* @param LoggerInterface $logger
* @param string $transactionPrefix
*/
public function __construct(SmsOnline $client, $sender, LoggerInterface $logger = null, $transactionPrefix = '')
{
$this->client = $client;
$this->sender = (string)$sender;
$this->logger = $logger ?: new NullLogger();
$this->transactionPrefix = $transactionPrefix;
}
/** {@inheritdoc} */
public function send(ShortMessageInterface $message)
{
try {
return (bool)$this->client->send(
$message->getRecipient(),
$message->getBody(),
$this->sender,
$this->getTransactionPrefix($message)
);
} catch (GuzzleException $e) {
throw new DeliveryFailedException($e->getMessage(), $e->getCode(), $e);
}
}
/**
* @param ShortMessageInterface $message
* @return string
*/
private function getTransactionPrefix(ShortMessageInterface $message)
{
$prefix = $this->transactionPrefix;
if ($message instanceof PrefixedSmsInterface) {
$prefix = $message->getTransactionPrefix() ?: $prefix;
}
return $prefix . sha1(random_bytes(20));
}
}