SmsVoicePromptSender.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. namespace addons\qcloudsms\library;
  3. use addons\qcloudsms\library\SmsSenderUtil;
  4. /**
  5. * 发送语音通知类
  6. *
  7. */
  8. class SmsVoicePromptSender
  9. {
  10. private $url;
  11. private $appid;
  12. private $appkey;
  13. private $util;
  14. /**
  15. * 构造函数
  16. *
  17. * @param string $appid sdkappid
  18. * @param string $appkey sdkappid对应的appkey
  19. */
  20. public function __construct($appid, $appkey)
  21. {
  22. $this->url = "https://yun.tim.qq.com/v5/tlsvoicesvr/sendvoiceprompt";
  23. $this->appid = $appid;
  24. $this->appkey = $appkey;
  25. $this->util = new SmsSenderUtil();
  26. }
  27. /**
  28. *
  29. * 发送语音通知
  30. *
  31. * @param string $nationCode 国家码,如 86 为中国
  32. * @param string $phoneNumber 不带国家码的手机号
  33. * @param string $prompttype 语音类型,目前固定为2
  34. * @param string $msg 信息内容,必须与申请的模板格式一致,否则将返回错误
  35. * @param string $playtimes 播放次数,可选,最多3次,默认2次
  36. * @param string $ext 用户的session内容,服务端原样返回,可选字段,不需要可填空串
  37. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  38. */
  39. public function send($nationCode, $phoneNumber, $prompttype, $msg, $playtimes = 2, $ext = "")
  40. {
  41. $random = $this->util->getRandom();
  42. $curTime = time();
  43. $wholeUrl = $this->url . "?sdkappid=" . $this->appid . "&random=" . $random;
  44. // 按照协议组织 post 包体
  45. $data = new \stdClass();
  46. $tel = new \stdClass();
  47. $tel->nationcode = "".$nationCode;
  48. $tel->mobile = "".$phoneNumber;
  49. $data->tel = $tel;
  50. // 通知内容,utf8编码,支持中文英文、数字及组合,需要和语音内容模版相匹配
  51. $data->promptfile = $msg;
  52. // 固定值 2
  53. $data->prompttype = $prompttype;
  54. $data->playtimes = $playtimes;
  55. // app凭证
  56. $data->sig = hash("sha256",
  57. "appkey=".$this->appkey."&random=".$random."&time="
  58. .$curTime."&mobile=".$phoneNumber, FALSE);
  59. // unix时间戳,请求发起时间,如果和系统时间相差超过10分钟则会返回失败
  60. $data->time = $curTime;
  61. $data->ext = $ext;
  62. return $this->util->sendCurlPost($wholeUrl, $data);
  63. }
  64. }