DateTimeResult.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. namespace Aws\Api;
  3. use Aws\Api\Parser\Exception\ParserException;
  4. use DateTime;
  5. use DateTimeZone;
  6. use Exception;
  7. /**
  8. * DateTime overrides that make DateTime work more seamlessly as a string,
  9. * with JSON documents, and with JMESPath.
  10. */
  11. class DateTimeResult extends \DateTime implements \JsonSerializable
  12. {
  13. /**
  14. * Create a new DateTimeResult from a unix timestamp.
  15. * The Unix epoch (or Unix time or POSIX time or Unix
  16. * timestamp) is the number of seconds that have elapsed since
  17. * January 1, 1970 (midnight UTC/GMT).
  18. *
  19. * @return DateTimeResult
  20. * @throws Exception
  21. */
  22. public static function fromEpoch($unixTimestamp)
  23. {
  24. if (!is_numeric($unixTimestamp)) {
  25. throw new ParserException('Invalid timestamp value passed to DateTimeResult::fromEpoch');
  26. }
  27. // PHP 5.5 does not support sub-second precision
  28. if (\PHP_VERSION_ID < 56000) {
  29. return new self(gmdate('c', $unixTimestamp));
  30. }
  31. $decimalSeparator = isset(localeconv()['decimal_point']) ? localeconv()['decimal_point'] : ".";
  32. $formatString = "U" . $decimalSeparator . "u";
  33. $dateTime = DateTime::createFromFormat(
  34. $formatString,
  35. sprintf('%0.6f', $unixTimestamp),
  36. new DateTimeZone('UTC')
  37. );
  38. if (false === $dateTime) {
  39. throw new ParserException('Invalid timestamp value passed to DateTimeResult::fromEpoch');
  40. }
  41. return new self(
  42. $dateTime->format('Y-m-d H:i:s.u'),
  43. new DateTimeZone('UTC')
  44. );
  45. }
  46. /**
  47. * @return DateTimeResult
  48. */
  49. public static function fromISO8601($iso8601Timestamp)
  50. {
  51. if (is_numeric($iso8601Timestamp) || !is_string($iso8601Timestamp)) {
  52. throw new ParserException('Invalid timestamp value passed to DateTimeResult::fromISO8601');
  53. }
  54. return new DateTimeResult($iso8601Timestamp);
  55. }
  56. /**
  57. * Create a new DateTimeResult from an unknown timestamp.
  58. *
  59. * @return DateTimeResult
  60. * @throws Exception
  61. */
  62. public static function fromTimestamp($timestamp, $expectedFormat = null)
  63. {
  64. if (empty($timestamp)) {
  65. return self::fromEpoch(0);
  66. }
  67. if (!(is_string($timestamp) || is_numeric($timestamp))) {
  68. throw new ParserException('Invalid timestamp value passed to DateTimeResult::fromTimestamp');
  69. }
  70. try {
  71. if ($expectedFormat == 'iso8601') {
  72. try {
  73. return self::fromISO8601($timestamp);
  74. } catch (Exception $exception) {
  75. return self::fromEpoch($timestamp);
  76. }
  77. } else if ($expectedFormat == 'unixTimestamp') {
  78. try {
  79. return self::fromEpoch($timestamp);
  80. } catch (Exception $exception) {
  81. return self::fromISO8601($timestamp);
  82. }
  83. } else if (\Aws\is_valid_epoch($timestamp)) {
  84. return self::fromEpoch($timestamp);
  85. }
  86. return self::fromISO8601($timestamp);
  87. } catch (Exception $exception) {
  88. throw new ParserException('Invalid timestamp value passed to DateTimeResult::fromTimestamp');
  89. }
  90. }
  91. /**
  92. * Serialize the DateTimeResult as an ISO 8601 date string.
  93. *
  94. * @return string
  95. */
  96. public function __toString()
  97. {
  98. return $this->format('c');
  99. }
  100. /**
  101. * Serialize the date as an ISO 8601 date when serializing as JSON.
  102. *
  103. * @return string
  104. */
  105. #[\ReturnTypeWillChange]
  106. public function jsonSerialize()
  107. {
  108. return (string) $this;
  109. }
  110. }