prepare 1.7.2 release
[m6w6/ext-http] / http_date_api.c
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2010, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #include "php_http.h"
16
17 #include "php_http_api.h"
18 #include "php_http_date_api.h"
19
20 static inline int check_day(const char *day, size_t len);
21 static inline int check_month(const char *month);
22 static inline int check_tzone(const char *tzone);
23 static inline time_t parse_date(const char *month);
24
25 /* {{{ day/month names */
26 static const char *days[] = {
27 "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
28 };
29 static const char *wkdays[] = {
30 "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"
31 };
32 static const char *weekdays[] = {
33 "Monday", "Tuesday", "Wednesday",
34 "Thursday", "Friday", "Saturday", "Sunday"
35 };
36 static const char *months[] = {
37 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
38 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
39 };
40 enum assume_next {
41 DATE_MDAY,
42 DATE_YEAR,
43 DATE_TIME
44 };
45 #define DS -60
46 static const struct time_zone {
47 const char *name;
48 const int offset;
49 } time_zones[] = {
50 {"GMT", 0}, /* Greenwich Mean */
51 {"UTC", 0}, /* Universal (Coordinated) */
52 {"WET", 0}, /* Western European */
53 {"BST", 0 DS}, /* British Summer */
54 {"WAT", 60}, /* West Africa */
55 {"AST", 240}, /* Atlantic Standard */
56 {"ADT", 240 DS},/* Atlantic Daylight */
57 {"EST", 300}, /* Eastern Standard */
58 {"EDT", 300 DS},/* Eastern Daylight */
59 {"CST", 360}, /* Central Standard */
60 {"CDT", 360 DS},/* Central Daylight */
61 {"MST", 420}, /* Mountain Standard */
62 {"MDT", 420 DS},/* Mountain Daylight */
63 {"PST", 480}, /* Pacific Standard */
64 {"PDT", 480 DS},/* Pacific Daylight */
65 {"YST", 540}, /* Yukon Standard */
66 {"YDT", 540 DS},/* Yukon Daylight */
67 {"HST", 600}, /* Hawaii Standard */
68 {"HDT", 600 DS},/* Hawaii Daylight */
69 {"CAT", 600}, /* Central Alaska */
70 {"AHST", 600}, /* Alaska-Hawaii Standard */
71 {"NT", 660}, /* Nome */
72 {"IDLW", 720}, /* International Date Line West */
73 {"CET", -60}, /* Central European */
74 {"MET", -60}, /* Middle European */
75 {"MEWT", -60}, /* Middle European Winter */
76 {"MEST", -60 DS},/* Middle European Summer */
77 {"CEST", -60 DS},/* Central European Summer */
78 {"MESZ", -60 DS},/* Middle European Summer */
79 {"FWT", -60}, /* French Winter */
80 {"FST", -60 DS},/* French Summer */
81 {"EET", -120}, /* Eastern Europe, USSR Zone 1 */
82 {"WAST", -420}, /* West Australian Standard */
83 {"WADT", -420 DS},/* West Australian Daylight */
84 {"CCT", -480}, /* China Coast, USSR Zone 7 */
85 {"JST", -540}, /* Japan Standard, USSR Zone 8 */
86 {"EAST", -600}, /* Eastern Australian Standard */
87 {"EADT", -600 DS},/* Eastern Australian Daylight */
88 {"GST", -600}, /* Guam Standard, USSR Zone 9 */
89 {"NZT", -720}, /* New Zealand */
90 {"NZST", -720}, /* New Zealand Standard */
91 {"NZDT", -720 DS},/* New Zealand Daylight */
92 {"IDLE", -720}, /* International Date Line East */
93 };
94 /* }}} */
95
96 /* {{{ Day/Month/TZ checks for http_parse_date()
97 Originally by libcurl, Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al. */
98 static inline int check_day(const char *day, size_t len)
99 {
100 int i;
101 const char * const *check = (len > 3) ? &weekdays[0] : &wkdays[0];
102 for (i = 0; i < 7; i++) {
103 if (!strcmp(day, check[0])) {
104 return i;
105 }
106 check++;
107 }
108 return -1;
109 }
110
111 static inline int check_month(const char *month)
112 {
113 int i;
114 const char * const *check = &months[0];
115 for (i = 0; i < 12; i++) {
116 if (!strcmp(month, check[0])) {
117 return i;
118 }
119 check++;
120 }
121 return -1;
122 }
123
124 /* return the time zone offset between GMT and the input one, in number
125 of seconds or -1 if the timezone wasn't found/legal */
126
127 static inline int check_tzone(const char *tzone)
128 {
129 unsigned i;
130 const struct time_zone *check = time_zones;
131 for (i = 0; i < sizeof(time_zones) / sizeof(time_zones[0]); i++) {
132 if (!strcmp(tzone, check->name)) {
133 return check->offset * 60;
134 }
135 check++;
136 }
137 return -1;
138 }
139 /* }}} */
140
141 /* {{{ char *http_date(time_t) */
142 PHP_HTTP_API char *_http_date(time_t t TSRMLS_DC)
143 {
144 char *date = NULL;
145 struct tm *gmtime = NULL, tmbuf;
146
147 memset(&tmbuf, 0, sizeof(tmbuf));
148 if ((gmtime = php_gmtime_r(&t, &tmbuf))) {
149 spprintf(&date, 0,
150 "%s, %02d %s %04d %02d:%02d:%02d GMT",
151 days[gmtime->tm_wday], gmtime->tm_mday,
152 months[gmtime->tm_mon], gmtime->tm_year + 1900,
153 gmtime->tm_hour, gmtime->tm_min, gmtime->tm_sec
154 );
155 }
156
157 return date;
158 }
159 /* }}} */
160
161 /* {{{ time_t http_parse_date(char *) */
162 PHP_HTTP_API time_t _http_parse_date_ex(const char *date, zend_bool silent TSRMLS_DC)
163 {
164 time_t t = parse_date(date);
165
166 if (-1 == t && !silent) {
167 http_error_ex(HE_NOTICE, HTTP_E_RUNTIME, "Could not parse date: %s", date);
168 }
169
170 return t;
171 }
172 /* }}} */
173
174 /* time_t parse_date(char *)
175 Originally by libcurl, Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al. */
176 static inline time_t parse_date(const char *date)
177 {
178 time_t t = 0;
179 int tz_offset = -1, year = -1, month = -1, monthday = -1, weekday = -1,
180 hours = -1, minutes = -1, seconds = -1;
181 struct tm tm;
182 enum assume_next dignext = DATE_MDAY;
183 const char *indate = date;
184
185 int part = 0; /* max 6 parts */
186
187 while (*date && (part < 6)) {
188 int found = 0;
189
190 while (*date && !HTTP_IS_CTYPE(alnum, *date)) {
191 date++;
192 }
193
194 if (HTTP_IS_CTYPE(alpha, *date)) {
195 /* a name coming up */
196 char buf[32] = "";
197 size_t len;
198 sscanf(date, "%31[A-Za-z]", buf);
199 len = strlen(buf);
200
201 if (weekday == -1) {
202 weekday = check_day(buf, len);
203 if (weekday != -1) {
204 found = 1;
205 }
206 }
207
208 if (!found && (month == -1)) {
209 month = check_month(buf);
210 if (month != -1) {
211 found = 1;
212 }
213 }
214
215 if (!found && (tz_offset == -1)) {
216 /* this just must be a time zone string */
217 tz_offset = check_tzone(buf);
218 if (tz_offset != -1) {
219 found = 1;
220 }
221 }
222
223 if (!found) {
224 return -1; /* bad string */
225 }
226 date += len;
227 }
228 else if (HTTP_IS_CTYPE(digit, *date)) {
229 /* a digit */
230 int val;
231 char *end;
232 if ((seconds == -1) &&
233 (3 == sscanf(date, "%02d:%02d:%02d", &hours, &minutes, &seconds))) {
234 /* time stamp! */
235 date += 8;
236 found = 1;
237 }
238 else {
239 val = (int) strtol(date, &end, 10);
240
241 if ((tz_offset == -1) && ((end - date) == 4) && (val < 1300) &&
242 (indate < date) && ((date[-1] == '+' || date[-1] == '-'))) {
243 /* four digits and a value less than 1300 and it is preceeded with
244 a plus or minus. This is a time zone indication. */
245 found = 1;
246 tz_offset = (val / 100 * 60 + val % 100) * 60;
247
248 /* the + and - prefix indicates the local time compared to GMT,
249 this we need ther reversed math to get what we want */
250 tz_offset = date[-1] == '+' ? -tz_offset : tz_offset;
251 }
252
253 if (((end - date) == 8) && (year == -1) && (month == -1) && (monthday == -1)) {
254 /* 8 digits, no year, month or day yet. This is YYYYMMDD */
255 found = 1;
256 year = val / 10000;
257 month = (val % 10000) / 100 - 1; /* month is 0 - 11 */
258 monthday = val % 100;
259 }
260
261 if (!found && (dignext == DATE_MDAY) && (monthday == -1)) {
262 if ((val > 0) && (val < 32)) {
263 monthday = val;
264 found = 1;
265 }
266 dignext = DATE_YEAR;
267 }
268
269 if (!found && (dignext == DATE_YEAR) && (year == -1)) {
270 year = val;
271 found = 1;
272 if (year < 1900) {
273 year += year > 70 ? 1900 : 2000;
274 }
275 if(monthday == -1) {
276 dignext = DATE_MDAY;
277 }
278 }
279
280 if (!found) {
281 return -1;
282 }
283
284 date = end;
285 }
286 }
287
288 part++;
289 }
290
291 if (-1 == seconds) {
292 seconds = minutes = hours = 0; /* no time, make it zero */
293 }
294
295 if ((-1 == monthday) || (-1 == month) || (-1 == year)) {
296 /* lacks vital info, fail */
297 return -1;
298 }
299
300 if (sizeof(time_t) < 5) {
301 /* 32 bit time_t can only hold dates to the beginning of 2038 */
302 if (year > 2037) {
303 return 0x7fffffff;
304 }
305 }
306
307 tm.tm_sec = seconds;
308 tm.tm_min = minutes;
309 tm.tm_hour = hours;
310 tm.tm_mday = monthday;
311 tm.tm_mon = month;
312 tm.tm_year = year - 1900;
313 tm.tm_wday = 0;
314 tm.tm_yday = 0;
315 tm.tm_isdst = 0;
316
317 t = mktime(&tm);
318
319 /* time zone adjust */
320 if (t != -1) {
321 struct tm *gmt, keeptime2;
322 long delta;
323 time_t t2;
324
325 if((gmt = php_gmtime_r(&t, &keeptime2))) {
326 tm = *gmt; /* MSVC quirks */
327 } else {
328 return -1; /* illegal date/time */
329 }
330
331 t2 = mktime(&tm);
332
333 /* Add the time zone diff (between the given timezone and GMT) and the
334 diff between the local time zone and GMT. */
335 delta = (tz_offset != -1 ? tz_offset : 0) + (t - t2);
336
337 if((delta > 0) && (t + delta < t)) {
338 return -1; /* time_t overflow */
339 }
340
341 t += delta;
342 }
343
344 return t;
345 }
346 /* }}} */
347
348
349 /*
350 * Local variables:
351 * tab-width: 4
352 * c-basic-offset: 4
353 * End:
354 * vim600: sw=4 ts=4 fdm=marker
355 * vim<600: sw=4 ts=4
356 */
357