JPushException.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /**
  3. * JPush Exception
  4. * User: xiezefan
  5. * Date: 15/12/18
  6. * Time: 下午3:14
  7. */
  8. class APIConnectionException extends Exception {
  9. public $isResponseTimeout;
  10. function __construct($message, $isResponseTimeout = false) {
  11. parent::__construct($message);
  12. $this->isResponseTimeout = $isResponseTimeout;
  13. }
  14. }
  15. class APIRequestException extends Exception {
  16. public $httpCode;
  17. public $code;
  18. public $message;
  19. public $response;
  20. public $rateLimitLimit;
  21. public $rateLimitRemaining;
  22. public $rateLimitReset;
  23. private static $expected_keys = array('code', 'message');
  24. function __construct($response){
  25. $this->response = $response['body'];
  26. $this->httpCode = $response['http_code'];
  27. $payload = json_decode($response['body'], true);
  28. if ($payload != null) {
  29. $error = $payload['error'];
  30. if (!is_null($error)) {
  31. foreach (self::$expected_keys as $key) {
  32. if (array_key_exists($key, $error)) {
  33. $this->$key = $error[$key];
  34. }
  35. }
  36. } else {
  37. foreach (self::$expected_keys as $key) {
  38. if (array_key_exists($key, $payload)) {
  39. $this->$key = $payload[$key];
  40. }
  41. }
  42. }
  43. }
  44. $headers = $response['headers'];
  45. if (is_array($headers)) {
  46. $this->rateLimitLimit = $headers['X-Rate-Limit-Limit'];
  47. $this->rateLimitRemaining = $headers['X-Rate-Limit-Remaining'];
  48. $this->rateLimitReset = $headers['X-Rate-Limit-Reset'];
  49. }
  50. }
  51. }