accessToken = $this->getAccessToken(); $this->templateIds = Config::get('sms.stores.sms.template_id', []); } protected function getAccessToken() { $this->account = SystemConfigService::get('sms_account'); $this->sercet = SystemConfigService::get('sms_token'); return new AccessTokenServeService($this->account, $this->sercet); } /** 初始化 * @param array $config */ protected function _initialize(array $config = []) { parent::_initialize($config); } /** * 提取模板code * @param string $templateId * @return null */ protected function getTemplateCode($templateId) { return $this->templateIds[$templateId] ? $this->templateIds[$templateId] : null; } /** * 设置签名 * @param $sign * @return $this */ public function setSign($sign) { $this->sign = $sign; return $this; } /** * 开通服务 * @return array|bool|mixed */ public function open() { $param = [ 'sign' => $this->sign ]; return $this->accessToken->httpRequest(self::SMS_OPEN, $param); } /** * 修改签名 * @param $sign * @return array|bool|mixed */ public function modify($sign = '', $phone = '', $verify_code = '') { $param = [ 'sign' => $sign, 'phone' => $phone, 'verify_code' => $verify_code ]; return $this->accessToken->httpRequest(self::SMS_MODIFY, $param); } /** * 获取用户信息 * @return array|bool|mixed */ public function info() { return $this->accessToken->httpRequest(self::SMS_INFO, []); } /** * 短信模版 * @param int $page * @param int $limit * @param $temp_type * @return array|bool|mixed */ public function temps($page = 1, $limit = 10, $temp_type = '') { $param = [ 'page' => $page, 'limit' => $limit, 'temp_type' => $temp_type ]; return $this->accessToken->httpRequest(self::SMS_TEMPS, $param); } /** * 申请模版 * @param $title * @param $content * @param $type * @return array|bool|mixed */ public function apply($title, $content, $type) { $param = [ 'title' => $title, 'content' => $content, 'type' => $type ]; return $this->accessToken->httpRequest(self::SMS_APPLY, $param); } /** * 申请记录 * @param $temp_type * @param int $page * @param int $limit * @return array|bool|mixed */ public function applys($temp_type, $page, $limit) { $param = [ 'temp_type' => $temp_type, 'page' => $page, 'limit' => $limit ]; return $this->accessToken->httpRequest(self::SMS_APPLYS, $param); } /**返回结果 * @param string $code * @param string $data * @param string $message * @return array */ public function returnData($code = 'OK', $data = '', $message = '') { return [ 'data' => $data, 'Code' => $code, 'Message' => $message ]; } /** * 发送短信 * @param $phone * @param $template * @param $param * @return bool|string */ public function send($phone, $templateId = '', $data = []) { if (!$phone) { return $this->returnData('手机号不能为空', 'err', '手机号不能为空'); } $param = [ 'phone' => $phone ]; $param['temp_id'] = $templateId; // $param['temp_id'] = $this->templateId; if (is_null($param['temp_id']) || $param['temp_id'] == '') { return $this->returnData('模版ID不存在', 'err', '模版ID不存在'); } $param['param'] = json_encode($data); $data = $this->accessToken->httpRequest(self::SMS_SEND, $param); if (!isset($data['status']) || $data['status'] != 200) { return $this->returnData('err', $data['msg'], $data['msg']); } else { return $this->returnData('OK', $data['data']['id'], '发送成功'); } } /** * 发送记录 * @param $record_id * @return array|bool|mixed */ public function record($record_id) { $param = [ 'record_id' => $record_id ]; return $this->accessToken->httpRequest(self::SMS_RECORD, $param); } }