2011-01-31 03:24:57 +01:00
|
|
|
<?php
|
|
|
|
|
2012-08-15 19:45:06 +02:00
|
|
|
function phabricator_date($epoch, PhabricatorUser $user) {
|
2012-04-02 23:45:07 +02:00
|
|
|
return phabricator_format_local_time(
|
Improve time localization code
Summary:
- We throw on a missing date right now, in the DateTime constructor. This can
happen in reasonable cases and this is display code, so handle it more
gracefully (see T520).
- This stuff is a little slow and we sometimes render many hundreds of dates
per page. I've been seeing it in profiles on and off. Memoize timezones to
improve performance.
- Some minor code duplication that would have become less-minor with the
constructor change, consolidate the logic.
- Add some unit tests and a little documentation.
Test Plan:
- Ran unit tests.
- Profiled 1,000 calls to phabricator_datetime(), cost dropped from ~49ms to
~19ms with addition of memoization. This is still slower than I'd like but I
don't think there's an easy way to squeeze it down further.
Reviewers: ajtrichards, jungejason, nh, tuomaspelkonen, aran
Reviewed By: ajtrichards
CC: aran, ajtrichards, epriestley
Differential Revision: 966
2011-09-27 18:03:55 +02:00
|
|
|
$epoch,
|
|
|
|
$user,
|
2015-01-04 20:37:48 +01:00
|
|
|
phutil_date_format($epoch));
|
2011-06-18 22:07:02 +02:00
|
|
|
}
|
|
|
|
|
2012-03-28 03:16:59 +02:00
|
|
|
function phabricator_relative_date($epoch, $user, $on = false) {
|
|
|
|
static $today;
|
|
|
|
static $yesterday;
|
|
|
|
|
|
|
|
if (!$today || !$yesterday) {
|
|
|
|
$now = time();
|
|
|
|
$today = phabricator_date($now, $user);
|
|
|
|
$yesterday = phabricator_date($now - 86400, $user);
|
|
|
|
}
|
|
|
|
|
|
|
|
$date = phabricator_date($epoch, $user);
|
|
|
|
|
|
|
|
if ($date === $today) {
|
|
|
|
return 'today';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($date === $yesterday) {
|
|
|
|
return 'yesterday';
|
|
|
|
}
|
|
|
|
|
|
|
|
return (($on ? 'on ' : '').$date);
|
|
|
|
}
|
|
|
|
|
2011-06-18 22:07:02 +02:00
|
|
|
function phabricator_time($epoch, $user) {
|
2016-06-03 02:12:15 +02:00
|
|
|
$time_key = PhabricatorTimeFormatSetting::SETTINGKEY;
|
2012-04-02 23:45:07 +02:00
|
|
|
return phabricator_format_local_time(
|
Improve time localization code
Summary:
- We throw on a missing date right now, in the DateTime constructor. This can
happen in reasonable cases and this is display code, so handle it more
gracefully (see T520).
- This stuff is a little slow and we sometimes render many hundreds of dates
per page. I've been seeing it in profiles on and off. Memoize timezones to
improve performance.
- Some minor code duplication that would have become less-minor with the
constructor change, consolidate the logic.
- Add some unit tests and a little documentation.
Test Plan:
- Ran unit tests.
- Profiled 1,000 calls to phabricator_datetime(), cost dropped from ~49ms to
~19ms with addition of memoization. This is still slower than I'd like but I
don't think there's an easy way to squeeze it down further.
Reviewers: ajtrichards, jungejason, nh, tuomaspelkonen, aran
Reviewed By: ajtrichards
CC: aran, ajtrichards, epriestley
Differential Revision: 966
2011-09-27 18:03:55 +02:00
|
|
|
$epoch,
|
|
|
|
$user,
|
2016-06-03 02:12:15 +02:00
|
|
|
$user->getUserSetting($time_key));
|
2011-06-18 22:07:02 +02:00
|
|
|
}
|
|
|
|
|
2012-06-29 03:08:59 +02:00
|
|
|
function phabricator_datetime($epoch, $user) {
|
2016-06-03 02:12:15 +02:00
|
|
|
$time_key = PhabricatorTimeFormatSetting::SETTINGKEY;
|
2012-04-02 23:45:07 +02:00
|
|
|
return phabricator_format_local_time(
|
Improve time localization code
Summary:
- We throw on a missing date right now, in the DateTime constructor. This can
happen in reasonable cases and this is display code, so handle it more
gracefully (see T520).
- This stuff is a little slow and we sometimes render many hundreds of dates
per page. I've been seeing it in profiles on and off. Memoize timezones to
improve performance.
- Some minor code duplication that would have become less-minor with the
constructor change, consolidate the logic.
- Add some unit tests and a little documentation.
Test Plan:
- Ran unit tests.
- Profiled 1,000 calls to phabricator_datetime(), cost dropped from ~49ms to
~19ms with addition of memoization. This is still slower than I'd like but I
don't think there's an easy way to squeeze it down further.
Reviewers: ajtrichards, jungejason, nh, tuomaspelkonen, aran
Reviewed By: ajtrichards
CC: aran, ajtrichards, epriestley
Differential Revision: 966
2011-09-27 18:03:55 +02:00
|
|
|
$epoch,
|
|
|
|
$user,
|
2013-09-02 21:40:04 +02:00
|
|
|
pht('%s, %s',
|
2015-01-04 20:37:48 +01:00
|
|
|
phutil_date_format($epoch),
|
2016-06-03 02:12:15 +02:00
|
|
|
$user->getUserSetting($time_key)));
|
2013-09-02 21:40:04 +02:00
|
|
|
}
|
|
|
|
|
2017-04-10 16:44:58 +02:00
|
|
|
function phabricator_datetimezone($epoch, $user) {
|
|
|
|
$datetime = phabricator_datetime($epoch, $user);
|
|
|
|
$timezone = phabricator_format_local_time($epoch, $user, 'T');
|
|
|
|
|
|
|
|
// Some obscure timezones just render as "+03" or "-09". Make these render
|
|
|
|
// as "UTC+3" instead.
|
|
|
|
if (preg_match('/^[+-]/', $timezone)) {
|
|
|
|
$timezone = (int)trim($timezone, '+');
|
|
|
|
if ($timezone < 0) {
|
|
|
|
$timezone = pht('UTC-%s', $timezone);
|
|
|
|
} else {
|
|
|
|
$timezone = pht('UTC+%s', $timezone);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pht('%s (%s)', $datetime, $timezone);
|
|
|
|
}
|
|
|
|
|
Improve time localization code
Summary:
- We throw on a missing date right now, in the DateTime constructor. This can
happen in reasonable cases and this is display code, so handle it more
gracefully (see T520).
- This stuff is a little slow and we sometimes render many hundreds of dates
per page. I've been seeing it in profiles on and off. Memoize timezones to
improve performance.
- Some minor code duplication that would have become less-minor with the
constructor change, consolidate the logic.
- Add some unit tests and a little documentation.
Test Plan:
- Ran unit tests.
- Profiled 1,000 calls to phabricator_datetime(), cost dropped from ~49ms to
~19ms with addition of memoization. This is still slower than I'd like but I
don't think there's an easy way to squeeze it down further.
Reviewers: ajtrichards, jungejason, nh, tuomaspelkonen, aran
Reviewed By: ajtrichards
CC: aran, ajtrichards, epriestley
Differential Revision: 966
2011-09-27 18:03:55 +02:00
|
|
|
/**
|
2012-04-02 23:45:07 +02:00
|
|
|
* This function does not usually need to be called directly. Instead, call
|
Improve time localization code
Summary:
- We throw on a missing date right now, in the DateTime constructor. This can
happen in reasonable cases and this is display code, so handle it more
gracefully (see T520).
- This stuff is a little slow and we sometimes render many hundreds of dates
per page. I've been seeing it in profiles on and off. Memoize timezones to
improve performance.
- Some minor code duplication that would have become less-minor with the
constructor change, consolidate the logic.
- Add some unit tests and a little documentation.
Test Plan:
- Ran unit tests.
- Profiled 1,000 calls to phabricator_datetime(), cost dropped from ~49ms to
~19ms with addition of memoization. This is still slower than I'd like but I
don't think there's an easy way to squeeze it down further.
Reviewers: ajtrichards, jungejason, nh, tuomaspelkonen, aran
Reviewed By: ajtrichards
CC: aran, ajtrichards, epriestley
Differential Revision: 966
2011-09-27 18:03:55 +02:00
|
|
|
* @{function:phabricator_date}, @{function:phabricator_time}, or
|
|
|
|
* @{function:phabricator_datetime}.
|
|
|
|
*
|
|
|
|
* @param int Unix epoch timestamp.
|
|
|
|
* @param PhabricatorUser User viewing the timestamp.
|
|
|
|
* @param string Date format, as per DateTime class.
|
|
|
|
* @return string Formatted, local date/time.
|
|
|
|
*/
|
2012-04-02 23:45:07 +02:00
|
|
|
function phabricator_format_local_time($epoch, $user, $format) {
|
Improve time localization code
Summary:
- We throw on a missing date right now, in the DateTime constructor. This can
happen in reasonable cases and this is display code, so handle it more
gracefully (see T520).
- This stuff is a little slow and we sometimes render many hundreds of dates
per page. I've been seeing it in profiles on and off. Memoize timezones to
improve performance.
- Some minor code duplication that would have become less-minor with the
constructor change, consolidate the logic.
- Add some unit tests and a little documentation.
Test Plan:
- Ran unit tests.
- Profiled 1,000 calls to phabricator_datetime(), cost dropped from ~49ms to
~19ms with addition of memoization. This is still slower than I'd like but I
don't think there's an easy way to squeeze it down further.
Reviewers: ajtrichards, jungejason, nh, tuomaspelkonen, aran
Reviewed By: ajtrichards
CC: aran, ajtrichards, epriestley
Differential Revision: 966
2011-09-27 18:03:55 +02:00
|
|
|
if (!$epoch) {
|
|
|
|
// If we're missing date information for something, the DateTime class will
|
|
|
|
// throw an exception when we try to construct an object. Since this is a
|
|
|
|
// display function, just return an empty string.
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$user_zone = $user->getTimezoneIdentifier();
|
|
|
|
|
|
|
|
static $zones = array();
|
|
|
|
if (empty($zones[$user_zone])) {
|
|
|
|
$zones[$user_zone] = new DateTimeZone($user_zone);
|
|
|
|
}
|
|
|
|
$zone = $zones[$user_zone];
|
|
|
|
|
|
|
|
// NOTE: Although DateTime takes a second DateTimeZone parameter to its
|
|
|
|
// constructor, it ignores it if the date string includes timezone
|
|
|
|
// information. Further, it treats epoch timestamps ("@946684800") as having
|
|
|
|
// a UTC timezone. Set the timezone explicitly after constructing the object.
|
2012-04-18 17:02:08 +02:00
|
|
|
try {
|
|
|
|
$date = new DateTime('@'.$epoch);
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
// NOTE: DateTime throws an empty exception if the format is invalid,
|
|
|
|
// just replace it with a useful one.
|
|
|
|
throw new Exception(
|
2013-03-02 00:37:32 +01:00
|
|
|
pht("Construction of a DateTime() with epoch '%s' ".
|
|
|
|
"raised an exception.", $epoch));
|
2012-04-18 17:02:08 +02:00
|
|
|
}
|
|
|
|
|
2017-02-18 10:24:56 +01:00
|
|
|
$date->setTimezone($zone);
|
Improve time localization code
Summary:
- We throw on a missing date right now, in the DateTime constructor. This can
happen in reasonable cases and this is display code, so handle it more
gracefully (see T520).
- This stuff is a little slow and we sometimes render many hundreds of dates
per page. I've been seeing it in profiles on and off. Memoize timezones to
improve performance.
- Some minor code duplication that would have become less-minor with the
constructor change, consolidate the logic.
- Add some unit tests and a little documentation.
Test Plan:
- Ran unit tests.
- Profiled 1,000 calls to phabricator_datetime(), cost dropped from ~49ms to
~19ms with addition of memoization. This is still slower than I'd like but I
don't think there's an easy way to squeeze it down further.
Reviewers: ajtrichards, jungejason, nh, tuomaspelkonen, aran
Reviewed By: ajtrichards
CC: aran, ajtrichards, epriestley
Differential Revision: 966
2011-09-27 18:03:55 +02:00
|
|
|
|
2012-06-29 03:08:59 +02:00
|
|
|
return PhutilTranslator::getInstance()->translateDate($format, $date);
|
2011-06-18 22:07:02 +02:00
|
|
|
}
|