4 * @file src/Util/Temporal.php
7 namespace Friendica\Util;
11 use Friendica\Core\Config;
12 use Friendica\Core\L10n;
13 use Friendica\Core\PConfig;
15 require_once 'boot.php';
16 require_once 'include/text.php';
19 * @brief Temporal class
24 * @brief Two-level sort for timezones.
30 private static function timezoneCompareCallback($a, $b)
32 if (strstr($a, '/') && strstr($b, '/')) {
33 if (L10n::t($a) == L10n::t($b)) {
36 return (L10n::t($a) < L10n::t($b)) ? -1 : 1;
39 if (strstr($a, '/')) {
41 } elseif (strstr($b, '/')) {
43 } elseif (L10n::t($a) == L10n::t($b)) {
47 return (L10n::t($a) < L10n::t($b)) ? -1 : 1;
51 * @brief Emit a timezone selector grouped (primarily) by continent
53 * @param string $current Timezone
54 * @return string Parsed HTML output
56 public static function getTimezoneSelect($current = 'America/Los_Angeles')
58 $timezone_identifiers = DateTimeZone::listIdentifiers();
60 $o = '<select id="timezone_select" name="timezone">';
62 usort($timezone_identifiers, [__CLASS__, 'timezoneCompareCallback']);
64 foreach ($timezone_identifiers as $value) {
65 $ex = explode("/", $value);
67 if ($ex[0] != $continent) {
68 if ($continent != '') {
72 $o .= '<optgroup label="' . L10n::t($continent) . '">';
75 $city = substr($value, strpos($value, '/') + 1);
81 if ($continent != L10n::t('Miscellaneous')) {
83 $continent = L10n::t('Miscellaneous');
84 $o .= '<optgroup label="' . L10n::t($continent) . '">';
87 $city = str_replace('_', ' ', L10n::t($city));
88 $selected = (($value == $current) ? " selected=\"selected\" " : "");
89 $o .= "<option value=\"$value\" $selected >$city</option>";
91 $o .= '</optgroup></select>';
96 * @brief Generating a Timezone selector
98 * Return a select using 'field_select_raw' template, with timezones
99 * grouped (primarily) by continent
100 * arguments follow convention as other field_* template array:
101 * 'name', 'label', $value, 'help'
103 * @param string $name Name of the selector
104 * @param string $label Label for the selector
105 * @param string $current Timezone
106 * @param string $help Help text
108 * @return string Parsed HTML
110 public static function getTimezoneField($name = 'timezone', $label = '', $current = 'America/Los_Angeles', $help = '')
112 $options = self::getTimezoneSelect($current);
113 $options = str_replace('<select id="timezone_select" name="timezone">', '', $options);
114 $options = str_replace('</select>', '', $options);
116 $tpl = get_markup_template('field_select_raw.tpl');
117 return replace_macros($tpl, [
118 '$field' => [$name, $label, $current, $help, $options],
123 * @brief Wrapper for date selector, tailored for use in birthday fields.
125 * @param string $dob Date of Birth
126 * @return string Formatted HTML
128 public static function getDateofBirthField($dob)
132 list($year, $month, $day) = sscanf($dob, '%4d-%2d-%2d');
134 if ($dob < '0000-01-01') {
137 $value = DateTimeFormat::utc(($year > 1000) ? $dob : '1000-' . $month . '-' . $day, 'Y-m-d');
140 $age = (intval($value) ? self::getAgeByTimezone($value, $a->user["timezone"], $a->user["timezone"]) : "");
142 $tpl = get_markup_template("field_input.tpl");
143 $o = replace_macros($tpl,
147 L10n::t('Birthday:'),
149 intval($age) > 0 ? L10n::t('Age: ') . $age : "",
151 'placeholder="' . L10n::t('YYYY-MM-DD or MM-DD') . '"'
159 * @brief Returns a date selector
161 * @param string $min Unix timestamp of minimum date
162 * @param string $max Unix timestap of maximum date
163 * @param string $default Unix timestamp of default date
164 * @param string $id ID and name of datetimepicker (defaults to "datetimepicker")
166 * @return string Parsed HTML output.
168 public static function getDateField($min, $max, $default, $id = 'datepicker')
170 return self::getDateTimeField($min, $max, $default, '', $id, true, false, '', '');
174 * @brief Returns a time selector
176 * @param string $h Already selected hour
177 * @param string $m Already selected minute
178 * @param string $id ID and name of datetimepicker (defaults to "timepicker")
180 * @return string Parsed HTML output.
182 public static function getTimeField($h, $m, $id = 'timepicker')
184 return self::getDateTimeField(new DateTime(), new DateTime(), new DateTime("$h:$m"), '', $id, false, true);
188 * @brief Returns a datetime selector.
190 * @param DateTime $minDate Minimum date
191 * @param DateTime $maxDate Maximum date
192 * @param DateTime $defaultDate Default date
193 * @param string $id Id and name of datetimepicker (defaults to "datetimepicker")
194 * @param bool $pickdate true to show date picker (default)
195 * @param bool $picktime true to show time picker (default)
196 * @param string $minfrom set minimum date from picker with id $minfrom (none by default)
197 * @param string $maxfrom set maximum date from picker with id $maxfrom (none by default)
198 * @param bool $required default false
200 * @return string Parsed HTML output.
202 * @todo Once browser support is better this could probably be replaced with
203 * native HTML5 date picker.
205 public static function getDateTimeField(
208 DateTime $defaultDate,
210 $id = 'datetimepicker',
217 // First day of the week (0 = Sunday)
218 $firstDay = PConfig::get(local_user(), 'system', 'first_day_of_week', 0);
220 $lang = substr(L10n::getBrowserLanguage(), 0, 2);
222 // Check if the detected language is supported by the picker
224 ["ar", "ro", "id", "bg", "fa", "ru", "uk", "en", "el", "de", "nl", "tr", "fr", "es", "th", "pl", "pt", "ch", "se", "kr",
225 "it", "da", "no", "ja", "vi", "sl", "cs", "hu"])) {
226 $lang = Config::get('system', 'language', 'en');
233 $dateformat .= 'Y-m-d';
236 if ($pickdate && $picktime) {
241 $dateformat .= 'H:i';
244 $input_text = $defaultDate ? date($dateformat, $defaultDate->getTimestamp()) : '';
246 $readable_format = str_replace(['Y', 'm', 'd', 'H', 'i'], ['yyyy', 'mm', 'dd', 'HH', 'MM'], $dateformat);
248 $tpl = get_markup_template('field_datetime.tpl');
249 $o .= replace_macros($tpl, [
255 $required ? '*' : '',
256 'placeholder="' . $readable_format . '"'
258 '$datetimepicker' => [
259 'minDate' => $minDate,
260 'maxDate' => $maxDate,
261 'defaultDate' => $defaultDate,
262 'dateformat' => $dateformat,
263 'firstDay' => $firstDay,
265 'minfrom' => $minfrom,
266 'maxfrom' => $maxfrom,
274 * @brief Returns a relative date string.
276 * Implements "3 seconds ago" etc.
277 * Based on $posted_date, (UTC).
278 * Results relative to current timezone.
279 * Limited to range of timestamps.
281 * @param string $posted_date MySQL-formatted date string (YYYY-MM-DD HH:MM:SS)
282 * @param string $format (optional) Parsed with sprintf()
283 * <tt>%1$d %2$s ago</tt>, e.g. 22 hours ago, 1 minute ago
285 * @return string with relative date
287 public static function getRelativeDate($posted_date, $format = null)
289 $localtime = $posted_date . ' UTC';
291 $abs = strtotime($localtime);
293 if (is_null($posted_date) || $posted_date <= NULL_DATE || $abs === false) {
294 return L10n::t('never');
297 $etime = time() - $abs;
300 return L10n::t('less than a second ago');
303 $a = [12 * 30 * 24 * 60 * 60 => [L10n::t('year'), L10n::t('years')],
304 30 * 24 * 60 * 60 => [L10n::t('month'), L10n::t('months')],
305 7 * 24 * 60 * 60 => [L10n::t('week'), L10n::t('weeks')],
306 24 * 60 * 60 => [L10n::t('day'), L10n::t('days')],
307 60 * 60 => [L10n::t('hour'), L10n::t('hours')],
308 60 => [L10n::t('minute'), L10n::t('minutes')],
309 1 => [L10n::t('second'), L10n::t('seconds')]
312 foreach ($a as $secs => $str) {
316 // translators - e.g. 22 hours ago, 1 minute ago
318 $format = L10n::t('%1$d %2$s ago');
321 return sprintf($format, $r, (($r == 1) ? $str[0] : $str[1]));
327 * @brief Returns timezone correct age in years.
329 * Returns the age in years, given a date of birth, the timezone of the person
330 * whose date of birth is provided, and the timezone of the person viewing the
333 * Why? Bear with me. Let's say I live in Mittagong, Australia, and my birthday
334 * is on New Year's. You live in San Bruno, California.
335 * When exactly are you going to see my age increase?
337 * A: 5:00 AM Dec 31 San Bruno time. That's precisely when I start celebrating
338 * and become a year older. If you wish me happy birthday on January 1
339 * (San Bruno time), you'll be a day late.
341 * @param string $dob Date of Birth
342 * @param string $owner_tz (optional) Timezone of the person of interest
343 * @param string $viewer_tz (optional) Timezone of the person viewing
345 * @return int Age in years
347 public static function getAgeByTimezone($dob, $owner_tz = '', $viewer_tz = '')
353 $owner_tz = date_default_timezone_get();
356 $viewer_tz = date_default_timezone_get();
359 $birthdate = DateTimeFormat::convert($dob . ' 00:00:00+00:00', $owner_tz, 'UTC', 'Y-m-d');
360 list($year, $month, $day) = explode("-", $birthdate);
361 $year_diff = DateTimeFormat::timezoneNow($viewer_tz, 'Y') - $year;
362 $curr_month = DateTimeFormat::timezoneNow($viewer_tz, 'm');
363 $curr_day = DateTimeFormat::timezoneNow($viewer_tz, 'd');
365 if (($curr_month < $month) || (($curr_month == $month) && ($curr_day < $day))) {
373 * @brief Get days of a month in a given year.
375 * Returns number of days in the month of the given year.
376 * $m = 1 is 'January' to match human usage.
379 * @param int $m Month (1=January, 12=December)
381 * @return int Number of days in the given month
383 public static function getDaysInMonth($y, $m)
385 return date('t', mktime(0, 0, 0, $m, 1, $y));
389 * @brief Returns the first day in month for a given month, year.
394 * @param int $m Month (1=January, 12=December)
396 * @return string day 0 = Sunday through 6 = Saturday
398 private static function getFirstDayInMonth($y, $m)
400 $d = sprintf('%04d-%02d-01 00:00', intval($y), intval($m));
402 return DateTimeFormat::utc($d, 'w');
406 * @brief Output a calendar for the given month, year.
408 * If $links are provided (array), e.g. $links[12] => 'http://mylink' ,
409 * date 12 will be linked appropriately. Today's date is also noted by
411 * Months count from 1.
414 * @param int $m Month
415 * @param array $links (default null)
416 * @param string $class
420 * @todo Provide (prev, next) links, define class variations for different size calendars
422 public static function getCalendarTable($y = 0, $m = 0, $links = null, $class = '')
424 // month table - start at 1 to match human usage.
426 'January', 'February', 'March',
427 'April', 'May', 'June',
428 'July', 'August', 'September',
429 'October', 'November', 'December'
432 $thisyear = DateTimeFormat::localNow('Y');
433 $thismonth = DateTimeFormat::localNow('m');
439 $m = intval($thismonth);
442 $dn = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
443 $f = self::getFirstDayInMonth($y, $m);
444 $l = self::getDaysInMonth($y, $m);
449 if (($y == $thisyear) && ($m == $thismonth)) {
450 $tddate = intval(DateTimeFormat::localNow('j'));
453 $str_month = day_translate($mtab[$m]);
454 $o = '<table class="calendar' . $class . '">';
455 $o .= "<caption>$str_month $y</caption><tr>";
456 for ($a = 0; $a < 7; $a ++) {
457 $o .= '<th>' . mb_substr(day_translate($dn[$a]), 0, 3, 'UTF-8') . '</th>';
463 if (($dow == $f) && (!$started)) {
467 $today = (((isset($tddate)) && ($tddate == $d)) ? "class=\"today\" " : '');
469 $day = str_replace(' ', ' ', sprintf('%2.2d', $d));
471 if (x($links, $d) !== false) {
472 $o .= "<a href=\"{$links[$d]}\">$day</a>";
484 if (($dow == 7) && ($d <= $l)) {
491 for ($a = $dow; $a < 7; $a ++) {
492 $o .= '<td> </td>';
496 $o .= '</tr></table>' . "\r\n";