-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSmsOnline.php
87 lines (77 loc) · 2.17 KB
/
SmsOnline.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
<?php
namespace Bankiru\Sms\SmsOnline;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\Exception\GuzzleException;
use ScayTrase\SmsDeliveryBundle\Exception\DeliveryFailedException;
final class SmsOnline
{
/** @var ClientInterface */
private $client;
/** @var string */
private $url;
/** @var string */
private $user;
/** @var string */
private $token;
/**
* @param ClientInterface $client
* @param string $user
* @param string $token
* @param string $url
*/
public function __construct(ClientInterface $client, $user, $token, $url)
{
$this->client = $client;
$this->url = $url;
$this->user = $user;
$this->token = $token;
}
/**
* @param int $phone
* @param string $message
* @param string $from
* @param string $messageId
*
* @return bool
*
* @throws GuzzleException
* @throws DeliveryFailedException
*/
public function send($phone, $message, $from, $messageId)
{
$get = [
'user' => $this->user,
'from' => $from,
'phone' => $phone,
'txt' => $message,
'sign' => $this->getSign($from, $phone, $message),
'dlr' => 1,
'p_transaction_id' => $messageId,
];
$result = $this->client->request('GET', $this->getUrl($get));
if ($result->getStatusCode() !== 200) {
throw new DeliveryFailedException($result->getReasonPhrase());
}
return strpos((string)$result->getBody(), '<code>0</code>') !== false;
}
/**
* @param string $from
* @param int $phone
* @param string $message
*
* @return string
*/
private function getSign($from, $phone, $message)
{
return md5($this->user . $from . $phone . $message . $this->token);
}
/**
* @param array $get
*
* @return string
*/
private function getUrl(array $get)
{
return $this->url . (false === strpos($this->url, '?') ? '?' : '&') . http_build_query($get);
}
}