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.

SmsMobileStatusPuller.php 3.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. require_once __DIR__ . "/SmsSenderUtil.php";
  3. /**
  4. * 拉取单个手机短信状态类
  5. *
  6. */
  7. class SmsMobileStatusPuller
  8. {
  9. private $url;
  10. private $appid;
  11. private $appkey;
  12. private $util;
  13. /**
  14. * 构造函数
  15. *
  16. * @param string $appid sdkappid
  17. * @param string $appkey sdkappid对应的appkey
  18. */
  19. public function __construct($appid, $appkey)
  20. {
  21. $this->url = "https://yun.tim.qq.com/v5/tlssmssvr/pullstatus4mobile";
  22. $this->appid = $appid;
  23. $this->appkey = $appkey;
  24. $this->util = new SmsSenderUtil();
  25. }
  26. /**
  27. * 拉取回执结果
  28. *
  29. * @param int $type 拉取类型,0表示回执结果,1表示回复信息
  30. * @param string $nationCode 国家码,如 86 为中国
  31. * @param string $mobile 不带国家码的手机号
  32. * @param int $beginTime 开始时间(unix timestamp)
  33. * @param int $endTime 结束时间(unix timestamp)
  34. * @param int $max 拉取最大条数,最多100
  35. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  36. */
  37. private function pull($type, $nationCode, $mobile, $beginTime, $endTime, $max)
  38. {
  39. $random = $this->util->getRandom();
  40. $curTime = time();
  41. $wholeUrl = $this->url . "?sdkappid=" . $this->appid . "&random=" . $random;
  42. $data = new \stdClass();
  43. $data->sig = $this->util->calculateSigForPuller($this->appkey, $random, $curTime);
  44. $data->time = $curTime;
  45. $data->type = $type;
  46. $data->max = $max;
  47. $data->begin_time = $beginTime;
  48. $data->end_time = $endTime;
  49. $data->nationcode = $nationCode;
  50. $data->mobile = $mobile;
  51. return $this->util->sendCurlPost($wholeUrl, $data);
  52. }
  53. /**
  54. * 拉取回执结果
  55. *
  56. * @param string $nationCode 国家码,如 86 为中国
  57. * @param string $mobile 不带国家码的手机号
  58. * @param int $beginTime 开始时间(unix timestamp)
  59. * @param int $endTime 结束时间(unix timestamp)
  60. * @param int $max 拉取最大条数,最多100
  61. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  62. */
  63. public function pullCallback($nationCode, $mobile, $beginTime, $endTime, $max)
  64. {
  65. return $this->pull(0, $nationCode, $mobile, $beginTime, $endTime, $max);
  66. }
  67. /**
  68. * 拉取回复信息
  69. *
  70. * @param string $nationCode 国家码,如 86 为中国
  71. * @param string $mobile 不带国家码的手机号
  72. * @param int $beginTime 开始时间(unix timestamp)
  73. * @param int $endTime 结束时间(unix timestamp)
  74. * @param int $max 拉取最大条数,最多100
  75. * @return string 应答json字符串,详细内容参见腾讯云协议文档
  76. */
  77. public function pullReply($nationCode, $mobile, $beginTime, $endTime, $max)
  78. {
  79. return $this->pull(1, $nationCode, $mobile, $beginTime, $endTime, $max);
  80. }
  81. }