1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 21:22:40 +00:00
Arsse/lib/Misc/Date.php

93 lines
4.1 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace JKingWeb\Arsse\Misc;
class Date {
const FORMAT = [ // in out
'iso8601' => ["!Y-m-d\TH:i:s", "Y-m-d\TH:i:s\Z" ], // NOTE: ISO 8601 dates require special input processing because of varying formats for timezone offsets
'iso8601m' => ["!Y-m-d\TH:i:s.u", "Y-m-d\TH:i:s.u\Z" ], // NOTE: ISO 8601 dates require special input processing because of varying formats for timezone offsets
'microtime' => ["U.u", "0.u00 U" ], // NOTE: the actual input format at the user level matches the output format; pre-processing is required for PHP not to fail
'http' => ["!D, d M Y H:i:s \G\M\T", "D, d M Y H:i:s \G\M\T"],
'sql' => ["!Y-m-d H:i:s", "Y-m-d H:i:s" ],
'date' => ["!Y-m-d", "Y-m-d" ],
'time' => ["!H:i:s", "H:i:s" ],
'unix' => ["U", "U" ],
'float' => ["U.u", "U.u" ],
];
2017-08-29 14:50:31 +00:00
public static function transform($date, string $outFormat = null, string $inFormat = null, bool $inLocal = false) {
$date = self::normalize($date, $inFormat, $inLocal);
2017-08-29 14:50:31 +00:00
if (is_null($date) || is_null($outFormat)) {
2017-07-21 02:40:09 +00:00
return $date;
}
$outFormat = strtolower($outFormat);
2017-08-29 14:50:31 +00:00
if ($outFormat=="unix") {
2017-07-21 02:40:09 +00:00
return $date->getTimestamp();
}
switch ($outFormat) {
case 'http': $f = "D, d M Y H:i:s \G\M\T"; break;
case 'iso8601': $f = "Y-m-d\TH:i:s"; break;
case 'sql': $f = "Y-m-d H:i:s"; break;
case 'date': $f = "Y-m-d"; break;
case 'time': $f = "H:i:s"; break;
default: $f = $outFormat; break;
}
return $date->format($f);
}
2017-08-29 14:50:31 +00:00
public static function normalize($date, string $inFormat = null, bool $inLocal = false) {
if ($date instanceof \DateTimeInterface) {
return $date;
2017-08-29 14:50:31 +00:00
} elseif (is_numeric($date)) {
$time = (int) $date;
2017-08-29 14:50:31 +00:00
} elseif ($date===null) {
return null;
2017-08-29 14:50:31 +00:00
} elseif (is_string($date)) {
2017-07-05 13:09:38 +00:00
try {
$tz = (!$inLocal) ? new \DateTimeZone("UTC") : null;
2017-08-29 14:50:31 +00:00
if (!is_null($inFormat)) {
switch ($inFormat) {
case 'http': $f = "D, d M Y H:i:s \G\M\T"; break;
case 'iso8601': $f = "Y-m-d\TH:i:sP"; break;
case 'sql': $f = "Y-m-d H:i:s"; break;
case 'date': $f = "Y-m-d"; break;
case 'time': $f = "H:i:s"; break;
default: $f = $inFormat; break;
}
return \DateTime::createFromFormat("!".$f, $date, $tz);
} else {
return new \DateTime($date, $tz);
}
2017-08-29 14:50:31 +00:00
} catch (\Throwable $e) {
2017-07-05 13:09:38 +00:00
return null;
}
2017-08-29 14:50:31 +00:00
} elseif (is_bool($date)) {
return null;
} else {
$time = (int) $date;
}
$tz = (!$inLocal) ? new \DateTimeZone("UTC") : null;
$d = new \DateTime("now", $tz);
$d->setTimestamp($time);
return $d;
}
2017-08-18 02:36:15 +00:00
2017-08-29 14:50:31 +00:00
public static function add(string $interval, $date = null): \DateTimeInterface {
2017-08-18 02:36:15 +00:00
return self::modify("add", $interval, $date);
}
2017-08-29 14:50:31 +00:00
public static function sub(string $interval, $date = null): \DateTimeInterface {
2017-08-18 02:36:15 +00:00
return self::modify("sub", $interval, $date);
}
2017-08-29 14:50:31 +00:00
protected static function modify(string $func, string $interval, $date = null): \DateTimeInterface {
2017-08-18 02:36:15 +00:00
$date = self::normalize($date ?? time());
2017-08-29 14:50:31 +00:00
if ($date instanceof \DateTimeImmutable) {
2017-08-18 02:36:15 +00:00
return $date->$func(new \DateInterval($interval));
} else {
$date->$func(new \DateInterval($interval));
return $date;
}
}
2017-08-29 14:50:31 +00:00
}