No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VoiceFileUploader.php 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. require_once __DIR__ . "/SmsSenderUtil.php";
  3. /**
  4. * 上传语音文件类
  5. *
  6. */
  7. class VoiceFileUploader
  8. {
  9. private $url;
  10. private $appid;
  11. private $appkey;
  12. private $util;
  13. const WAV = "audio/wav";
  14. const MP3 = "audio/mpeg";
  15. /**
  16. * 构造函数
  17. *
  18. * @param string $appid sdkappid
  19. * @param string $appkey sdkappid对应的appkey
  20. */
  21. public function __construct($appid, $appkey)
  22. {
  23. $this->url = "https://cloud.tim.qq.com/v5/tlsvoicesvr/uploadvoicefile";
  24. $this->appid = $appid;
  25. $this->appkey = $appkey;
  26. $this->util = new SmsSenderUtil();
  27. }
  28. /**
  29. *
  30. * 上传语音文件
  31. *
  32. * @param string $fileContent 语音文件内容
  33. * @param string $contentType 语音文件类型,目前支持 VoiceFileUploader::WAV 和 VoiceFileUploader::MP3
  34. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  35. */
  36. public function upload($fileContent, $contentType)
  37. {
  38. assert($contentType == self::WAV || $contentType == self::MP3);
  39. $random = $this->util->getRandom();
  40. $curTime = time();
  41. $fileSha1Sum = $this->util->sha1sum($fileContent);
  42. $auth = $this->util->calculateAuth($this->appkey, $random,
  43. $curTime, $fileSha1Sum);
  44. $req = new \stdClass();
  45. $req->url = $this->url . "?sdkappid=" . $this->appid
  46. . "&random=" . $random . "&time=" . $curTime;
  47. $req->body = $fileContent;
  48. $req->headers = array(
  49. "Content-Type: " . $contentType,
  50. "x-content-sha1: " . $fileSha1Sum,
  51. "Authorization: " . $auth
  52. );
  53. return $this->util->fetch($req);
  54. }
  55. }