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
11 #include "webserver.h"
15 * \brief Strip surrounding single or double quotes from a string.
17 * \param s String to be stripped.
19 void stripquotes(char *s
)
28 if ( ( (s
[0] == '\"') && (s
[len
-1] == '\"') ) || ( (s
[0] == '\'') && (s
[len
-1] == '\'') ) ) {
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
)
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
, ';');
57 safestrncpy(buf
, ++ptr
, sizeof 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");
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
) {
91 StrBuf
*converted_msg
;
92 int buffer_length
= 1;
94 int content_length
= 0;
99 int script_start_pos
= (-1);
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 */
114 safestrncpy(charset
, supplied_charset
, sizeof charset
);
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
);
123 StrBufAppendPrintf(Target
, "<b>");
124 StrBufAppendPrintf(Target
, _("realloc() error! couldn't get %d bytes: %s"),
127 StrBufAppendPrintf(Target
, "</b><br /><br />\n");
128 while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
135 strcpy(&msg
[content_length
], buf
);
136 content_length
+= line_length
;
137 strcpy(&msg
[content_length
], "\n");
141 content_length
= StrLength(Source
);
143 msg
= (char*) ChrPtr(Source
);/* TODO: remove cast */
144 buffer_length
= content_length
;
147 /** Do a first pass to isolate the message body */
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;
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)) {
172 char *meta_http_equiv
;
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;
184 if (!strncasecmp(meta
, "HTTP-EQUIV=", 11)) {
185 meta_http_equiv
= strdup(&meta
[11]);
186 spaceptr
= strchr(meta_http_equiv
, ' ');
187 if (spaceptr
!= NULL
) {
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
);
199 free(meta_http_equiv
);
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;
216 if ((ptr
== NULL
) || (ptr
>= msgend
)) break;
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)) ) {
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. */
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) ) {
258 ibuflen
= content_length
;
259 obuflen
= content_length
+ (content_length
/ 2) ;
260 obuf
= (char *) malloc(obuflen
);
262 iconv(ic
, &ibuf
, &ibuflen
, &obuf
, &obuflen
);
263 content_length
= content_length
+ (content_length
/ 2) - obuflen
;
264 osav
[content_length
] = 0;
271 if (ic
!= (iconv_t
)(-1) ) {
272 StrBuf
*Buf
= NewStrBufPlain(NULL
, StrLength(Source
) + 8096);;
273 StrBufConvert(Source
, Buf
, &ic
);
276 msg
= (char*)ChrPtr(Source
); /* TODO: get rid of this. */
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
290 if (converted_msg
== NULL
) {
291 StrBufAppendPrintf(Target
, "Error %d: %s<br />%s:%d", errno
, strerror(errno
), __FILE__
, __LINE__
);
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
);
306 if (!strncasecmp(ptr
, "</script", 8)) {
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=");
324 /** Make external links open in a separate window */
325 else if (!strncasecmp(ptr
, "<a href=\"", 9)) {
328 if ( ((strchr(ptr
, ':') < strchr(ptr
, '/')))
329 && ((strchr(ptr
, '/') < strchr(ptr
, '>')))
331 /* open external links to new window */
332 StrBufAppendPrintf(converted_msg
, new_window
);
335 else if ( (treat_as_wiki
) && (strncasecmp(ptr
, "<a href=\"wiki?", 14)) ) {
336 content_length
+= 64;
337 StrBufAppendPrintf(converted_msg
, "<a href=\"wiki?page=");
341 StrBufAppendPrintf(converted_msg
, "<a href=\"");
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
;
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);
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);
370 StrBufAppendBufPlain(converted_msg
, ptr
, tag_end
- ptr
, 0);
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 */
384 strlenptr
= strlen(ptr
);
385 for (i
=0; i
<=strlenptr
; ++i
) {
399 /* did s.b. send us an entity? */
401 if ((ptr
[i
+2] ==';') ||
408 if (linklen
> 0) break;
417 linkedchar
= ptr
[len
];
419 /* spot for some subject strings tinymce tends to give us. */
420 ltreviewptr
= strchr(ptr
, '<');
421 if (ltreviewptr
!= NULL
) {
423 linklen
= ltreviewptr
- ptr
;
426 nbspreviewptr
= strstr(ptr
, " ");
427 if (nbspreviewptr
!= NULL
) {
428 /* nbspreviewptr = '\0'; */
429 linklen
= nbspreviewptr
- ptr
;
431 if (ltreviewptr
!= 0)
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);
442 StrBufAppendPrintf(converted_msg
, "</A>");
446 StrBufAppendBufPlain(converted_msg
, ptr
, 1, 0);
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) == '<') {
458 if (*(ptr
-1) == '>') {
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
;
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))
505 else if (!strncasecmp(pos
, "ftp://", 6))
510 StrBufAppendBuf(Target
, Source
, 0);
515 for (pos
= ChrPtr(Source
) + len
; pos
> start
; --pos
) {
516 if ( (!isprint(*pos
))
535 UrlLen
= end
- start
;
536 StrBufAppendBufPlain(WrkBuf
, start
, UrlLen
, 0);
538 Offset
= start
- ChrPtr(Source
);
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
));
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
;
559 lprintf(1, "URL: content longer than buffer!");
563 for (pos
= buf
; (pos
< end
) && (start
== NULL
); ++pos
) {
564 if (!strncasecmp(pos
, "http://", 7))
566 if (!strncasecmp(pos
, "ftp://", 6))
573 for (pos
= buf
+len
; pos
> start
; --pos
) {
574 if ( (!isprint(*pos
))
593 UrlLen
= end
- start
;
594 if (UrlLen
> sizeof(urlbuf
)){
595 lprintf(1, "URL: content longer than buffer!");
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!");
612 TrailerLen
= len
- (end
- start
);
614 memcpy(outbuf
+ Offset
+ outpos
, end
, TrailerLen
);
615 if (Offset
+ outpos
+ TrailerLen
> bufsize
) {
616 lprintf(1, "URL: content longer than buffer!");
619 memcpy (buf
, outbuf
, Offset
+ outpos
+ TrailerLen
);
620 *(buf
+ Offset
+ outpos
+ TrailerLen
) = '\0';