VoiceFileUploader.php 1.7 KB

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