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

159 lines
5.9 KiB
PHTML

5 years ago
<?php
require_once("core/PushPayload.php");
require_once("core/ReportPayload.php");
require_once("core/DevicePayload.php");
require_once("core/SchedulePayload.php");
require_once("core/JPushException.php");
class JPush {
const DISABLE_SOUND = "_disable_Sound";
const DISABLE_BADGE = 0x10000;
const USER_AGENT = 'JPush-API-PHP-Client';
const CONNECT_TIMEOUT = 5;
const READ_TIMEOUT = 30;
const DEFAULT_MAX_RETRY_TIMES = 3;
const DEFAULT_LOG_FILE = "./jpush.log";
const HTTP_GET = 'GET';
const HTTP_POST = 'POST';
const HTTP_DELETE = 'DELETE';
const HTTP_PUT = 'PUT';
private $appKey;
private $masterSecret;
private $retryTimes;
private $logFile;
public function __construct($appKey, $masterSecret, $logFile=self::DEFAULT_LOG_FILE, $retryTimes=self::DEFAULT_MAX_RETRY_TIMES) {
if (is_null($appKey) || is_null($masterSecret)) {
throw new InvalidArgumentException("appKey and masterSecret must be set.");
}
if (!is_string($appKey) || !is_string($masterSecret)) {
throw new InvalidArgumentException("Invalid appKey or masterSecret");
}
$this->appKey = $appKey;
$this->masterSecret = $masterSecret;
if (!is_null($retryTimes)) {
$this->retryTimes = $retryTimes;
} else {
$this->retryTimes = 1;
}
$this->logFile = $logFile;
}
public function push() {
return new PushPayload($this);
}
public function report() {
return new ReportPayload($this);
}
public function device() {
return new DevicePayload($this);
}
public function schedule() {
return new SchedulePayload($this);
}
/**
* 发送HTTP请求
* @param $url string 请求的URL
* @param $method int 请求的方法
* @param null $body String POST请求的Body
* @param int $times 当前重试的册数
* @return array
* @throws APIConnectionException
*/
public function _request($url, $method, $body=null, $times=1) {
$this->log("Send " . $method . " " . $url . ", body:" . $body . ", times:" . $times);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
// 设置User-Agent
curl_setopt($ch, CURLOPT_USERAGENT, self::USER_AGENT);
// 连接建立最长耗时
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, self::CONNECT_TIMEOUT);
// 请求最长耗时
curl_setopt($ch, CURLOPT_TIMEOUT, self::READ_TIMEOUT);
// 设置SSL版本 1=CURL_SSLVERSION_TLSv1, 不指定使用默认值,curl会自动获取需要使用的CURL版本
// curl_setopt($ch, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
// 如果报证书相关失败,可以考虑取消注释掉该行,强制指定证书版本
//curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, 'TLSv1');
// 设置Basic认证
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, $this->appKey . ":" . $this->masterSecret);
// 设置Post参数
if ($method === self::HTTP_POST) {
curl_setopt($ch, CURLOPT_POST, true);
} else if ($method === self::HTTP_DELETE || $method === self::HTTP_PUT) {
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
}
if (!is_null($body)) {
curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
}
// 设置headers
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Connection: Keep-Alive'
));
// 执行请求
$output = curl_exec($ch);
// 解析Response
$response = array();
$errorCode = curl_errno($ch);
if ($errorCode) {
if ($errorCode === 28) {
throw new APIConnectionException("Response timeout. Your request has probably be received by JPush Server,please check that whether need to be pushed again.", true);
} else if ($errorCode === 56) {
// resolve error[56 Problem (2) in the Chunked-Encoded data]
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);
} else if ($times >= $this->retryTimes) {
throw new APIConnectionException("Connect timeout. Please retry later. Error:" . $errorCode . " " . curl_error($ch));
} else {
$this->log("Send " . $method . " " . $url . " fail, curl_code:" . $errorCode . ", body:" . $body . ", times:" . $times);
$this->_request($url, $method, $body, ++$times);
}
} else {
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
$header_text = substr($output, 0, $header_size);
$body = substr($output, $header_size);
$headers = array();
foreach (explode("\r\n", $header_text) as $i => $line) {
if (!empty($line)) {
if ($i === 0) {
$headers['http_code'] = $line;
} else if (strpos($line, ": ")) {
list ($key, $value) = explode(': ', $line);
$headers[$key] = $value;
}
}
}
$response['headers'] = $headers;
$response['body'] = $body;
$response['http_code'] = $httpCode;
}
curl_close($ch);
return $response;
}
public function log($content) {
if (!is_null($this->logFile)) {
error_log($content . "\r\n", 3, $this->logFile);
}
}
}