* 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\Exceptions\GatewayErrorException; use Overtrue\EasySms\Support\Config; use Overtrue\EasySms\Traits\HasHttpRequest; /** * Class HuyiGateway. * * @see http://www.ihuyi.com/api/sms.html */ class HuyiGateway extends Gateway { use HasHttpRequest; const ENDPOINT_URL = 'http://106.ihuyi.com/webservice/sms.php?method=Submit'; const ENDPOINT_FORMAT = 'json'; const SUCCESS_CODE = 2; /** * @param array|int|string $to * @param \Overtrue\EasySms\Contracts\MessageInterface $message * @param \Overtrue\EasySms\Support\Config $config * * @return array * * @throws \Overtrue\EasySms\Exceptions\GatewayErrorException; */ public function send($to, MessageInterface $message, Config $config) { $params = [ 'account' => $config->get('api_id'), 'mobile' => strval($to), 'content' => $message->getContent(), 'time' => time(), 'format' => self::ENDPOINT_FORMAT, ]; $params['password'] = $this->generateSign($params); $result = $this->post(self::ENDPOINT_URL, $params); if ($result['code'] != self::SUCCESS_CODE) { throw new GatewayErrorException($result['msg'], $result['code'], $result); } return $result; } /** * Generate Sign. * * @param array $params * * @return string */ protected function generateSign($params) { return md5($params['account'].$this->config->get('api_key').$params['mobile'].$params['content'].$params['time']); } }