* Fix syntax errors in da.po
[citadel.git] / webcit / html2html.c
bloba91239d0a1a2fce03f64bae5b304cadd791b7277
1 /*
2 * $Id$
3 */
4 /**
5 * \defgroup HTML2HTML Output an HTML message, modifying it slightly to make sure it plays nice
6 * with the rest of our web framework.
7 * \ingroup WebcitHttpServer
8 */
9 /*@{*/
10 #include "webcit.h"
11 #include "webserver.h"
14 /**
15 * \brief Strip surrounding single or double quotes from a string.
17 * \param s String to be stripped.
19 void stripquotes(char *s)
21 int len;
23 if (!s) return;
25 len = strlen(s);
26 if (len < 2) return;
28 if ( ( (s[0] == '\"') && (s[len-1] == '\"') ) || ( (s[0] == '\'') && (s[len-1] == '\'') ) ) {
29 s[len-1] = 0;
30 strcpy(s, &s[1]);
35 /**
36 * \brief Check to see if a META tag has overridden the declared MIME character set.
38 * \param charset Character set name (left unchanged if we don't do anything)
39 * \param meta_http_equiv Content of the "http-equiv" portion of the META tag
40 * \param meta_content Content of the "content" portion of the META tag
42 void extract_charset_from_meta(char *charset, char *meta_http_equiv, char *meta_content)
44 char *ptr;
45 char buf[64];
47 if (!charset) return;
48 if (!meta_http_equiv) return;
49 if (!meta_content) return;
52 if (strcasecmp(meta_http_equiv, "Content-type")) return;
54 ptr = strchr(meta_content, ';');
55 if (!ptr) return;
57 safestrncpy(buf, ++ptr, sizeof buf);
58 striplt(buf);
59 if (!strncasecmp(buf, "charset=", 8)) {
60 strcpy(charset, &buf[8]);
63 * The brain-damaged webmail program in Microsoft Exchange declares
64 * a charset of "unicode" when they really mean "UTF-8". GNU iconv
65 * treats "unicode" as an alias for "UTF-16" so we have to manually
66 * fix this here, otherwise messages generated in Exchange webmail
67 * show up as a big pile of weird characters.
69 if (!strcasecmp(charset, "unicode")) {
70 strcpy(charset, "UTF-8");
78 /**
79 * \brief Sanitize and enhance an HTML message for display.
80 * Also convert weird character sets to UTF-8 if necessary.
81 * Also fixup img src="cid:..." type inline images to fetch the image
83 * \param supplied_charset the input charset as declared in the MIME headers
85 void output_html(const char *supplied_charset, int treat_as_wiki, int msgnum, StrBuf *Source, StrBuf *Target) {
86 char buf[SIZ];
87 char *msg;
88 char *ptr;
89 char *msgstart;
90 char *msgend;
91 StrBuf *converted_msg;
92 int buffer_length = 1;
93 int line_length = 0;
94 int content_length = 0;
95 char new_window[SIZ];
96 int brak = 0;
97 int alevel = 0;
98 int scriptlevel = 0;
99 int script_start_pos = (-1);
100 int i;
101 int linklen;
102 char charset[128];
103 #ifdef HAVE_ICONV
104 iconv_t ic = (iconv_t)(-1) ;
105 char *ibuf; /**< Buffer of characters to be converted */
106 char *obuf; /**< Buffer for converted characters */
107 size_t ibuflen; /**< Length of input buffer */
108 size_t obuflen; /**< Length of output buffer */
109 char *osav; /**< Saved pointer to output buffer */
110 #endif
111 if (Target == NULL)
112 Target = WC->WBuf;
114 safestrncpy(charset, supplied_charset, sizeof charset);
115 msg = strdup("");
116 sprintf(new_window, "<a target=\"%s\" href=", TARGET);
118 if (Source == NULL) while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
119 line_length = strlen(buf);
120 buffer_length = content_length + line_length + 2;
121 ptr = realloc(msg, buffer_length);
122 if (ptr == NULL) {
123 StrBufAppendPrintf(Target, "<b>");
124 StrBufAppendPrintf(Target, _("realloc() error! couldn't get %d bytes: %s"),
125 buffer_length + 1,
126 strerror(errno));
127 StrBufAppendPrintf(Target, "</b><br /><br />\n");
128 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
129 /** flush */
131 free(msg);
132 return;
134 msg = ptr;
135 strcpy(&msg[content_length], buf);
136 content_length += line_length;
137 strcpy(&msg[content_length], "\n");
138 content_length += 1;
140 else {
141 content_length = StrLength(Source);
142 free(msg);
143 msg = (char*) ChrPtr(Source);/* TODO: remove cast */
144 buffer_length = content_length;
147 /** Do a first pass to isolate the message body */
148 ptr = msg + 1;
149 msgstart = msg;
150 msgend = &msg[content_length];
152 while (ptr < msgend) {
154 /** Advance to next tag */
155 ptr = strchr(ptr, '<');
156 if ((ptr == NULL) || (ptr >= msgend)) break;
157 ++ptr;
158 if ((ptr == NULL) || (ptr >= msgend)) break;
161 * Look for META tags. Some messages (particularly in
162 * Asian locales) illegally declare a message's character
163 * set in the HTML instead of in the MIME headers. This
164 * is wrong but we have to work around it anyway.
166 if (!strncasecmp(ptr, "META", 4)) {
168 char *meta_start;
169 char *meta_end;
170 int meta_length;
171 char *meta;
172 char *meta_http_equiv;
173 char *meta_content;
174 char *spaceptr;
176 meta_start = &ptr[4];
177 meta_end = strchr(ptr, '>');
178 if ((meta_end != NULL) && (meta_end <= msgend)) {
179 meta_length = meta_end - meta_start + 1;
180 meta = malloc(meta_length + 1);
181 safestrncpy(meta, meta_start, meta_length);
182 meta[meta_length] = 0;
183 striplt(meta);
184 if (!strncasecmp(meta, "HTTP-EQUIV=", 11)) {
185 meta_http_equiv = strdup(&meta[11]);
186 spaceptr = strchr(meta_http_equiv, ' ');
187 if (spaceptr != NULL) {
188 *spaceptr = 0;
189 meta_content = strdup(++spaceptr);
190 if (!strncasecmp(meta_content, "content=", 8)) {
191 strcpy(meta_content, &meta_content[8]);
192 stripquotes(meta_http_equiv);
193 stripquotes(meta_content);
194 extract_charset_from_meta(charset,
195 meta_http_equiv, meta_content);
197 free(meta_content);
199 free(meta_http_equiv);
201 free(meta);
206 * Any of these tags cause everything up to and including
207 * the tag to be removed.
209 if ( (!strncasecmp(ptr, "HTML", 4))
210 ||(!strncasecmp(ptr, "HEAD", 4))
211 ||(!strncasecmp(ptr, "/HEAD", 5))
212 ||(!strncasecmp(ptr, "BODY", 4)) ) {
213 ptr = strchr(ptr, '>');
214 if ((ptr == NULL) || (ptr >= msgend)) break;
215 ++ptr;
216 if ((ptr == NULL) || (ptr >= msgend)) break;
217 msgstart = ptr;
221 * Any of these tags cause everything including and following
222 * the tag to be removed.
224 if ( (!strncasecmp(ptr, "/HTML", 5))
225 ||(!strncasecmp(ptr, "/BODY", 5)) ) {
226 --ptr;
227 msgend = ptr;
228 strcpy(ptr, "");
232 ++ptr;
234 if (msgstart > msg) {
235 strcpy(msg, msgstart);
238 /** Now go through the message, parsing tags as necessary. */
239 converted_msg = NewStrBufPlain(NULL, content_length + 8192);
242 /** Convert foreign character sets to UTF-8 if necessary. */
243 #ifdef HAVE_ICONV
244 if ( (strcasecmp(charset, "us-ascii"))
245 && (strcasecmp(charset, "UTF-8"))
246 && (strcasecmp(charset, ""))
248 lprintf(9, "Converting %s to UTF-8\n", charset);
249 ctdl_iconv_open("UTF-8", charset, &ic);
250 if (ic == (iconv_t)(-1) ) {
251 lprintf(5, "%s:%d iconv_open() failed: %s\n",
252 __FILE__, __LINE__, strerror(errno));
255 if (Source == NULL) {
256 if (ic != (iconv_t)(-1) ) {
257 ibuf = msg;
258 ibuflen = content_length;
259 obuflen = content_length + (content_length / 2) ;
260 obuf = (char *) malloc(obuflen);
261 osav = obuf;
262 iconv(ic, &ibuf, &ibuflen, &obuf, &obuflen);
263 content_length = content_length + (content_length / 2) - obuflen;
264 osav[content_length] = 0;
265 free(msg);
266 msg = osav;
267 iconv_close(ic);
270 else {
271 if (ic != (iconv_t)(-1) ) {
272 StrBuf *Buf = NewStrBufPlain(NULL, StrLength(Source) + 8096);;
273 StrBufConvert(Source, Buf, &ic);
274 FreeStrBuf(&Buf);
275 iconv_close(ic);
276 msg = (char*)ChrPtr(Source); /* TODO: get rid of this. */
280 #endif
283 * At this point, the message has been stripped down to
284 * only the content inside the <BODY></BODY> tags, and has
285 * been converted to UTF-8 if it was originally in a foreign
286 * character set. The text is also guaranteed to be null
287 * terminated now.
290 if (converted_msg == NULL) {
291 StrBufAppendPrintf(Target, "Error %d: %s<br />%s:%d", errno, strerror(errno), __FILE__, __LINE__);
292 goto BAIL;
295 ptr = msg;
296 msgend = strchr(msg, 0);
297 while (ptr < msgend) {
299 /** Try to sanitize the html of any rogue scripts */
300 if (!strncasecmp(ptr, "<script", 7)) {
301 if (scriptlevel == 0) {
302 script_start_pos = StrLength(converted_msg);
304 ++scriptlevel;
306 if (!strncasecmp(ptr, "</script", 8)) {
307 --scriptlevel;
311 * Change mailto: links to WebCit mail, by replacing the
312 * link with one that points back to our mail room. Due to
313 * the way we parse URL's, it'll even handle mailto: links
314 * that have "?subject=" in them.
316 if (!strncasecmp(ptr, "<a href=\"mailto:", 16)) {
317 content_length += 64;
318 StrBufAppendPrintf(converted_msg,
319 "<a href=\"display_enter?force_room=_MAIL_&recp=");
320 ptr = &ptr[16];
321 ++alevel;
322 ++brak;
324 /** Make external links open in a separate window */
325 else if (!strncasecmp(ptr, "<a href=\"", 9)) {
326 ++alevel;
327 ++brak;
328 if ( ((strchr(ptr, ':') < strchr(ptr, '/')))
329 && ((strchr(ptr, '/') < strchr(ptr, '>')))
331 /* open external links to new window */
332 StrBufAppendPrintf(converted_msg, new_window);
333 ptr = &ptr[8];
335 else if ( (treat_as_wiki) && (strncasecmp(ptr, "<a href=\"wiki?", 14)) ) {
336 content_length += 64;
337 StrBufAppendPrintf(converted_msg, "<a href=\"wiki?page=");
338 ptr = &ptr[9];
340 else {
341 StrBufAppendPrintf(converted_msg, "<a href=\"");
342 ptr = &ptr[9];
345 /** Fixup <img src="cid:... ...> to fetch the mime part */
346 else if (!strncasecmp(ptr, "<img ", 5)) {
347 char* tag_end=strchr(ptr,'>');
348 char* src=strstr(ptr, " src=\"cid:");
349 char *cid_start, *cid_end;
350 ++brak;
352 if (src &&
353 (cid_start=strchr(src,':')) &&
354 (cid_end=strchr(cid_start,'"')) &&
355 (cid_end < tag_end)) {
357 /* copy tag and attributes up to src="cid: */
358 StrBufAppendBufPlain(converted_msg, ptr, src - ptr, 0);
359 cid_start++;
361 /* add in /webcit/mimepart/<msgno>/CID/
362 trailing / stops dumb URL filters getting excited */
363 StrBufAppendPrintf(converted_msg,
364 "src=\"/webcit/mimepart/%d/",msgnum);
365 StrBufAppendBufPlain(converted_msg, cid_start, cid_end - cid_start, 0);
366 StrBufAppendBufPlain(converted_msg, "/\"", -1, 0);
368 ptr = cid_end+1;
370 StrBufAppendBufPlain(converted_msg, ptr, tag_end - ptr, 0);
371 ptr = tag_end;
375 * Turn anything that looks like a URL into a real link, as long
376 * as it's not inside a tag already
378 else if ( (brak == 0) && (alevel == 0)
379 && (!strncasecmp(ptr, "http://", 7))) {
380 /** Find the end of the link */
381 int strlenptr;
382 linklen = 0;
384 strlenptr = strlen(ptr);
385 for (i=0; i<=strlenptr; ++i) {
386 if ((ptr[i]==0)
387 ||(isspace(ptr[i]))
388 ||(ptr[i]==10)
389 ||(ptr[i]==13)
390 ||(ptr[i]=='(')
391 ||(ptr[i]==')')
392 ||(ptr[i]=='<')
393 ||(ptr[i]=='>')
394 ||(ptr[i]=='[')
395 ||(ptr[i]==']')
396 ||(ptr[i]=='"')
397 ||(ptr[i]=='\'')
398 ) linklen = i;
399 /* did s.b. send us an entity? */
400 if (ptr[i] == '&') {
401 if ((ptr[i+2] ==';') ||
402 (ptr[i+3] ==';') ||
403 (ptr[i+5] ==';') ||
404 (ptr[i+6] ==';') ||
405 (ptr[i+7] ==';'))
406 linklen = i;
408 if (linklen > 0) break;
410 if (linklen > 0) {
411 char *ltreviewptr;
412 char *nbspreviewptr;
413 char linkedchar;
414 int len = linklen;
416 len = linklen;
417 linkedchar = ptr[len];
418 ptr[len] = '\0';
419 /* spot for some subject strings tinymce tends to give us. */
420 ltreviewptr = strchr(ptr, '<');
421 if (ltreviewptr != NULL) {
422 *ltreviewptr = '\0';
423 linklen = ltreviewptr - ptr;
426 nbspreviewptr = strstr(ptr, "&nbsp;");
427 if (nbspreviewptr != NULL) {
428 /* nbspreviewptr = '\0'; */
429 linklen = nbspreviewptr - ptr;
431 if (ltreviewptr != 0)
432 *ltreviewptr = '<';
434 ptr[len] = linkedchar;
436 content_length += (32 + linklen);
437 StrBufAppendPrintf(converted_msg, "%s\"", new_window);
438 StrBufAppendBufPlain(converted_msg, ptr, linklen, 0);
439 StrBufAppendPrintf(converted_msg, "\">");
440 StrBufAppendBufPlain(converted_msg, ptr, linklen, 0);
441 ptr += linklen;
442 StrBufAppendPrintf(converted_msg, "</A>");
445 else {
446 StrBufAppendBufPlain(converted_msg, ptr, 1, 0);
447 ptr++;
451 * We need to know when we're inside a tag,
452 * so we don't turn things that look like URL's into
453 * links, when they're already links - or image sources.
455 if (*(ptr-1) == '<') {
456 ++brak;
458 if (*(ptr-1) == '>') {
459 --brak;
460 if ((scriptlevel == 0) && (script_start_pos >= 0)) {
461 StrBufCutRight(converted_msg, StrLength(converted_msg) - script_start_pos);
462 script_start_pos = (-1);
465 if (!strncasecmp(ptr, "</A>", 3)) --alevel;
468 /** uncomment these two lines to override conversion */
469 /** memcpy(converted_msg, msg, content_length); */
470 /** output_length = content_length; */
472 /** Output our big pile of markup */
473 StrBufAppendBuf(Target, converted_msg, 0);
475 BAIL: /** A little trailing vertical whitespace... */
476 StrBufAppendPrintf(Target, "<br /><br />\n");
478 /** Now give back the memory */
479 FreeStrBuf(&converted_msg);
480 if ((msg != NULL) && (Source == NULL)) free(msg);
489 * Look for URL's embedded in a buffer and make them linkable. We use a
490 * target window in order to keep the Citadel session in its own window.
492 void UrlizeText(StrBuf* Target, StrBuf *Source, StrBuf *WrkBuf)
494 int len, UrlLen, Offset, TrailerLen;
495 const char *start, *end, *pos;
497 FlushStrBuf(Target);
499 start = NULL;
500 len = StrLength(Source);
501 end = ChrPtr(Source) + len;
502 for (pos = ChrPtr(Source); (pos < end) && (start == NULL); ++pos) {
503 if (!strncasecmp(pos, "http://", 7))
504 start = pos;
505 else if (!strncasecmp(pos, "ftp://", 6))
506 start = pos;
509 if (start == NULL) {
510 StrBufAppendBuf(Target, Source, 0);
511 return;
513 FlushStrBuf(WrkBuf);
515 for (pos = ChrPtr(Source) + len; pos > start; --pos) {
516 if ( (!isprint(*pos))
517 || (isspace(*pos))
518 || (*pos == '{')
519 || (*pos == '}')
520 || (*pos == '|')
521 || (*pos == '\\')
522 || (*pos == '^')
523 || (*pos == '[')
524 || (*pos == ']')
525 || (*pos == '`')
526 || (*pos == '<')
527 || (*pos == '>')
528 || (*pos == '(')
529 || (*pos == ')')
531 end = pos;
535 UrlLen = end - start;
536 StrBufAppendBufPlain(WrkBuf, start, UrlLen, 0);
538 Offset = start - ChrPtr(Source);
539 if (Offset != 0)
540 StrBufAppendBufPlain(Target, ChrPtr(Source), Offset, 0);
541 StrBufAppendPrintf(Target, "%ca href=%c%s%c TARGET=%c%s%c%c%s%c/A%c",
542 LB, QU, ChrPtr(WrkBuf), QU, QU, TARGET,
543 QU, RB, ChrPtr(WrkBuf), LB, RB);
545 TrailerLen = StrLength(Source) - (end - ChrPtr(Source));
546 if (TrailerLen > 0)
547 StrBufAppendBufPlain(Target, end, TrailerLen, 0);
549 void url(char *buf, size_t bufsize)
551 int len, UrlLen, Offset, TrailerLen, outpos;
552 char *start, *end, *pos;
553 char urlbuf[SIZ];
554 char outbuf[SIZ];
556 start = NULL;
557 len = strlen(buf);
558 if (len > bufsize) {
559 lprintf(1, "URL: content longer than buffer!");
560 return;
562 end = buf + len;
563 for (pos = buf; (pos < end) && (start == NULL); ++pos) {
564 if (!strncasecmp(pos, "http://", 7))
565 start = pos;
566 if (!strncasecmp(pos, "ftp://", 6))
567 start = pos;
570 if (start == NULL)
571 return;
573 for (pos = buf+len; pos > start; --pos) {
574 if ( (!isprint(*pos))
575 || (isspace(*pos))
576 || (*pos == '{')
577 || (*pos == '}')
578 || (*pos == '|')
579 || (*pos == '\\')
580 || (*pos == '^')
581 || (*pos == '[')
582 || (*pos == ']')
583 || (*pos == '`')
584 || (*pos == '<')
585 || (*pos == '>')
586 || (*pos == '(')
587 || (*pos == ')')
589 end = pos;
593 UrlLen = end - start;
594 if (UrlLen > sizeof(urlbuf)){
595 lprintf(1, "URL: content longer than buffer!");
596 return;
598 memcpy(urlbuf, start, UrlLen);
599 urlbuf[UrlLen] = '\0';
601 Offset = start - buf;
602 if ((Offset != 0) && (Offset < sizeof(outbuf)))
603 memcpy(outbuf, buf, Offset);
604 outpos = snprintf(&outbuf[Offset], sizeof(outbuf) - Offset,
605 "%ca href=%c%s%c TARGET=%c%s%c%c%s%c/A%c",
606 LB, QU, urlbuf, QU, QU, TARGET, QU, RB, urlbuf, LB, RB);
607 if (outpos >= sizeof(outbuf) - Offset) {
608 lprintf(1, "URL: content longer than buffer!");
609 return;
612 TrailerLen = len - (end - start);
613 if (TrailerLen > 0)
614 memcpy(outbuf + Offset + outpos, end, TrailerLen);
615 if (Offset + outpos + TrailerLen > bufsize) {
616 lprintf(1, "URL: content longer than buffer!");
617 return;
619 memcpy (buf, outbuf, Offset + outpos + TrailerLen);
620 *(buf + Offset + outpos + TrailerLen) = '\0';
626 /*@}*/