You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.4 KiB
92 lines
2.4 KiB
1 year ago
|
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of the overtrue/easy-sms.
|
||
|
*
|
||
|
* (c) overtrue <i@overtrue.me>
|
||
|
*
|
||
|
* This source file is subject to the MIT license that is bundled
|
||
|
* with this source code in the file LICENSE.
|
||
|
*/
|
||
|
|
||
|
namespace Overtrue\EasySms\Gateways;
|
||
|
|
||
|
use GuzzleHttp\Exception\ClientException;
|
||
|
use Overtrue\EasySms\Contracts\MessageInterface;
|
||
|
use Overtrue\EasySms\Contracts\PhoneNumberInterface;
|
||
|
use Overtrue\EasySms\Exceptions\GatewayErrorException;
|
||
|
use Overtrue\EasySms\Support\Config;
|
||
|
use Overtrue\EasySms\Traits\HasHttpRequest;
|
||
|
|
||
|
/**
|
||
|
* Class TwilioGateway.
|
||
|
*
|
||
|
* @see https://www.twilio.com/docs/api/messaging/send-messages
|
||
|
*/
|
||
|
class TwilioGateway extends Gateway
|
||
|
{
|
||
|
use HasHttpRequest;
|
||
|
|
||
|
const ENDPOINT_URL = 'https://api.twilio.com/2010-04-01/Accounts/%s/Messages.json';
|
||
|
|
||
|
protected $errorStatuses = [
|
||
|
'failed',
|
||
|
'undelivered',
|
||
|
];
|
||
|
|
||
|
public function getName()
|
||
|
{
|
||
|
return 'twilio';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param \Overtrue\EasySms\Contracts\PhoneNumberInterface $to
|
||
|
* @param \Overtrue\EasySms\Contracts\MessageInterface $message
|
||
|
* @param \Overtrue\EasySms\Support\Config $config
|
||
|
*
|
||
|
* @return array
|
||
|
*
|
||
|
* @throws \Overtrue\EasySms\Exceptions\GatewayErrorException
|
||
|
*/
|
||
|
public function send(PhoneNumberInterface $to, MessageInterface $message, Config $config)
|
||
|
{
|
||
|
$accountSid = $config->get('account_sid');
|
||
|
$endpoint = $this->buildEndPoint($accountSid);
|
||
|
|
||
|
$params = [
|
||
|
'To' => $to->getUniversalNumber(),
|
||
|
'From' => $config->get('from'),
|
||
|
'Body' => $message->getContent($this),
|
||
|
];
|
||
|
|
||
|
try {
|
||
|
$result = $this->request('post', $endpoint, [
|
||
|
'auth' => [
|
||
|
$accountSid,
|
||
|
$config->get('token'),
|
||
|
],
|
||
|
'form_params' => $params,
|
||
|
]);
|
||
|
if (in_array($result['status'], $this->errorStatuses) || !is_null($result['error_code'])) {
|
||
|
throw new GatewayErrorException($result['message'], $result['error_code'], $result);
|
||
|
}
|
||
|
} catch (ClientException $e) {
|
||
|
throw new GatewayErrorException($e->getMessage(), $e->getCode());
|
||
|
}
|
||
|
|
||
|
return $result;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* build endpoint url.
|
||
|
*
|
||
|
* @param string $accountSid
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
protected function buildEndPoint($accountSid)
|
||
|
{
|
||
|
return sprintf(self::ENDPOINT_URL, $accountSid);
|
||
|
}
|
||
|
}
|