Rewrote the multi day event code using only the
[citadel.git] / webcit / fmt_date.c
1 /*
2  * $Id$
3  */
4 /**
5  * \defgroup FormatDates Miscellaneous routines formating dates
6  * \ingroup Calendaring
7  */
8 /*@{*/
9 #include "webcit.h"
10 #include "webserver.h"
11
12 typedef unsigned char byte; /**< a byte. */
13
14 #define FALSE 0 /**< no. */
15 #define TRUE 1 /**< yes. */
16
17 /**
18  * \brief       Wrapper around strftime() or strftime_l()
19  *              depending upon how our build is configured.
20  *
21  * \param       s       String target buffer
22  * \param       max     Maximum size of string target buffer
23  * \param       format  strftime() format
24  * \param       tm      Input date/time
25  */
26 size_t wc_strftime(char *s, size_t max, const char *format, const struct tm *tm)
27 {
28 #ifdef ENABLE_NLS
29         if (wc_locales[WC->selected_language] == NULL) {
30                 return strftime(s, max, format, tm);
31         }
32         else { // TODO: this gives empty strings on debian.
33                 return strftime_l(s, max, format, tm, wc_locales[WC->selected_language]);
34         }
35 #else
36         return strftime(s, max, format, tm);
37 #endif
38 }
39
40
41 /**
42  * \brief Format a date/time stamp for output 
43  * \param buf the output buffer
44  * \param thetime time to convert to string 
45  * \param brief do we want compact view?????
46  */
47 void fmt_date(char *buf, time_t thetime, int brief)
48 {
49         struct tm tm;
50         struct tm today_tm;
51         time_t today_timet;
52         int time_format;
53         
54         time_format = get_time_format_cached ();
55         today_timet = time(NULL);
56         localtime_r(&today_timet, &today_tm);
57
58         localtime_r(&thetime, &tm);
59
60         if (brief) {
61
62                 /** If date == today, show only the time */
63                 if ((tm.tm_year == today_tm.tm_year)
64                   &&(tm.tm_mon == today_tm.tm_mon)
65                   &&(tm.tm_mday == today_tm.tm_mday)) {
66                         if (time_format == WC_TIMEFORMAT_24) 
67                                 wc_strftime(buf, 32, "%k:%M", &tm);
68                         else
69                                 wc_strftime(buf, 32, "%l:%M%p", &tm);
70                 }
71                 /** Otherwise, for messages up to 6 months old, show the month and day, and the time */
72                 else if (today_timet - thetime < 15552000) {
73                         if (time_format == WC_TIMEFORMAT_24) 
74                                 wc_strftime(buf, 32, "%b %d %k:%M", &tm);
75                         else
76                                 wc_strftime(buf, 32, "%b %d %l:%M%p", &tm);
77                 }
78                 /** older than 6 months, show only the date */
79                 else {
80                         wc_strftime(buf, 32, "%b %d %Y", &tm);
81                 }
82         }
83         else {
84                 wc_strftime(buf, 32, "%c", &tm);
85         }
86 }
87
88
89 /**
90  * \brief learn the users timeformat preference.
91  */
92 int get_time_format_cached (void)
93 {
94         char calhourformat[16];
95         int *time_format_cache;
96         time_format_cache = &(WC->time_format_cache);
97         if (*time_format_cache == WC_TIMEFORMAT_NONE)
98         {
99                 get_preference("calhourformat", calhourformat, sizeof calhourformat);
100                 if (!strcasecmp(calhourformat, "24")) 
101                         *time_format_cache = WC_TIMEFORMAT_24;
102                 else
103                         *time_format_cache = WC_TIMEFORMAT_AMPM;
104         }
105         return *time_format_cache;
106 }
107
108 /**
109  * \brief Format TIME ONLY for output 
110  * \param buf the output buffer
111  * \param thetime time to format into buf
112  */
113 void fmt_time(char *buf, time_t thetime)
114 {
115         struct tm *tm;
116         int hour;
117         int time_format;
118         
119         time_format = get_time_format_cached ();
120         buf[0] = 0;
121         tm = localtime(&thetime);
122         hour = tm->tm_hour;
123         if (hour == 0)
124                 hour = 12;
125         else if (hour > 12)
126                 hour = hour - 12;
127
128         if (time_format == WC_TIMEFORMAT_24) {
129                 sprintf(buf, "%2d:%02d",
130                         tm->tm_hour, tm->tm_min
131                 );
132         }
133         else {
134                 sprintf(buf, "%d:%02d%s",
135                         hour, tm->tm_min, ((tm->tm_hour > 12) ? "pm" : "am")
136                 );
137         }
138 }
139
140
141
142
143 /**
144  * \brief Break down the timestamp used in HTTP headers
145  * Should read rfc1123 and rfc850 dates OK
146  * \todo FIXME won't read asctime
147  * Doesn't understand timezone, but we only should be using GMT/UTC anyway
148  * \param buf time to parse
149  * \return the time found in buf
150  */
151 time_t httpdate_to_timestamp(char *buf)
152 {
153         time_t t = 0;
154         struct tm tt;
155         char *c;
156         char tz[256];
157
158         /** Skip day of week, to number */
159         for (c = buf; *c != ' '; c++)
160                 ;
161         c++;
162
163         /* Get day of month */
164         tt.tm_mday = atoi(c);
165         for (; *c != ' ' && *c != '-'; c++);
166         c++;
167
168         /** Get month */
169         switch (*c) {
170         case 'A':       /** April, August */
171                 tt.tm_mon = (c[1] == 'p') ? 3 : 7;
172                 break;
173         case 'D':       /** December */
174                 tt.tm_mon = 11;
175                 break;
176         case 'F':       /** February */
177                 tt.tm_mon = 1;
178                 break;
179         case 'M':       /** March, May */
180                 tt.tm_mon = (c[2] == 'r') ? 2 : 4;
181                 break;
182         case 'J':       /** January, June, July */
183                 tt.tm_mon = (c[2] == 'n') ? ((c[1] == 'a') ? 0 : 5) : 6;
184                 break;
185         case 'N':       /** November */
186                 tt.tm_mon = 10;
187                 break;
188         case 'O':       /** October */
189                 tt.tm_mon = 9;
190                 break;
191         case 'S':       /** September */
192                 tt.tm_mon = 8;
193                 break;
194         default:
195                 return 42;
196                 break;  /** NOTREACHED */
197         }
198         c += 4;
199
200         tt.tm_year = 0;
201         /** Get year */
202         tt.tm_year = atoi(c);
203         for (; *c != ' '; c++);
204         c++;
205         if (tt.tm_year >= 1900)
206                 tt.tm_year -= 1900;
207
208         /** Get hour */
209         tt.tm_hour = atoi(c);
210         for (; *c != ':'; c++);
211         c++;
212
213         /** Get minute */
214         tt.tm_min = atoi(c);
215         for (; *c != ':'; c++);
216         c++;
217
218         /** Get second */
219         tt.tm_sec = atoi(c);
220         for (; *c && *c != ' '; c++);
221
222         /** Got everything; let's go */
223         /** First, change to UTC */
224         if (getenv("TZ"))
225                 sprintf(tz, "TZ=%s", getenv("TZ"));
226         else
227                 strcpy(tz, "TZ=");
228         putenv("TZ=UTC");
229         tzset();
230         t = mktime(&tt);
231         putenv(tz);
232         tzset();
233         return t;
234 }
235
236
237
238
239 /*@}*/