* --pedantic cleanup.
[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, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType) {
171         int i;
172 #ifndef HAVE_USELOCALE
173         char *Lang = getenv("LANG");
174         
175         if (Lang == NULL)
176                 Lang = "C";
177 #endif
178
179         wprintf("<select name=\"language\" id=\"lname\" size=\"1\">\n");
180
181         for (i=0; i < nLocalesLoaded; ++i) {
182 #ifndef HAVE_USELOCALE
183                 if (strcmp(AvailLangLoaded[i], Lang) == 0)
184 #endif
185                 wprintf("<option %s value=%s>%s</option>\n",
186                         ((WC->selected_language == i) ? "selected" : ""),
187                         AvailLangLoaded[i],
188                         AvailLangLoaded[i]
189                 );
190         }
191
192         wprintf("</select>\n");
193 }
194
195 /**
196  * \brief Set the selected language for this session.
197  * \param lang the locale to set.
198  */
199 void set_selected_language(const char *lang) {
200         int i;
201
202 #ifdef HAVE_USELOCALE
203         for (i=0; i<nLocalesLoaded; ++i) {
204                 if (!strcasecmp(lang, AvailLangLoaded[i])) {
205                         WC->selected_language = i;
206                 }
207         }
208 #endif
209 }
210
211 /**
212  * \brief Activate the selected language for this session.
213  */
214 void go_selected_language(void) {
215 #ifdef HAVE_USELOCALE
216         wcsession *WCC = WC;
217         if (WCC->selected_language < 0) return;
218         uselocale(wc_locales[WCC->selected_language]);  /** switch locales */
219         textdomain(textdomain(NULL));                   /** clear the cache */
220 #else
221         char *language;
222         
223         language = getenv("LANG");
224         setlocale(LC_MESSAGES, language);
225 #endif
226 }
227
228 /**
229  * \brief Deactivate the selected language for this session.
230  */
231 void stop_selected_language(void) {
232 #ifdef HAVE_USELOCALE
233         uselocale(LC_GLOBAL_LOCALE);                    /** switch locales */
234         textdomain(textdomain(NULL));                   /** clear the cache */
235 #endif
236 }
237
238 void preset_locale(void)
239 {
240 #ifndef HAVE_USELOCALE
241 #ifdef HAVE_GETTEXT
242         char *language;
243         
244         lprintf(9, "Nailing locale to %s\n", getenv("LANG"));
245         language = getenv("LANG");
246         setlocale(LC_MESSAGES, language);
247 #endif
248 #endif
249 }
250
251 #ifdef HAVE_USELOCALE
252         locale_t Empty_Locale;
253 #endif
254
255 /**
256  * \brief Create a locale_t for each available language
257  */
258 void initialize_locales(void) {
259         int i;
260         char buf[32];
261
262 #ifdef HAVE_USELOCALE
263         /* create default locale */
264         Empty_Locale = newlocale(LC_ALL_MASK, NULL, NULL);
265 #endif
266
267         for (i = 0; i < NUM_LANGS; ++i) {
268                 if (i == 0) {
269                         sprintf(buf, "%s", AvailLang[i]);       /* locale 0 (C) is ascii, not utf-8 */
270                 }
271                 else {
272                         sprintf(buf, "%s.UTF8", AvailLang[i]);
273                 }
274 #ifdef HAVE_USELOCALE
275                 wc_locales[nLocalesLoaded] = newlocale(
276                         (LC_MESSAGES_MASK|LC_TIME_MASK),
277                         buf,
278                         (((i > 0) && (wc_locales[0] != NULL)) ? wc_locales[0] : Empty_Locale)
279                 );
280                 if (wc_locales[nLocalesLoaded] == NULL) {
281                         lprintf(1, "Error configuring locale for %s: %s\n",
282                                 buf,
283                                 strerror(errno)
284                         );
285                 }
286                 else {
287                         lprintf(3, "Configured available locale: %s\n", buf);
288                         AvailLangLoaded[nLocalesLoaded] = AvailLang[i];
289                         nLocalesLoaded++;
290                 }
291 #endif
292         }
293 }
294
295
296 void ShutdownLocale(void)
297 {
298         int i;
299 #ifdef HAVE_USELOCALE
300         for (i = 0; i < nLocalesLoaded; ++i) {
301                 if (Empty_Locale != wc_locales[i])
302                         freelocale(wc_locales[i]);
303         }
304 #endif
305 }
306
307 #else   /* ENABLE_NLS */
308 /** \brief dummy for non NLS enabled systems */
309 void tmplput_offer_languages(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType) {
310         wprintf("English (US)");
311 }
312
313 /** \brief dummy for non NLS enabled systems */
314 void set_selected_language(char *lang) {
315 }
316
317 /** \brief dummy for non NLS enabled systems */
318 void go_selected_language(void) {
319 }
320
321 /** \brief dummy for non NLS enabled systems */
322 void stop_selected_language(void) {
323 }
324
325 void preset_locale(void)
326 {
327 }
328 #endif  /* ENABLE_NLS */
329
330
331 void TmplGettext(StrBuf *Target, int nTokens, WCTemplateToken *Tokens)
332 {
333         StrBufAppendBufPlain(Target, _(Tokens->Params[0]->Start), -1, 0);
334 }
335
336
337 /*
338  * Returns the language currently in use.
339  * This function returns a static string, so don't do anything stupid please.
340  */
341 const char *get_selected_language(void) {
342 #ifdef ENABLE_NLS
343 #ifdef HAVE_USELOCALE
344         return AvailLang[WC->selected_language];
345 #else
346         return "en"
347 #endif
348 #else
349         return "en"
350 #endif
351 }
352
353 void 
354 InitModule_GETTEXT
355 (void)
356 {
357         RegisterNamespace("LANG:SELECT", 0, 0, tmplput_offer_languages, CTX_NONE);
358 }