123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?php
- namespace addons\qcloudsms\library;
- use addons\qcloudsms\library\SmsSenderUtil;
- /**
- * 单发短信类
- *
- */
- class SmsSingleSender
- {
- private $url;
- private $appid;
- private $appkey;
- private $util;
- /**
- * 构造函数
- *
- * @param string $appid sdkappid
- * @param string $appkey sdkappid对应的appkey
- */
- public function __construct($appid, $appkey)
- {
- $this->url = "https://yun.tim.qq.com/v5/tlssmssvr/sendsms";
- $this->appid = $appid;
- $this->appkey = $appkey;
- $this->util = new SmsSenderUtil();
- }
- /**
- * 普通单发
- *
- * 普通单发需明确指定内容,如果有多个签名,请在内容中以【】的方式添加到信息内容中,否则系统将使用默认签名。
- *
- * @param int $type 短信类型,0 为普通短信,1 营销短信
- * @param string $nationCode 国家码,如 86 为中国
- * @param string $phoneNumber 不带国家码的手机号
- * @param string $msg 信息内容,必须与申请的模板格式一致,否则将返回错误
- * @param string $extend 扩展码,可填空串
- * @param string $ext 服务端原样返回的参数,可填空串
- * @return string 应答json字符串,详细内容参见腾讯云协议文档
- */
- public function send($type, $nationCode, $phoneNumber, $msg, $extend = "", $ext = "")
- {
- $random = $this->util->getRandom();
- $curTime = time();
- $wholeUrl = $this->url . "?sdkappid=" . $this->appid . "&random=" . $random;
- // 按照协议组织 post 包体
- $data = new \stdClass();
- $tel = new \stdClass();
- $tel->nationcode = "".$nationCode;
- $tel->mobile = "".$phoneNumber;
- $data->tel = $tel;
- $data->type = (int)$type;
- $data->msg = $msg;
- $data->sig = hash("sha256",
- "appkey=".$this->appkey."&random=".$random."&time="
- .$curTime."&mobile=".$phoneNumber, FALSE);
- $data->time = $curTime;
- $data->extend = $extend;
- $data->ext = $ext;
- return $this->util->sendCurlPost($wholeUrl, $data);
- }
- /**
- * 指定模板单发
- *
- * @param string $nationCode 国家码,如 86 为中国
- * @param string $phoneNumber 不带国家码的手机号
- * @param int $templId 模板 id
- * @param array $params 模板参数列表,如模板 {1}...{2}...{3},那么需要带三个参数
- * @param string $sign 签名,如果填空串,系统会使用默认签名
- * @param string $extend 扩展码,可填空串
- * @param string $ext 服务端原样返回的参数,可填空串
- * @return string 应答json字符串,详细内容参见腾讯云协议文档
- */
- public function sendWithParam($nationCode, $phoneNumber, $templId = 0, $params,
- $sign = "", $extend = "", $ext = "")
- {
- $random = $this->util->getRandom();
- $curTime = time();
- $wholeUrl = $this->url . "?sdkappid=" . $this->appid . "&random=" . $random;
- // 按照协议组织 post 包体
- $data = new \stdClass();
- $tel = new \stdClass();
- $tel->nationcode = "".$nationCode;
- $tel->mobile = "".$phoneNumber;
- $data->tel = $tel;
- $data->sig = $this->util->calculateSigForTempl($this->appkey, $random,
- $curTime, $phoneNumber);
- $data->tpl_id = $templId;
- $data->params = $params;
- $data->sign = $sign;
- $data->time = $curTime;
- $data->extend = $extend;
- $data->ext = $ext;
- return $this->util->sendCurlPost($wholeUrl, $data);
- }
- }
|