70 lines
2.0 KiB
PHP
Raw Normal View History

2025-08-01 11:39:06 +08:00
<?php
namespace addons\qcloudsms\library;
use addons\qcloudsms\library\SmsSenderUtil;
/**
* 按语音文件fid发送语音通知类
*
*/
class FileVoiceSender
{
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://cloud.tim.qq.com/v5/tlsvoicesvr/sendfvoice";
$this->appid = $appid;
$this->appkey = $appkey;
$this->util = new SmsSenderUtil();
}
/**
*
* 按语音文件fid发送语音通知
*
* @param string $nationCode 国家码,如 86 为中国
* @param string $phoneNumber 不带国家码的手机号
* @param string $fid 语音文件fid
* @param string $playtimes 播放次数可选最多3次默认2次
* @param string $ext 用户的session内容服务端原样返回可选字段不需要可填空串
* @return string 应答json字符串详细内容参见腾讯云协议文档
*/
public function send($nationCode, $phoneNumber, $fid, $playtimes = 2, $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->fid = $fid;
$data->playtimes = $playtimes;
// app凭证
$data->sig = $this->util->calculateSig($this->appkey, $random,
$curTime, array($phoneNumber));
// unix时间戳请求发起时间如果和系统时间相差超过10分钟则会返回失败
$data->time = $curTime;
$data->ext = $ext;
return $this->util->sendCurlPost($wholeUrl, $data);
}
}