DevicePayload.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <?php
  2. class DevicePayload {
  3. private static $LIMIT_KEYS = array('X-Rate-Limit-Limit'=>'rateLimitLimit', 'X-Rate-Limit-Remaining'=>'rateLimitRemaining', 'X-Rate-Limit-Reset'=>'rateLimitReset');
  4. const DEVICE_URL = 'https://device.jpush.cn/v3/devices/';
  5. const DEVICE_STATUS_URL = 'https://device.jpush.cn/v3/devices/status/';
  6. const TAG_URL = 'https://device.jpush.cn/v3/tags/';
  7. const IS_IN_TAG_URL = 'https://device.jpush.cn/v3/tags/{tag}/registration_ids/{registration_id}';
  8. const ALIAS_URL = 'https://device.jpush.cn/v3/aliases/';
  9. private $client;
  10. /**
  11. * DevicePayload constructor.
  12. * @param $client JPush
  13. */
  14. public function __construct($client)
  15. {
  16. $this->client = $client;
  17. }
  18. public function getDevices($registrationId) {
  19. $url = DevicePayload::DEVICE_URL . $registrationId;
  20. $response = $this->client->_request($url, JPush::HTTP_GET);
  21. return $this->__processResp($response);
  22. }
  23. public function updateDevice($registrationId, $alias = null, $mobile=null, $addTags = null, $removeTags = null) {
  24. $payload = array();
  25. if (!is_string($registrationId)) {
  26. throw new InvalidArgumentException('Invalid registration_id');
  27. }
  28. $aliasIsNull = is_null($alias);
  29. $mobileIsNull = is_null($mobile);
  30. $addTagsIsNull = is_null($addTags);
  31. $removeTagsIsNull = is_null($removeTags);
  32. if ($aliasIsNull && $addTagsIsNull && $removeTagsIsNull && $mobileIsNull) {
  33. throw new InvalidArgumentException("alias, addTags, removeTags not all null");
  34. }
  35. if (!$aliasIsNull) {
  36. if (is_string($alias)) {
  37. $payload['alias'] = $alias;
  38. } else {
  39. throw new InvalidArgumentException("Invalid alias string");
  40. }
  41. }
  42. if (!$mobileIsNull) {
  43. if (is_string($mobile)) {
  44. $payload['mobile'] = $mobile;
  45. } else {
  46. throw new InvalidArgumentException("Invalid mobile string");
  47. }
  48. }
  49. $tags = array();
  50. if (!$addTagsIsNull) {
  51. if (is_array($addTags)) {
  52. $tags['add'] = $addTags;
  53. } else {
  54. throw new InvalidArgumentException("Invalid addTags array");
  55. }
  56. }
  57. if (!$removeTagsIsNull) {
  58. if (is_array($removeTags)) {
  59. $tags['remove'] = $removeTags;
  60. } else {
  61. throw new InvalidArgumentException("Invalid removeTags array");
  62. }
  63. }
  64. if (count($tags) > 0) {
  65. $payload['tags'] = $tags;
  66. }
  67. $url = DevicePayload::DEVICE_URL . $registrationId;
  68. $response = $this->client->_request($url, JPush::HTTP_POST, json_encode($payload));
  69. return $this->__processResp($response);
  70. }
  71. public function getTags() {
  72. $response = $this->client->_request(DevicePayload::TAG_URL, JPush::HTTP_GET);
  73. return $this->__processResp($response);
  74. }
  75. public function isDeviceInTag($registrationId, $tag) {
  76. if (!is_string($registrationId)) {
  77. throw new InvalidArgumentException("Invalid registration_id");
  78. }
  79. if (!is_string($tag)) {
  80. throw new InvalidArgumentException("Invalid tag");
  81. }
  82. $url = str_replace('{tag}', $tag, self::IS_IN_TAG_URL);
  83. $url = str_replace('{registration_id}', $registrationId, $url);
  84. $response = $this->client->_request($url, JPush::HTTP_GET);
  85. return $this->__processResp($response);
  86. }
  87. public function updateTag($tag, $addDevices = null, $removeDevices = null) {
  88. if (!is_string($tag)) {
  89. throw new InvalidArgumentException("Invalid tag");
  90. }
  91. $addDevicesIsNull = is_null($addDevices);
  92. $removeDevicesIsNull = is_null($removeDevices);
  93. if ($addDevicesIsNull && $removeDevicesIsNull) {
  94. throw new InvalidArgumentException("Either or both addDevices and removeDevices must be set.");
  95. }
  96. $registrationId = array();
  97. if (!$addDevicesIsNull) {
  98. if (is_array($addDevices)) {
  99. $registrationId['add'] = $addDevices;
  100. } else {
  101. throw new InvalidArgumentException("Invalid addDevices");
  102. }
  103. }
  104. if (!$removeDevicesIsNull) {
  105. if (is_array($removeDevices)) {
  106. $registrationId['remove'] = $removeDevices;
  107. } else {
  108. throw new InvalidArgumentException("Invalid removeDevices");
  109. }
  110. }
  111. $url = DevicePayload::TAG_URL . $tag;
  112. $payload = array('registration_ids'=>$registrationId);
  113. $response = $this->client->_request($url, JPush::HTTP_POST, json_encode($payload));
  114. return $this->__processResp($response);
  115. }
  116. public function deleteTag($tag) {
  117. if (!is_string($tag)) {
  118. throw new InvalidArgumentException("Invalid tag");
  119. }
  120. $url = DevicePayload::TAG_URL . $tag;
  121. $response = $this->client->_request($url, JPush::HTTP_DELETE);
  122. return $this->__processResp($response);
  123. }
  124. public function getAliasDevices($alias, $platform = null) {
  125. if (!is_string($alias)) {
  126. throw new InvalidArgumentException("Invalid alias");
  127. }
  128. $url = self::ALIAS_URL . $alias;
  129. if (!is_null($platform)) {
  130. if (is_array($platform)) {
  131. $isFirst = true;
  132. foreach($platform as $item) {
  133. if ($isFirst) {
  134. $url = $url . '?platform=' . $item;
  135. $isFirst = false;
  136. } else {
  137. $url = $url . ',' . $item;
  138. }
  139. }
  140. } else if (is_string($platform)) {
  141. $url = $url . '?platform=' . $platform;
  142. } else {
  143. throw new InvalidArgumentException("Invalid platform");
  144. }
  145. }
  146. $response = $this->client->_request($url, JPush::HTTP_GET);
  147. return $this->__processResp($response);
  148. }
  149. public function deleteAlias($alias) {
  150. if (!is_string($alias)) {
  151. throw new InvalidArgumentException("Invalid alias");
  152. }
  153. $url = self::ALIAS_URL . $alias;
  154. $response = $this->client->_request($url, JPush::HTTP_DELETE);
  155. return $this->__processResp($response);
  156. }
  157. public function getDevicesStatus($registrationId) {
  158. if (!is_array($registrationId) && !is_string($registrationId)) {
  159. throw new InvalidArgumentException('Invalid registration_id');
  160. }
  161. if (is_string($registrationId)) {
  162. $registrationId = explode(',', $registrationId);
  163. }
  164. $payload = array();
  165. if (count($registrationId) <= 0) {
  166. throw new InvalidArgumentException('Invalid registration_id');
  167. }
  168. $payload['registration_ids'] = $registrationId;
  169. $response = $this->client->_request(DevicePayload::DEVICE_STATUS_URL, JPush::HTTP_POST, json_encode($payload));
  170. if($response['http_code'] === 200) {
  171. $body = array();
  172. echo $response['body'];
  173. $body['data'] = (array)json_decode($response['body']);
  174. $headers = $response['headers'];
  175. if (is_array($headers)) {
  176. $limit = array();
  177. $limit['rateLimitLimit'] = $headers['X-Rate-Limit-Limit'];
  178. $limit['rateLimitRemaining'] = $headers['X-Rate-Limit-Remaining'];
  179. $limit['rateLimitReset'] = $headers['X-Rate-Limit-Reset'];
  180. $body['limit'] = (object)$limit;
  181. return (object)$body;
  182. }
  183. return $body;
  184. } else {
  185. throw new APIRequestException($response);
  186. }
  187. }
  188. private function __processResp($response) {
  189. if($response['http_code'] === 200) {
  190. $body = array();
  191. $data = json_decode($response['body']);
  192. if (!is_null($data)) {
  193. $body['data'] = json_decode($response['body']);
  194. }
  195. $headers = $response['headers'];
  196. if (is_array($headers)) {
  197. $limit = array();
  198. foreach (self::$LIMIT_KEYS as $key => $value) {
  199. if (array_key_exists($key, $headers)) {
  200. $limit[$value] = $headers[$key];
  201. }
  202. }
  203. if (count($limit) > 0) {
  204. $body['limit'] = (object)$limit;
  205. }
  206. return (object)$body;
  207. }
  208. return $body;
  209. } else {
  210. throw new APIRequestException($response);
  211. }
  212. }
  213. }