* * 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 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 AvatardataGateway. * * @see http://www.avatardata.cn/Docs/Api/fd475e40-7809-4be7-936c-5926dd41b0fe */ class AvatardataGateway extends Gateway { use HasHttpRequest; const ENDPOINT_URL = 'http://v1.avatardata.cn/Sms/Send'; const ENDPOINT_FORMAT = 'json'; /** * @param PhoneNumberInterface $to * @param MessageInterface $message * @param Config $config * * @return array * * @throws GatewayErrorException; */ public function send(PhoneNumberInterface $to, MessageInterface $message, Config $config) { $params = [ 'mobile' => $to->getNumber(), 'templateId' => $message->getTemplate($this), 'param' => implode(',', $message->getData($this)), 'dtype' => self::ENDPOINT_FORMAT, 'key' => $config->get('app_key'), ]; $result = $this->get(self::ENDPOINT_URL, $params); if ($result['error_code']) { throw new GatewayErrorException($result['reason'], $result['error_code'], $result); } return $result; } }