* move some more vars from the session context to strbuf (the use of StrBufAppendTemp...
[citadel.git] / webcit / gettext.c
1 /*
2  * $Id$
3  */
4
5 #include "webcit.h"
6 #include "webserver.h"
7
8 #ifdef ENABLE_NLS
9
10 #define NUM_LANGS 10            /* how many different locales do we know? */
11 #define SEARCH_LANG 20          /* how many langs should we parse? */
12
13 /* actual supported locales */
14 const char *AvailLang[NUM_LANGS] = {
15         "C",
16         "en_US",
17         "de_DE",
18         "it_IT",
19         "es_ES",
20         "en_GB",
21         "da_DK",
22         "fr_FR",
23         "nl_NL",
24         "pt_BR"
25 };
26
27 const char *AvailLangLoaded[NUM_LANGS];
28 long nLocalesLoaded = 0;
29
30 #ifdef HAVE_USELOCALE
31 locale_t wc_locales[NUM_LANGS]; /**< here we keep the parsed stuff */
32 #endif
33
34 /** Keep information about one locale */
35 typedef struct _lang_pref{
36         char lang[16];          /**< the language locale string */
37         char region[16];        /**< the region locale string */
38         long priority;          /**< which priority does it have */
39         int availability;       /**< do we know it? */
40         int selectedlang;       /**< is this the selected language? */
41 } LangStruct;
42
43 /* \brief parse browser locale header 
44  * seems as most browsers just do a one after coma value even if more than 10 locales are available. Sample strings:
45  * opera: 
46  * Accept-Language: sq;q=1.0,de;q=0.9,as;q=0.8,ar;q=0.7,bn;q=0.6,zh-cn;q=0.5,kn;q=0.4,ch;q=0.3,fo;q=0.2,gn;q=0.1,ce;q=0.1,ie;q=0.1 
47  * Firefox 
48  * Accept-Language: 'de-de,en-us;q=0.7,en;q=0.3' 
49  * Accept-Language: de,en-ph;q=0.8,en-us;q=0.5,de-at;q=0.3 
50  * Accept-Language: de,en-us;q=0.9,it;q=0.9,de-de;q=0.8,en-ph;q=0.7,de-at;q=0.7,zh-cn;q=0.6,cy;q=0.5,ar-om;q=0.5,en-tt;q=0.4,xh;q=0.3,nl-be;q=0.3,cs;q=0.2,sv;q=0.1,tk;q=0.1 
51  * \param LocaleString the string from the browser http headers
52  */
53
54 void httplang_to_locale(StrBuf *LocaleString)
55 {
56         LangStruct wanted_locales[SEARCH_LANG];
57         LangStruct *ls;
58
59         int i = 0;
60         int j = 0;
61         /* size_t len = strlen(LocaleString); */
62         long prio;
63         int av;
64         int nBest;
65         int nParts;
66         StrBuf *Buf = NULL;
67         StrBuf *SBuf = NULL;
68         
69         nParts=StrBufNum_tokens(LocaleString,',');
70         for (i=0; ((i<nParts)&&(i<SEARCH_LANG)); i++)
71         {
72                 char lbuf[16];
73                 int blen;
74                         
75                 if (Buf == NULL) {
76                         Buf = NewStrBuf();
77                         SBuf = NewStrBuf();
78                 }
79                 else {
80                         FlushStrBuf(Buf);
81                         FlushStrBuf(SBuf);
82                 }
83
84                 ls=&wanted_locales[i];
85
86                 StrBufExtract_token(Buf,LocaleString, i,',');
87                 /** we are searching, if this list item has something like ;q=n*/
88                 if (StrBufNum_tokens(Buf,'=')>1) {
89                         int sbuflen, k;
90                         StrBufExtract_token(SBuf,Buf, 1,'=');
91                         sbuflen=StrLength(SBuf);
92                         for (k=0; k<sbuflen; k++) 
93                                 if (ChrPtr(SBuf)[k]=='.') 
94                                         StrBufPeek(SBuf, NULL, k, '0');
95                         ls->priority=StrTol(SBuf);
96                 }
97                 else {
98                         ls->priority=1000;
99                 }
100                 /** get the locale part */
101                 StrBufExtract_token(SBuf ,Buf, 0, ';');
102                 /** get the lang part, which should be allways there */
103                 extract_token(&ls->lang[0], ChrPtr(SBuf), 0, '-', 16);
104                 /** get the area code if any. */
105                 if (StrBufNum_tokens(SBuf,'-') > 1) {
106                         extract_token(&ls->region[0],ChrPtr(SBuf),1,'-',16);
107                 }
108                 else { /** no ara code? use lang code */
109                         blen=strlen(&ls->lang[0]);
110                         memcpy(&ls->region[0], ls->lang,blen);
111                         ls->region[blen]='\0';
112                 } /** area codes are uppercase */
113                 blen=strlen(&ls->region[0]);
114                 for (j=0; j<blen; j++)
115                 {
116                         int chars=toupper(ls->region[j]);
117                         ls->region[j]=(char)chars;/** \todo ?! */
118                 }
119                 sprintf(&lbuf[0],"%s_%s",&ls->lang[0],&ls->region[0]);
120                         
121                 /** check if we have this lang */
122                 ls->availability=1;
123                 ls->selectedlang=-1;
124                 for (j=0; j<nLocalesLoaded; j++) {
125                         int result;
126                         /** match against the LANG part */
127                         result=strcasecmp(&ls->lang[0], AvailLangLoaded[j]);
128                         if ((result<0)&&(result<ls->availability)){
129                                 ls->availability=result;
130                                 ls->selectedlang=j;
131                         }
132                         /** match against lang and locale */
133                         if (0==strcasecmp(&lbuf[0], AvailLangLoaded[j])){
134                                 ls->availability=0;
135                                 ls->selectedlang=j;
136                                 j=nLocalesLoaded;
137                         }
138                 }
139         }
140         
141         prio=0;
142         av=-1000;
143         nBest=-1;
144         for (i=0; ((i<nParts)&&(i<SEARCH_LANG)); i++) {
145                 ls=&wanted_locales[i];
146                 if ((ls->availability<=0)&& 
147                    (av<ls->availability)&&
148                    (prio<ls->priority)&&
149                    (ls->selectedlang!=-1)) {
150                         nBest=ls->selectedlang;
151                         av=ls->availability;
152                         prio=ls->priority;
153                 }
154         }
155         if (nBest == -1) {
156                 /** fall back to C */
157                 nBest=0;
158         }
159         WC->selected_language=nBest;
160         lprintf(9, "language found: %s\n", AvailLangLoaded[WC->selected_language]);
161         FreeStrBuf(&Buf);
162         FreeStrBuf(&SBuf);
163 }
164
165 /**
166  * \brief show the language chooser on the login dialog
167  * depending on the browser locale change the sequence of the 
168  * language chooser.
169  */
170 void tmplput_offer_languages(StrBuf *Target, WCTemplputParams *TP)
171 {
172         int i;
173 #ifndef HAVE_USELOCALE
174         char *Lang = getenv("LANG");
175         
176         if (Lang == NULL)
177                 Lang = "C";
178 #endif
179
180         wprintf("<select name=\"language\" id=\"lname\" size=\"1\">\n");
181
182         for (i=0; i < nLocalesLoaded; ++i) {
183 #ifndef HAVE_USELOCALE
184                 if (strcmp(AvailLangLoaded[i], Lang) == 0)
185 #endif
186                 wprintf("<option %s value=%s>%s</option>\n",
187                         ((WC->selected_language == i) ? "selected" : ""),
188                         AvailLangLoaded[i],
189                         AvailLangLoaded[i]
190                 );
191         }
192
193         wprintf("</select>\n");
194 }
195
196 /**
197  * \brief Set the selected language for this session.
198  * \param lang the locale to set.
199  */
200 void set_selected_language(const char *lang) {
201         int i;
202
203 #ifdef HAVE_USELOCALE
204         for (i=0; i<nLocalesLoaded; ++i) {
205                 if (!strcasecmp(lang, AvailLangLoaded[i])) {
206                         WC->selected_language = i;
207                 }
208         }
209 #endif
210 }
211
212 /**
213  * \brief Activate the selected language for this session.
214  */
215 void go_selected_language(void) {
216 #ifdef HAVE_USELOCALE
217         wcsession *WCC = WC;
218         if (WCC->selected_language < 0) return;
219         uselocale(wc_locales[WCC->selected_language]);  /** switch locales */
220         textdomain(textdomain(NULL));                   /** clear the cache */
221 #else
222         char *language;
223         
224         language = getenv("LANG");
225         setlocale(LC_MESSAGES, language);
226 #endif
227 }
228
229 /**
230  * \brief Deactivate the selected language for this session.
231  */
232 void stop_selected_language(void) {
233 #ifdef HAVE_USELOCALE
234         uselocale(LC_GLOBAL_LOCALE);                    /** switch locales */
235         textdomain(textdomain(NULL));                   /** clear the cache */
236 #endif
237 }
238
239 void preset_locale(void)
240 {
241 #ifndef HAVE_USELOCALE
242 #ifdef HAVE_GETTEXT
243         char *language;
244         
245         lprintf(9, "Nailing locale to %s\n", getenv("LANG"));
246         language = getenv("LANG");
247         setlocale(LC_MESSAGES, language);
248 #endif
249 #endif
250 }
251
252 #ifdef HAVE_USELOCALE
253         locale_t Empty_Locale;
254 #endif
255
256 /**
257  * \brief Create a locale_t for each available language
258  */
259 void initialize_locales(void) {
260         int i;
261         char buf[32];
262
263 #ifdef HAVE_USELOCALE
264         /* create default locale */
265         Empty_Locale = newlocale(LC_ALL_MASK, NULL, NULL);
266 #endif
267
268         for (i = 0; i < NUM_LANGS; ++i) {
269                 if (i == 0) {
270                         sprintf(buf, "%s", AvailLang[i]);       /* locale 0 (C) is ascii, not utf-8 */
271                 }
272                 else {
273                         sprintf(buf, "%s.UTF8", AvailLang[i]);
274                 }
275 #ifdef HAVE_USELOCALE
276                 wc_locales[nLocalesLoaded] = newlocale(
277                         (LC_MESSAGES_MASK|LC_TIME_MASK),
278                         buf,
279                         (((i > 0) && (wc_locales[0] != NULL)) ? wc_locales[0] : Empty_Locale)
280                 );
281                 if (wc_locales[nLocalesLoaded] == NULL) {
282                         lprintf(1, "Error configuring locale for %s: %s\n",
283                                 buf,
284                                 strerror(errno)
285                         );
286                 }
287                 else {
288                         lprintf(3, "Configured available locale: %s\n", buf);
289                         AvailLangLoaded[nLocalesLoaded] = AvailLang[i];
290                         nLocalesLoaded++;
291                 }
292 #endif
293         }
294 }
295
296
297 void ShutdownLocale(void)
298 {
299         int i;
300 #ifdef HAVE_USELOCALE
301         for (i = 0; i < nLocalesLoaded; ++i) {
302                 if (Empty_Locale != wc_locales[i])
303                         freelocale(wc_locales[i]);
304         }
305 #endif
306 }
307
308 #else   /* ENABLE_NLS */
309 /** \brief dummy for non NLS enabled systems */
310 void tmplput_offer_languages(StrBuf *Target, WCTemplputParams *TP)
311 {
312         wprintf("English (US)");
313 }
314
315 /** \brief dummy for non NLS enabled systems */
316 void set_selected_language(char *lang) {
317 }
318
319 /** \brief dummy for non NLS enabled systems */
320 void go_selected_language(void) {
321 }
322
323 /** \brief dummy for non NLS enabled systems */
324 void stop_selected_language(void) {
325 }
326
327 void preset_locale(void)
328 {
329 }
330 #endif  /* ENABLE_NLS */
331
332
333 void TmplGettext(StrBuf *Target, WCTemplputParams *TP)
334 {
335         StrBufAppendBufPlain(Target, _(TP->Tokens->Params[0]->Start), -1, 0);
336 }
337
338
339 /*
340  * Returns the language currently in use.
341  * This function returns a static string, so don't do anything stupid please.
342  */
343 const char *get_selected_language(void) {
344 #ifdef ENABLE_NLS
345 #ifdef HAVE_USELOCALE
346         return AvailLang[WC->selected_language];
347 #else
348         return "en"
349 #endif
350 #else
351         return "en"
352 #endif
353 }
354
355 void 
356 InitModule_GETTEXT
357 (void)
358 {
359         RegisterNamespace("LANG:SELECT", 0, 0, tmplput_offer_languages, CTX_NONE);
360 }