PushPayload.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. <?php
  2. class PushPayload {
  3. private static $EFFECTIVE_DEVICE_TYPES = array('ios', 'android', 'winphone');
  4. private static $LIMIT_KEYS = array('X-Rate-Limit-Limit'=>'rateLimitLimit', 'X-Rate-Limit-Remaining'=>'rateLimitRemaining', 'X-Rate-Limit-Reset'=>'rateLimitReset');
  5. const PUSH_URL = 'https://api.jpush.cn/v3/push';
  6. const PUSH_VALIDATE_URL = 'https://api.jpush.cn/v3/push/validate';
  7. private $client;
  8. private $platform;
  9. private $audience;
  10. private $tags;
  11. private $tagAnds;
  12. private $alias;
  13. private $registrationIds;
  14. private $notificationAlert;
  15. private $iosNotification;
  16. private $androidNotification;
  17. private $winPhoneNotification;
  18. private $smsMessage;
  19. private $message;
  20. private $options;
  21. /**
  22. * PushPayload constructor.
  23. * @param $client JPush
  24. */
  25. function __construct($client) {
  26. $this->client = $client;
  27. }
  28. public function setPlatform($platform) {
  29. if (is_string($platform) && strcasecmp("all", $platform) === 0) {
  30. $this->platform = "all";
  31. } else {
  32. if (!is_array($platform)) {
  33. $platform = func_get_args();
  34. if (count($platform) <= 0) {
  35. throw new InvalidArgumentException("Missing argument for PushPayload::setPlatform()");
  36. }
  37. }
  38. $_platform = array();
  39. foreach($platform as $type) {
  40. $type = strtolower($type);
  41. if (!in_array($type, self::$EFFECTIVE_DEVICE_TYPES)) {
  42. throw new InvalidArgumentException("Invalid device type: " . $type);
  43. }
  44. if (!in_array($type, $_platform)) {
  45. array_push($_platform, $type);
  46. }
  47. }
  48. $this->platform = $_platform;
  49. }
  50. return $this;
  51. }
  52. public function setAudience($all) {
  53. if (strtolower($all) === 'all') {
  54. $this->addAllAudience();
  55. } else {
  56. throw new InvalidArgumentException('Invalid audience value');
  57. }
  58. }
  59. public function addAllAudience() {
  60. $this->audience = "all";
  61. return $this;
  62. }
  63. public function addTag($tag) {
  64. if (is_null($this->tags)) {
  65. $this->tags = array();
  66. }
  67. if (is_array($tag)) {
  68. foreach($tag as $_tag) {
  69. if (!is_string($_tag)) {
  70. throw new InvalidArgumentException("Invalid tag value");
  71. }
  72. if (!in_array($_tag, $this->tags)) {
  73. array_push($this->tags, $_tag);
  74. }
  75. }
  76. } else if (is_string($tag)) {
  77. if (!in_array($tag, $this->tags)) {
  78. array_push($this->tags, $tag);
  79. }
  80. } else {
  81. throw new InvalidArgumentException("Invalid tag value");
  82. }
  83. return $this;
  84. }
  85. public function addTagAnd($tag) {
  86. if (is_null($this->tagAnds)) {
  87. $this->tagAnds = array();
  88. }
  89. if (is_array($tag)) {
  90. foreach($tag as $_tag) {
  91. if (!is_string($_tag)) {
  92. throw new InvalidArgumentException("Invalid tag_and value");
  93. }
  94. if (!in_array($_tag, $this->tagAnds)) {
  95. array_push($this->tagAnds, $_tag);
  96. }
  97. }
  98. } else if (is_string($tag)) {
  99. if (!in_array($tag, $this->tagAnds)) {
  100. array_push($this->tagAnds, $tag);
  101. }
  102. } else {
  103. throw new InvalidArgumentException("Invalid tag_and value");
  104. }
  105. return $this;
  106. }
  107. public function addAlias($alias) {
  108. if (is_null($this->alias)) {
  109. $this->alias = array();
  110. }
  111. if (is_array($alias)) {
  112. foreach($alias as $_alias) {
  113. if (!is_string($_alias)) {
  114. throw new InvalidArgumentException("Invalid alias value");
  115. }
  116. if (!in_array($_alias, $this->alias)) {
  117. array_push($this->alias, $_alias);
  118. }
  119. }
  120. } else if (is_string($alias)) {
  121. if (!in_array($alias, $this->alias)) {
  122. array_push($this->alias, $alias);
  123. }
  124. } else {
  125. throw new InvalidArgumentException("Invalid alias value");
  126. }
  127. return $this;
  128. }
  129. public function addRegistrationId($registrationId) {
  130. if (is_null($this->registrationIds)) {
  131. $this->registrationIds = array();
  132. }
  133. if (is_array($registrationId)) {
  134. foreach($registrationId as $_registrationId) {
  135. if (!is_string($_registrationId)) {
  136. throw new InvalidArgumentException("Invalid registration_id value");
  137. }
  138. if (!in_array($_registrationId, $this->registrationIds)) {
  139. array_push($this->registrationIds, $_registrationId);
  140. }
  141. }
  142. } else if (is_string($registrationId)) {
  143. if (!in_array($registrationId, $this->registrationIds)) {
  144. array_push($this->registrationIds, $registrationId);
  145. }
  146. } else {
  147. throw new InvalidArgumentException("Invalid registration_id value");
  148. }
  149. return $this;
  150. }
  151. public function setNotificationAlert($alert) {
  152. if (!is_string($alert)) {
  153. throw new InvalidArgumentException("Invalid alert value");
  154. }
  155. $this->notificationAlert = $alert;
  156. return $this;
  157. }
  158. public function addIosNotification($alert=null, $sound=null, $badge=null, $content_available=null, $category=null, $extras=null) {
  159. $ios = array();
  160. if (!is_null($alert)) {
  161. if (!is_string($alert) && !is_array($alert)) {
  162. throw new InvalidArgumentException("Invalid ios alert value");
  163. }
  164. $ios['alert'] = $alert;
  165. }
  166. if (!is_null($sound)) {
  167. if (!is_string($sound)) {
  168. throw new InvalidArgumentException("Invalid ios sound value");
  169. }
  170. if ($sound !== JPush::DISABLE_SOUND) {
  171. $ios['sound'] = $sound;
  172. }
  173. } else {
  174. // 默认sound为''
  175. $ios['sound'] = '';
  176. }
  177. if (!is_null($badge)) {
  178. if (is_string($badge) && !preg_match("/^[+-]{1}[0-9]{1,3}$/", $badge)) {
  179. if (!is_int($badge)) {
  180. throw new InvalidArgumentException("Invalid ios badge value");
  181. }
  182. }
  183. if ($badge != JPush::DISABLE_BADGE) {
  184. $ios['badge'] = $badge;
  185. }
  186. } else {
  187. // 默认badge为'+1'
  188. $ios['badge'] = '+1';
  189. }
  190. if (!is_null($content_available)) {
  191. if (!is_bool($content_available)) {
  192. throw new InvalidArgumentException("Invalid ios content-available value");
  193. }
  194. $ios['content-available'] = $content_available;
  195. }
  196. if (!is_null($category)) {
  197. if (!is_string($category)) {
  198. throw new InvalidArgumentException("Invalid ios category value");
  199. }
  200. if (strlen($category)) {
  201. $ios['category'] = $category;
  202. }
  203. }
  204. if (!is_null($extras)) {
  205. if (!is_array($extras)) {
  206. throw new InvalidArgumentException("Invalid ios extras value");
  207. }
  208. if (count($extras) > 0) {
  209. $ios['extras'] = $extras;
  210. }
  211. }
  212. if (count($ios) <= 0) {
  213. throw new InvalidArgumentException("Invalid iOS notification");
  214. }
  215. $this->iosNotification = $ios;
  216. return $this;
  217. }
  218. public function addAndroidNotification($alert=null, $title=null, $builderId=null, $extras=null) {
  219. $android = array();
  220. if (!is_null($alert)) {
  221. if (!is_string($alert)) {
  222. throw new InvalidArgumentException("Invalid android alert value");
  223. }
  224. $android['alert'] = $alert;
  225. }
  226. if (!is_null($title)) {
  227. if(!is_string($title)) {
  228. throw new InvalidArgumentException("Invalid android title value");
  229. }
  230. if(strlen($title) > 0) {
  231. $android['title'] = $title;
  232. }
  233. }
  234. if (!is_null($builderId)) {
  235. if (!is_int($builderId)) {
  236. throw new InvalidArgumentException("Invalid android builder_id value");
  237. }
  238. $android['builder_id'] = $builderId;
  239. }
  240. if (!is_null($extras)) {
  241. if (!is_array($extras)) {
  242. throw new InvalidArgumentException("Invalid android extras value");
  243. }
  244. if (count($extras) > 0) {
  245. $android['extras'] = $extras;
  246. }
  247. }
  248. if (count($android) <= 0) {
  249. throw new InvalidArgumentException("Invalid android notification");
  250. }
  251. $this->androidNotification = $android;
  252. return $this;
  253. }
  254. public function addWinPhoneNotification($alert=null, $title=null, $_open_page=null, $extras=null) {
  255. $winPhone = array();
  256. if (!is_null($alert)) {
  257. if (!is_string($alert)) {
  258. throw new InvalidArgumentException("Invalid winphone notification");
  259. }
  260. $winPhone['alert'] = $alert;
  261. }
  262. if (!is_null($title)) {
  263. if (!is_string($title)) {
  264. throw new InvalidArgumentException("Invalid winphone title notification");
  265. }
  266. if(strlen($title) > 0) {
  267. $winPhone['title'] = $title;
  268. }
  269. }
  270. if (!is_null($_open_page)) {
  271. if (!is_string($_open_page)) {
  272. throw new InvalidArgumentException("Invalid winphone _open_page notification");
  273. }
  274. if (strlen($_open_page) > 0) {
  275. $winPhone['_open_page'] = $_open_page;
  276. }
  277. }
  278. if (!is_null($extras)) {
  279. if (!is_array($extras)) {
  280. throw new InvalidArgumentException("Invalid winphone extras notification");
  281. }
  282. if (count($extras) > 0) {
  283. $winPhone['extras'] = $extras;
  284. }
  285. }
  286. if (count($winPhone) <= 0) {
  287. throw new InvalidArgumentException("Invalid winphone notification");
  288. }
  289. $this->winPhoneNotification = $winPhone;
  290. return $this;
  291. }
  292. public function setSmsMessage($content, $delay_time) {
  293. $sms = array();
  294. if (is_null($content) || !is_string($content) || strlen($content) < 0 || strlen($content) > 480) {
  295. throw new InvalidArgumentException('Invalid sms content, sms content\'s length must in [0, 480]');
  296. } else {
  297. $sms['content'] = $content;
  298. }
  299. if (is_null($delay_time) || !is_int($delay_time) || $delay_time < 0 || $delay_time > 86400) {
  300. throw new InvalidArgumentException('Invalid sms delay time, delay time must in [0, 86400]');
  301. } else {
  302. $sms['delay_time'] = $delay_time;
  303. }
  304. $this->smsMessage = $sms;
  305. return $this;
  306. }
  307. public function setMessage($msg_content, $title=null, $content_type=null, $extras=null) {
  308. $message = array();
  309. if (is_null($msg_content) || !is_string($msg_content)) {
  310. throw new InvalidArgumentException("Invalid message content");
  311. } else {
  312. $message['msg_content'] = $msg_content;
  313. }
  314. if (!is_null($title)) {
  315. if (!is_string($title)) {
  316. throw new InvalidArgumentException("Invalid message title");
  317. }
  318. $message['title'] = $title;
  319. }
  320. if (!is_null($content_type)) {
  321. if (!is_string($content_type)) {
  322. throw new InvalidArgumentException("Invalid message content type");
  323. }
  324. $message["content_type"] = $content_type;
  325. }
  326. if (!is_null($extras)) {
  327. if (!is_array($extras)) {
  328. throw new InvalidArgumentException("Invalid message extras");
  329. }
  330. if (count($extras) > 0) {
  331. $message['extras'] = $extras;
  332. }
  333. }
  334. $this->message = $message;
  335. return $this;
  336. }
  337. public function setOptions($sendno=null, $time_to_live=null, $override_msg_id=null, $apns_production=null, $big_push_duration=null) {
  338. $options = array();
  339. if (!is_null($sendno)) {
  340. if (!is_int($sendno)) {
  341. throw new InvalidArgumentException('Invalid option sendno');
  342. }
  343. $options['sendno'] = $sendno;
  344. } else {
  345. $options['sendno'] = $this->generateSendno();
  346. }
  347. if (!is_null($time_to_live)) {
  348. if (!is_int($time_to_live) || $time_to_live < 0 || $time_to_live > 864000) {
  349. throw new InvalidArgumentException('Invalid option time to live, it must be a int and in [0, 864000]');
  350. }
  351. $options['time_to_live'] = $time_to_live;
  352. }
  353. if (!is_null($override_msg_id)) {
  354. if (!is_long($override_msg_id)) {
  355. throw new InvalidArgumentException('Invalid option override msg id');
  356. }
  357. $options['override_msg_id'] = $override_msg_id;
  358. }
  359. if (!is_null($apns_production)) {
  360. if (!is_bool($apns_production)) {
  361. throw new InvalidArgumentException('Invalid option apns production');
  362. }
  363. $options['apns_production'] = $apns_production;
  364. } else {
  365. $options['apns_production'] = false;
  366. }
  367. if (!is_null($big_push_duration)) {
  368. if (!is_int($big_push_duration) || $big_push_duration < 0 || $big_push_duration > 1440) {
  369. throw new InvalidArgumentException('Invalid option big push duration, it must be a int and in [0, 1440]');
  370. }
  371. $options['big_push_duration'] = $big_push_duration;
  372. }
  373. $this->options = $options;
  374. return $this;
  375. }
  376. public function build() {
  377. $payload = array();
  378. // validate platform
  379. if (is_null($this->platform)) {
  380. throw new InvalidArgumentException("platform must be set");
  381. }
  382. $payload["platform"] = $this->platform;
  383. // validate audience
  384. $audience = array();
  385. if (!is_null($this->tags)) {
  386. $audience["tag"] = $this->tags;
  387. }
  388. if (!is_null($this->tagAnds)) {
  389. $audience["tag_and"] = $this->tagAnds;
  390. }
  391. if (!is_null($this->alias)) {
  392. $audience["alias"] = $this->alias;
  393. }
  394. if (!is_null($this->registrationIds)) {
  395. $audience["registration_id"] = $this->registrationIds;
  396. }
  397. if (is_null($this->audience) && count($audience) <= 0) {
  398. throw new InvalidArgumentException("audience must be set");
  399. } else if (!is_null($this->audience) && count($audience) > 0) {
  400. throw new InvalidArgumentException("you can't add tags/alias/registration_id/tag_and when audience='all'");
  401. } else if (is_null($this->audience)) {
  402. $payload["audience"] = $audience;
  403. } else {
  404. $payload["audience"] = $this->audience;
  405. }
  406. // validate notification
  407. $notification = array();
  408. if (!is_null($this->notificationAlert)) {
  409. $notification['alert'] = $this->notificationAlert;
  410. }
  411. if (!is_null($this->androidNotification)) {
  412. $notification['android'] = $this->androidNotification;
  413. if (is_null($this->androidNotification['alert'])) {
  414. if (is_null($this->notificationAlert)) {
  415. throw new InvalidArgumentException("Android alert can not be null");
  416. } else {
  417. $notification['android']['alert'] = $this->notificationAlert;
  418. }
  419. }
  420. }
  421. if (!is_null($this->iosNotification)) {
  422. $notification['ios'] = $this->iosNotification;
  423. if (is_null($this->iosNotification['alert'])) {
  424. if (is_null($this->notificationAlert)) {
  425. throw new InvalidArgumentException("iOS alert can not be null");
  426. } else {
  427. $notification['ios']['alert'] = $this->notificationAlert;
  428. }
  429. }
  430. }
  431. if (!is_null($this->winPhoneNotification)) {
  432. $notification['winphone'] = $this->winPhoneNotification;
  433. if (is_null($this->winPhoneNotification['alert'])) {
  434. if (is_null($this->winPhoneNotification)) {
  435. throw new InvalidArgumentException("WinPhone alert can not be null");
  436. } else {
  437. $notification['winphone']['alert'] = $this->notificationAlert;
  438. }
  439. }
  440. }
  441. if (count($notification) > 0) {
  442. $payload['notification'] = $notification;
  443. }
  444. if (count($this->message) > 0) {
  445. $payload['message'] = $this->message;
  446. }
  447. if (!array_key_exists('notification', $payload) && !array_key_exists('message', $payload)) {
  448. throw new InvalidArgumentException('notification and message can not all be null');
  449. }
  450. if (count($this->smsMessage)) {
  451. $payload['sms_message'] = $this->smsMessage;
  452. }
  453. if (count($this->options) > 0) {
  454. $payload['options'] = $this->options;
  455. } else {
  456. $this->setOptions();
  457. $payload['options'] = $this->options;
  458. }
  459. return $payload;
  460. }
  461. public function toJSON() {
  462. $payload = $this->build();
  463. return json_encode($payload);
  464. }
  465. public function printJSON() {
  466. echo $this->toJSON();
  467. return $this;
  468. }
  469. public function send() {
  470. $response = $this->client->_request(PushPayload::PUSH_URL, JPush::HTTP_POST, $this->toJSON());
  471. return $this->__processResp($response);
  472. }
  473. public function validate() {
  474. $response = $this->client->_request(PushPayload::PUSH_VALIDATE_URL, JPush::HTTP_POST, $this->toJSON());
  475. return $this->__processResp($response);
  476. }
  477. private function __processResp($response) {
  478. if($response['http_code'] === 200) {
  479. $body = array();
  480. $body['data'] = json_decode($response['body']);
  481. $headers = $response['headers'];
  482. if (is_array($headers)) {
  483. $limit = array();
  484. foreach (self::$LIMIT_KEYS as $key => $value) {
  485. if (array_key_exists($key, $headers)) {
  486. $limit[$value] = $headers[$key];
  487. }
  488. }
  489. if (count($limit) > 0) {
  490. $body['limit'] = (object)$limit;
  491. }
  492. return (object)$body;
  493. }
  494. return $body;
  495. } else {
  496. throw new APIRequestException($response);
  497. }
  498. }
  499. private function generateSendno() {
  500. return rand(100000, 4294967294);
  501. }
  502. }