JPush.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <?php
  2. require_once("core/PushPayload.php");
  3. require_once("core/ReportPayload.php");
  4. require_once("core/DevicePayload.php");
  5. require_once("core/SchedulePayload.php");
  6. require_once("core/JPushException.php");
  7. class JPush {
  8. const DISABLE_SOUND = "_disable_Sound";
  9. const DISABLE_BADGE = 0x10000;
  10. const USER_AGENT = 'JPush-API-PHP-Client';
  11. const CONNECT_TIMEOUT = 5;
  12. const READ_TIMEOUT = 30;
  13. const DEFAULT_MAX_RETRY_TIMES = 3;
  14. const DEFAULT_LOG_FILE = "./jpush.log";
  15. const HTTP_GET = 'GET';
  16. const HTTP_POST = 'POST';
  17. const HTTP_DELETE = 'DELETE';
  18. const HTTP_PUT = 'PUT';
  19. private $appKey;
  20. private $masterSecret;
  21. private $retryTimes;
  22. private $logFile;
  23. public function __construct($appKey, $masterSecret, $logFile=self::DEFAULT_LOG_FILE, $retryTimes=self::DEFAULT_MAX_RETRY_TIMES) {
  24. if (is_null($appKey) || is_null($masterSecret)) {
  25. throw new InvalidArgumentException("appKey and masterSecret must be set.");
  26. }
  27. if (!is_string($appKey) || !is_string($masterSecret)) {
  28. throw new InvalidArgumentException("Invalid appKey or masterSecret");
  29. }
  30. $this->appKey = $appKey;
  31. $this->masterSecret = $masterSecret;
  32. if (!is_null($retryTimes)) {
  33. $this->retryTimes = $retryTimes;
  34. } else {
  35. $this->retryTimes = 1;
  36. }
  37. $this->logFile = $logFile;
  38. }
  39. public function push() {
  40. return new PushPayload($this);
  41. }
  42. public function report() {
  43. return new ReportPayload($this);
  44. }
  45. public function device() {
  46. return new DevicePayload($this);
  47. }
  48. public function schedule() {
  49. return new SchedulePayload($this);
  50. }
  51. /**
  52. * 发送HTTP请求
  53. * @param $url string 请求的URL
  54. * @param $method int 请求的方法
  55. * @param null $body String POST请求的Body
  56. * @param int $times 当前重试的册数
  57. * @return array
  58. * @throws APIConnectionException
  59. */
  60. public function _request($url, $method, $body=null, $times=1) {
  61. $this->log("Send " . $method . " " . $url . ", body:" . $body . ", times:" . $times);
  62. $ch = curl_init();
  63. curl_setopt($ch, CURLOPT_URL, $url);
  64. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  65. curl_setopt($ch, CURLOPT_HEADER, true);
  66. // 设置User-Agent
  67. curl_setopt($ch, CURLOPT_USERAGENT, self::USER_AGENT);
  68. // 连接建立最长耗时
  69. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, self::CONNECT_TIMEOUT);
  70. // 请求最长耗时
  71. curl_setopt($ch, CURLOPT_TIMEOUT, self::READ_TIMEOUT);
  72. // 设置SSL版本 1=CURL_SSLVERSION_TLSv1, 不指定使用默认值,curl会自动获取需要使用的CURL版本
  73. // curl_setopt($ch, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
  74. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  75. // 如果报证书相关失败,可以考虑取消注释掉该行,强制指定证书版本
  76. //curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, 'TLSv1');
  77. // 设置Basic认证
  78. curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
  79. curl_setopt($ch, CURLOPT_USERPWD, $this->appKey . ":" . $this->masterSecret);
  80. // 设置Post参数
  81. if ($method === self::HTTP_POST) {
  82. curl_setopt($ch, CURLOPT_POST, true);
  83. } else if ($method === self::HTTP_DELETE || $method === self::HTTP_PUT) {
  84. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
  85. }
  86. if (!is_null($body)) {
  87. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
  88. }
  89. // 设置headers
  90. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  91. 'Content-Type: application/json',
  92. 'Connection: Keep-Alive'
  93. ));
  94. // 执行请求
  95. $output = curl_exec($ch);
  96. // 解析Response
  97. $response = array();
  98. $errorCode = curl_errno($ch);
  99. if ($errorCode) {
  100. if ($errorCode === 28) {
  101. throw new APIConnectionException("Response timeout. Your request has probably be received by JPush Server,please check that whether need to be pushed again.", true);
  102. } else if ($errorCode === 56) {
  103. // resolve error[56 Problem (2) in the Chunked-Encoded data]
  104. throw new APIConnectionException("Response timeout, maybe cause by old CURL version. Your request has probably be received by JPush Server, please check that whether need to be pushed again.", true);
  105. } else if ($times >= $this->retryTimes) {
  106. throw new APIConnectionException("Connect timeout. Please retry later. Error:" . $errorCode . " " . curl_error($ch));
  107. } else {
  108. $this->log("Send " . $method . " " . $url . " fail, curl_code:" . $errorCode . ", body:" . $body . ", times:" . $times);
  109. $this->_request($url, $method, $body, ++$times);
  110. }
  111. } else {
  112. $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  113. $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
  114. $header_text = substr($output, 0, $header_size);
  115. $body = substr($output, $header_size);
  116. $headers = array();
  117. foreach (explode("\r\n", $header_text) as $i => $line) {
  118. if (!empty($line)) {
  119. if ($i === 0) {
  120. $headers['http_code'] = $line;
  121. } else if (strpos($line, ": ")) {
  122. list ($key, $value) = explode(': ', $line);
  123. $headers[$key] = $value;
  124. }
  125. }
  126. }
  127. $response['headers'] = $headers;
  128. $response['body'] = $body;
  129. $response['http_code'] = $httpCode;
  130. }
  131. curl_close($ch);
  132. return $response;
  133. }
  134. public function log($content) {
  135. if (!is_null($this->logFile)) {
  136. error_log($content . "\r\n", 3, $this->logFile);
  137. }
  138. }
  139. }