Add configtest link to administrator plugin.
[squirrelmail.git] / functions / date.php
1 <?php
2
3 /**
4 * date.php
5 *
6 * Copyright (c) 1999-2004 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Takes a date and parses it into a usable format. The form that a
10 * date SHOULD arrive in is:
11 * <Tue,> 29 Jun 1999 09:52:11 -0500 (EDT)
12 * (as specified in RFC 822) -- 'Tue' is optional
13 *
14 * $Id$
15 * @package squirrelmail
16 */
17
18 /** Load up some useful constants */
19 require_once(SM_PATH . 'functions/constants.php');
20
21 /**
22 * Corrects a time stamp to be the local time.
23 *
24 * @param int stamp the timestamp to adjust
25 * @param string tzc the timezone correction
26 * @return int the corrected timestamp
27 */
28 function getGMTSeconds($stamp, $tzc) {
29 /* date couldn't be parsed */
30 if ($stamp == -1) {
31 return -1;
32 }
33 /* timezone correction, expressed as `shhmm' */
34 switch($tzc)
35 {
36 case 'Pacific':
37 case 'PST':
38 $tzc = '-0800';
39 break;
40 case 'Mountain':
41 case 'MST':
42 case 'PDT':
43 $tzc = '-0700';
44 break;
45 case 'Central':
46 case 'CST':
47 case 'MDT':
48 $tzc = '-0600';
49 break;
50 case 'Eastern':
51 case 'EST':
52 case 'CDT':
53 $tzc = '-0500';
54 break;
55 case 'EDT':
56 $tzc = '-0400';
57 break;
58 case 'GMT':
59 $tzc = '+0000';
60 break;
61 case 'BST':
62 case 'MET':
63 case 'CET':
64 $tzc = '+0100';
65 break;
66 case 'EET':
67 case 'IST':
68 case 'MET DST':
69 case 'METDST':
70 $tzc = '+0200';
71 break;
72 case 'HKT':
73 $tzc = '+0800';
74 break;
75 case 'JST':
76 case 'KST':
77 $tzc = '+0900';
78 break;
79 }
80 $neg = false;
81 if (substr($tzc, 0, 1) == '-') {
82 $neg = true;
83 } else if (substr($tzc, 0, 1) != '+') {
84 $tzc = '+'.$tzc;
85 }
86 $hh = substr($tzc,1,2);
87 $mm = substr($tzc,3,2);
88 $iTzc = ($hh * 60 + $mm) * 60;
89 if ($neg) $iTzc = -1 * (int) $iTzc;
90 /* stamp in gmt */
91 $stamp -= $iTzc;
92 /** now find what the server is at **/
93 $current = date('Z', time());
94 /* stamp in local timezone */
95 $stamp += $current;
96
97 return $stamp;
98 }
99
100 /**
101 * Returns the (localized) string for a given day number.
102 * Switch system has been intentionaly chosen for the
103 * internationalization of month and day names. The reason
104 * is to make sure that _("") strings will go into the
105 * main po.
106 *
107 * @param int day_number the day number
108 * @return string the day in human readable form
109 */
110 function getDayName( $day_number ) {
111
112 switch( $day_number ) {
113 case 0:
114 $ret = _("Sunday");
115 break;
116 case 1:
117 $ret = _("Monday");
118 break;
119 case 2:
120 $ret = _("Tuesday");
121 break;
122 case 3:
123 $ret = _("Wednesday");
124 break;
125 case 4:
126 $ret = _("Thursday");
127 break;
128 case 5:
129 $ret = _("Friday");
130 break;
131 case 6:
132 $ret = _("Saturday");
133 break;
134 default:
135 $ret = '';
136 }
137 return( $ret );
138 }
139
140 /**
141 * Like getDayName, but returns the short form
142 * @param int day_number the day number
143 * @return string the day in short human readable form
144 */
145 function getDayAbrv( $day_number ) {
146
147 switch( $day_number ) {
148 case 0:
149 $ret = _("Sun");
150 break;
151 case 1:
152 $ret = _("Mon");
153 break;
154 case 2:
155 $ret = _("Tue");
156 break;
157 case 3:
158 $ret = _("Wed");
159 break;
160 case 4:
161 $ret = _("Thu");
162 break;
163 case 5:
164 $ret = _("Fri");
165 break;
166 case 6:
167 $ret = _("Sat");
168 break;
169 default:
170 $ret = '';
171 }
172 return( $ret );
173 }
174
175
176 /**
177 * Returns the (localized) string for a given month number.
178 *
179 * @param string month_number the month number (01..12)
180 * @return string the month name in human readable form
181 */
182 function getMonthName( $month_number ) {
183 switch( $month_number ) {
184 case '01':
185 $ret = _("January");
186 break;
187 case '02':
188 $ret = _("February");
189 break;
190 case '03':
191 $ret = _("March");
192 break;
193 case '04':
194 $ret = _("April");
195 break;
196 case '05':
197 $ret = _("May");
198 break;
199 case '06':
200 $ret = _("June");
201 break;
202 case '07':
203 $ret = _("July");
204 break;
205 case '08':
206 $ret = _("August");
207 break;
208 case '09':
209 $ret = _("September");
210 break;
211 case '10':
212 $ret = _("October");
213 break;
214 case '11':
215 $ret = _("November");
216 break;
217 case '12':
218 $ret = _("December");
219 break;
220 default:
221 $ret = '';
222 }
223 return( $ret );
224 }
225
226 /**
227 * Returns the (localized) string for a given month number,
228 * short representation.
229 *
230 * @param string month_number the month number (01..12)
231 * @return string the shortened month in human readable form
232 */
233 function getMonthAbrv( $month_number ) {
234 switch( $month_number ) {
235 case '01':
236 $ret = _("Jan");
237 break;
238 case '02':
239 $ret = _("Feb");
240 break;
241 case '03':
242 $ret = _("Mar");
243 break;
244 case '04':
245 $ret = _("Apr");
246 break;
247 case '05':
248 $ret = _("Ma&#121;");
249 break;
250 case '06':
251 $ret = _("Jun");
252 break;
253 case '07':
254 $ret = _("Jul");
255 break;
256 case '08':
257 $ret = _("Aug");
258 break;
259 case '09':
260 $ret = _("Sep");
261 break;
262 case '10':
263 $ret = _("Oct");
264 break;
265 case '11':
266 $ret = _("Nov");
267 break;
268 case '12':
269 $ret = _("Dec");
270 break;
271 default:
272 $ret = '';
273 }
274 return( $ret );
275 }
276
277 /**
278 * Returns the localized representation of the date/time.
279 *
280 * @param string date_format The format for the date, like the input for the PHP date() function.
281 * @param int stamp the timestamp to convert
282 * @return string a full date representation
283 */
284 function date_intl( $date_format, $stamp ) {
285 $ret = str_replace( array('D','F','l','M'), array('$1','$2','$3','$4'), $date_format );
286 // to reduce the date calls we retrieve m and w in the same call
287 $ret = date('w#m#'. $ret, $stamp );
288 // extract day and month in order to replace later by intl day and month
289 $aParts = explode('#',$ret);
290 $ret = str_replace(array('$1','$4','$2','$3',), array(getDayAbrv($aParts[0]),
291 getMonthAbrv($aParts[1]),
292 getMonthName($aParts[1]),
293 getDayName($aParts[0])),
294 $aParts[2]);
295 return( $ret );
296 }
297
298 /**
299 * This returns a date of the format "Wed, Oct 29, 2003 9:52 am",
300 * or the same in 24H format (depending on the user's settings),
301 * and taking localization into accout.
302 *
303 * @param int stamp the timestamp
304 * @return string the long date string
305 */
306 function getLongDateString( $stamp ) {
307
308 global $hour_format;
309
310 if ($stamp == -1) {
311 return '';
312 }
313
314 if ( $hour_format == SMPREF_TIME_12HR ) {
315 $date_format = _("D, F j, Y g:i a");
316 } else {
317 $date_format = _("D, F j, Y G:i");
318 }
319
320 return( date_intl( $date_format, $stamp ) );
321
322 }
323
324 /**
325 * Returns a short representation of the date,
326 * taking timezones and localization into account.
327 * Depending on user's settings, this string can be
328 * of the form: "14:23" or "Jun 14, 2003" depending
329 * on whether the stamp is "today" or not.
330 *
331 * @param int stamp the timestamp
332 * @return string the date string
333 */
334 function getDateString( $stamp ) {
335
336 global $invert_time, $hour_format, $show_full_date;
337
338 if ( $stamp == -1 ) {
339 return '';
340 }
341
342 $now = time();
343
344 $dateZ = date('Z', $now );
345 if ($invert_time) {
346 $dateZ = - $dateZ;
347 }
348 $midnight = $now - ($now % 86400) - $dateZ;
349 $nextmid = $midnight + 86400;
350
351 if (($show_full_date == 1) || ($nextmid < $stamp)) {
352 $date_format = _("M j, Y");
353 } else if ($midnight < $stamp) {
354 /* Today */
355 if ( $hour_format == SMPREF_TIME_12HR ) {
356 $date_format = _("g:i a");
357 } else {
358 $date_format = _("G:i");
359 }
360 } else if ($midnight - 518400 < $stamp) {
361 /* This week */
362 if ( $hour_format == SMPREF_TIME_12HR ) {
363 $date_format = _("D, g:i a");
364 } else {
365 $date_format = _("D, G:i");
366 }
367 } else {
368 /* before this week */
369 $date_format = _("M j, Y");
370 }
371
372 return( date_intl( $date_format, $stamp ) );
373 }
374
375 /**
376 * Decodes a RFC 822 Date-header into a timestamp
377 *
378 * @param array dateParts the Date-header split by whitespace
379 * @return int the timestamp calculated from the header
380 */
381 function getTimeStamp($dateParts) {
382 /** $dateParts[0] == <day of week> Mon, Tue, Wed
383 ** $dateParts[1] == <day of month> 23
384 ** $dateParts[2] == <month> Jan, Feb, Mar
385 ** $dateParts[3] == <year> 1999
386 ** $dateParts[4] == <time> 18:54:23 (HH:MM:SS)
387 ** $dateParts[5] == <from GMT> +0100
388 ** $dateParts[6] == <zone> (EDT)
389 **
390 ** NOTE: In RFC 822, it states that <day of week> is optional.
391 ** In that case, dateParts[0] would be the <day of month>
392 ** and everything would be bumped up one.
393 **/
394
395 /*
396 * Simply check to see if the first element in the dateParts
397 * array is an integer or not.
398 * Since the day of week is optional, this check is needed.
399 */
400 if (count($dateParts) <2) {
401 return 0;
402 }
403
404 /* remove day of week */
405 if (!is_numeric(trim($dateParts[0]))) {
406 $dataParts = array_shift($dateParts);
407 }
408 /* calculate timestamp separated from the zone and obs-zone */
409 $stamp = strtotime(implode (' ', array_splice ($dateParts,0,4)));
410 if (!isset($dateParts[0])) {
411 $dateParts[0] = '+0000';
412 }
413
414 if (!preg_match('/^[+-]{1}[0-9]{4}$/',$dateParts[0])) {
415 /* zone in obs-zone format */
416 if (preg_match('/\((.+)\)/',$dateParts[0],$regs)) {
417 $obs_zone = $regs[1];
418 } else {
419 $obs_zone = $dateParts[0];
420 }
421 return getGMTSeconds($stamp, $obs_zone);
422 } else {
423 return getGMTSeconds($stamp, $dateParts[0]);
424 }
425 }
426
427 /* I use this function for profiling. Should never be called in
428 actual versions of squirrelmail released to public. */
429 /*
430 function getmicrotime() {
431 $mtime = microtime();
432 $mtime = explode(' ',$mtime);
433 $mtime = $mtime[1] + $mtime[0];
434 return ($mtime);
435 }
436 */
437 ?>