GetLifecycleResult.php 936 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace OSS\Result;
  3. use OSS\Model\LifecycleConfig;
  4. /**
  5. * Class GetLifecycleResult
  6. * @package OSS\Result
  7. */
  8. class GetLifecycleResult extends Result
  9. {
  10. /**
  11. * Parse the LifecycleConfig object from the response
  12. *
  13. * @return LifecycleConfig
  14. */
  15. protected function parseDataFromResponse()
  16. {
  17. $content = $this->rawResponse->body;
  18. $config = new LifecycleConfig();
  19. $config->parseFromXml($content);
  20. return $config;
  21. }
  22. /**
  23. * Check if the response is OK according to the http status.
  24. * [200-299]: OK, and the LifecycleConfig could be got; [404] The Life cycle config is not found.
  25. *
  26. * @return bool
  27. */
  28. protected function isResponseOk()
  29. {
  30. $status = $this->rawResponse->status;
  31. if ((int)(intval($status) / 100) == 2 || (int)(intval($status)) === 404) {
  32. return true;
  33. }
  34. return false;
  35. }
  36. }