* upsie, don't leak.
[citadel.git] / webcit / msg_renderers.c
1 /*----------------------------------------------------------------------------*/
2 #include "webcit.h"
3 #include "webserver.h"
4
5 /**
6  * message index functions
7  */
8
9 void DestroyMimeParts(wc_mime_attachment *Mime)
10 {
11         FreeStrBuf(&Mime->Name);
12         FreeStrBuf(&Mime->FileName);
13         FreeStrBuf(&Mime->PartNum);
14         FreeStrBuf(&Mime->Disposition);
15         FreeStrBuf(&Mime->ContentType);
16         FreeStrBuf(&Mime->Charset);
17         FreeStrBuf(&Mime->Data);
18 }
19
20 void DestroyMime(void *vMime)
21 {
22         wc_mime_attachment *Mime = (wc_mime_attachment*)vMime;
23         DestroyMimeParts(Mime);
24         free(Mime);
25 }
26
27 void DestroyMessageSummary(void *vMsg)
28 {
29         message_summary *Msg = (message_summary*) vMsg;
30
31         FreeStrBuf(&Msg->from);
32         FreeStrBuf(&Msg->to);
33         FreeStrBuf(&Msg->subj);
34         FreeStrBuf(&Msg->reply_inreplyto);
35         FreeStrBuf(&Msg->reply_references);
36         FreeStrBuf(&Msg->cccc);
37         FreeStrBuf(&Msg->hnod);
38         FreeStrBuf(&Msg->AllRcpt);
39         FreeStrBuf(&Msg->Room);
40         FreeStrBuf(&Msg->Rfca);
41         FreeStrBuf(&Msg->OtherNode);
42
43         FreeStrBuf(&Msg->reply_to);
44
45         DeleteHash(&Msg->Attachments);  /**< list of Accachments */
46         DeleteHash(&Msg->Submessages);
47         DeleteHash(&Msg->AttachLinks);
48         DeleteHash(&Msg->AllAttach);
49         free(Msg);
50 }
51
52
53
54 void RegisterMsgHdr(const char *HeaderName, long HdrNLen, ExamineMsgHeaderFunc evaluator, int type)
55 {
56         headereval *ev;
57         ev = (headereval*) malloc(sizeof(headereval));
58         ev->evaluator = evaluator;
59         ev->Type = type;
60         Put(MsgHeaderHandler, HeaderName, HdrNLen, ev, NULL);
61 }
62
63 void RegisterMimeRenderer(const char *HeaderName, long HdrNLen, RenderMimeFunc MimeRenderer)
64 {
65         Put(MimeRenderHandler, HeaderName, HdrNLen, MimeRenderer, reference_free_handler);
66         
67 }
68
69 /*----------------------------------------------------------------------------*/
70
71
72 void examine_nhdr(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
73 {
74         Msg->nhdr = 0;
75         if (!strncasecmp(ChrPtr(HdrLine), "yes", 8))
76                 Msg->nhdr = 1;
77 }
78 int Conditional_ANONYMOUS_MESSAGE(WCTemplateToken *Tokens, void *Context, int ContextType)
79 {
80         message_summary *Msg = (message_summary*) Context;
81         return Msg->nhdr != 0;
82 }
83
84
85 void examine_type(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
86 {
87         Msg->format_type = StrToi(HdrLine);
88                         
89 }
90
91 void examine_from(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
92 {
93         FreeStrBuf(&Msg->from);
94         Msg->from = NewStrBufPlain(NULL, StrLength(HdrLine));
95         StrBuf_RFC822_to_Utf8(Msg->from, HdrLine, WC->DefaultCharset, FoundCharset);
96 }
97 void tmplput_MAIL_SUMM_FROM(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
98 {
99         message_summary *Msg = (message_summary*) Context;
100         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->from, 0);
101 }
102
103
104
105 void examine_subj(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
106 {
107         FreeStrBuf(&Msg->subj);
108         Msg->subj = NewStrBufPlain(NULL, StrLength(HdrLine));
109         StrBuf_RFC822_to_Utf8(Msg->subj, HdrLine, WC->DefaultCharset, FoundCharset);
110 }
111 void tmplput_MAIL_SUMM_SUBJECT(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
112 {/////TODO: Fwd: and RE: filter!!
113         message_summary *Msg = (message_summary*) Context;
114         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->subj, 0);
115 }
116
117
118 void examine_msgn(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
119 {
120         FreeStrBuf(&Msg->reply_inreplyto);
121         Msg->reply_inreplyto = NewStrBufPlain(NULL, StrLength(HdrLine));
122         StrBuf_RFC822_to_Utf8(Msg->reply_inreplyto, HdrLine, WC->DefaultCharset, FoundCharset);
123 }
124 void tmplput_MAIL_SUMM_INREPLYTO(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
125 {
126         message_summary *Msg = (message_summary*) Context;
127         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->reply_inreplyto, 0);
128 }
129
130 int Conditional_MAIL_SUMM_UNREAD(WCTemplateToken *Tokens, void *Context, int ContextType)
131 {
132         message_summary *Msg = (message_summary*) Context;
133         return Msg->is_new != 0;
134 }
135
136 void examine_wefw(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
137 {
138         FreeStrBuf(&Msg->reply_references);
139         Msg->reply_references = NewStrBufPlain(NULL, StrLength(HdrLine));
140         StrBuf_RFC822_to_Utf8(Msg->reply_references, HdrLine, WC->DefaultCharset, FoundCharset);
141 }
142 void tmplput_MAIL_SUMM_REFIDS(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
143 {
144         message_summary *Msg = (message_summary*) Context;
145         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->reply_references, 0);
146 }
147
148
149 void examine_cccc(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
150 {
151         FreeStrBuf(&Msg->cccc);
152         Msg->cccc = NewStrBufPlain(NULL, StrLength(HdrLine));
153         StrBuf_RFC822_to_Utf8(Msg->cccc, HdrLine, WC->DefaultCharset, FoundCharset);
154         if (Msg->AllRcpt == NULL)
155                 Msg->AllRcpt = NewStrBufPlain(NULL, StrLength(HdrLine));
156         if (StrLength(Msg->AllRcpt) > 0) {
157                 StrBufAppendBufPlain(Msg->AllRcpt, HKEY(", "), 0);
158         }
159         StrBufAppendBuf(Msg->AllRcpt, Msg->cccc, 0);
160 }
161 void tmplput_MAIL_SUMM_CCCC(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
162 {
163         message_summary *Msg = (message_summary*) Context;
164         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->cccc, 0);
165 }
166
167
168
169
170 void examine_room(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
171 {
172         if ((StrLength(HdrLine) > 0) &&
173             (strcasecmp(ChrPtr(HdrLine), WC->wc_roomname))) {
174                 FreeStrBuf(&Msg->Room);
175                 Msg->Room = NewStrBufDup(HdrLine);              
176         }
177 }
178 void tmplput_MAIL_SUMM_ORGROOM(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
179 {
180         message_summary *Msg = (message_summary*) Context;
181         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->Room, 0);
182 }
183
184
185 void examine_rfca(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
186 {
187         FreeStrBuf(&Msg->Rfca);
188         Msg->Rfca = NewStrBufDup(HdrLine);
189 }
190 void tmplput_MAIL_SUMM_RFCA(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
191 {
192         message_summary *Msg = (message_summary*) Context;
193         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->Rfca, 0);
194 }
195 int Conditional_MAIL_SUMM_RFCA(WCTemplateToken *Tokens, void *Context, int ContextType)
196 {
197         message_summary *Msg = (message_summary*) Context;
198         return StrLength(Msg->Rfca) > 0;
199 }
200
201 void examine_node(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
202 {
203         if ( (StrLength(HdrLine) > 0) &&
204              ((WC->room_flags & QR_NETWORK)
205               || ((strcasecmp(ChrPtr(HdrLine), serv_info.serv_nodename)
206                    && (strcasecmp(ChrPtr(HdrLine), serv_info.serv_fqdn)))))) {
207                 FreeStrBuf(&Msg->OtherNode);
208                 Msg->OtherNode = NewStrBufDup(HdrLine);
209         }
210 }
211 void tmplput_MAIL_SUMM_OTHERNODE(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
212 {
213         message_summary *Msg = (message_summary*) Context;
214         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->OtherNode, 0);
215 }
216 int Conditional_MAIL_SUMM_OTHERNODE(WCTemplateToken *Tokens, void *Context, int ContextType)
217 {
218         message_summary *Msg = (message_summary*) Context;
219         return StrLength(Msg->OtherNode) > 0;
220 }
221
222
223 void examine_rcpt(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
224 {
225         FreeStrBuf(&Msg->to);
226         Msg->to = NewStrBufPlain(NULL, StrLength(HdrLine));
227         StrBuf_RFC822_to_Utf8(Msg->to, HdrLine, WC->DefaultCharset, FoundCharset);
228         if (Msg->AllRcpt == NULL)
229                 Msg->AllRcpt = NewStrBufPlain(NULL, StrLength(HdrLine));
230         if (StrLength(Msg->AllRcpt) > 0) {
231                 StrBufAppendBufPlain(Msg->AllRcpt, HKEY(", "), 0);
232         }
233         StrBufAppendBuf(Msg->AllRcpt, Msg->to, 0);
234 }
235 void tmplput_MAIL_SUMM_TO(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
236 {
237         message_summary *Msg = (message_summary*) Context;
238         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->to, 0);
239 }
240 void tmplput_MAIL_SUMM_ALLRCPT(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
241 {
242         message_summary *Msg = (message_summary*) Context;
243         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->AllRcpt, 0);
244 }
245
246
247
248 void examine_time(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
249 {
250         Msg->date = StrTol(HdrLine);
251 }
252 void tmplput_MAIL_SUMM_DATE_STR(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
253 {
254         char datebuf[64];
255         message_summary *Msg = (message_summary*) Context;
256         webcit_fmt_date(datebuf, Msg->date, 1);
257         StrBufAppendBufPlain(Target, datebuf, -1, 0);
258 }
259 void tmplput_MAIL_SUMM_DATE_NO(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
260 {
261         message_summary *Msg = (message_summary*) Context;
262         StrBufAppendPrintf(Target, "%ld", Msg->date, 0);
263 }
264
265
266
267 void render_MAIL(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundCharset)
268 {
269         Mime->Data = NewStrBufPlain(NULL, Mime->length);
270         read_message(Mime->Data, HKEY("view_submessage"), Mime->msgnum, 0, Mime->PartNum);
271 /*
272         if ( (!IsEmptyStr(mime_submessages)) && (!section[0]) ) {
273                 for (i=0; i<num_tokens(mime_submessages, '|'); ++i) {
274                         extract_token(buf, mime_submessages, i, '|', sizeof buf);
275                         /** use printable_view to suppress buttons * /
276                         wprintf("<blockquote>");
277                         read_message(Mime->msgnum, 1, ChrPtr(Mime->Section));
278                         wprintf("</blockquote>");
279                 }
280         }
281 */
282 }
283
284 void render_MIME_VCard(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundCharset)
285 {
286         MimeLoadData(Mime);
287         if (StrLength(Mime->Data) > 0) {
288                 StrBuf *Buf;
289                 Buf = NewStrBuf();
290                 /** If it's my vCard I can edit it */
291                 if (    (!strcasecmp(WC->wc_roomname, USERCONFIGROOM))
292                         || (!strcasecmp(&WC->wc_roomname[11], USERCONFIGROOM))
293                         || (WC->wc_view == VIEW_ADDRESSBOOK)
294                         ) {
295                         StrBufAppendPrintf(Buf, "<a href=\"edit_vcard?msgnum=%ld&partnum=%s\">",
296                                 Mime->msgnum, ChrPtr(Mime->PartNum));
297                         StrBufAppendPrintf(Buf, "[%s]</a>", _("edit"));
298                 }
299
300                 /* In all cases, display the full card */
301                 display_vcard(Buf, ChrPtr(Mime->Data), 0, 1, NULL, Mime->msgnum);
302                 FreeStrBuf(&Mime->Data);
303                 Mime->Data = Buf;
304         }
305
306 }
307 void render_MIME_ICS(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundCharset)
308 {
309         MimeLoadData(Mime);
310         if (StrLength(Mime->Data) > 0) {
311                 cal_process_attachment(Mime);
312         }
313 }
314
315
316
317 void examine_mime_part(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
318 {
319         wc_mime_attachment *Mime;
320         StrBuf *Buf;
321         
322         Mime = (wc_mime_attachment*) malloc(sizeof(wc_mime_attachment));
323         memset(Mime, 0, sizeof(wc_mime_attachment));
324         Mime->msgnum = Msg->msgnum;
325         Buf = NewStrBuf();
326
327         Mime->Name = NewStrBuf();
328         StrBufExtract_token(Buf, HdrLine, 0, '|');
329         StrBuf_RFC822_to_Utf8(Mime->Name, Buf, WC->DefaultCharset, FoundCharset);
330         StrBufTrim(Mime->Name);
331
332         StrBufExtract_token(Buf, HdrLine, 1, '|');
333         Mime->FileName = NewStrBuf();
334         StrBuf_RFC822_to_Utf8(Mime->FileName, Buf, WC->DefaultCharset, FoundCharset);
335         StrBufTrim(Mime->FileName);
336
337         Mime->PartNum = NewStrBuf();
338         StrBufExtract_token(Mime->PartNum, HdrLine, 2, '|');
339         StrBufTrim(Mime->PartNum);
340         if (strchr(ChrPtr(Mime->PartNum), '.') != NULL)
341                 Mime->level = 2;
342         else
343                 Mime->level = 1;
344
345         Mime->Disposition = NewStrBuf();
346         StrBufExtract_token(Mime->Disposition, HdrLine, 3, '|');
347
348         Mime->ContentType = NewStrBuf();
349         StrBufExtract_token(Mime->ContentType, HdrLine, 4, '|');
350         StrBufTrim(Mime->ContentType);
351         StrBufLowerCase(Mime->ContentType);
352
353         Mime->length = StrBufExtract_int(HdrLine, 5, '|');
354
355         if ( (StrLength(Mime->FileName) == 0) && (StrLength(Mime->Name) > 0) ) {
356                 StrBufAppendBuf(Mime->FileName, Mime->Name, 0);
357         }
358
359         if (StrLength(Msg->PartNum) > 0) {
360                 StrBuf *tmp;
361                 StrBufPrintf(Buf, "%s.%s", ChrPtr(Msg->PartNum), ChrPtr(Mime->PartNum));
362                 tmp = Mime->PartNum;
363                 Mime->PartNum = Buf;
364                 Buf = tmp;
365         }
366
367         if (Msg->AllAttach == NULL)
368                 Msg->AllAttach = NewHash(1,NULL);
369         Put(Msg->AllAttach, SKEY(Mime->PartNum), Mime, DestroyMime);
370         FreeStrBuf(&Buf);
371 }
372
373
374 void evaluate_mime_part(message_summary *Msg, wc_mime_attachment *Mime)
375 {
376         void *vMimeRenderer;
377
378         /* just print the root-node */
379         if ((Mime->level == 1) &&
380             GetHash(MimeRenderHandler, SKEY(Mime->ContentType), &vMimeRenderer) &&
381             vMimeRenderer != NULL)
382         {
383                 Mime->Renderer = (RenderMimeFunc) vMimeRenderer;
384                 if (Msg->Submessages == NULL)
385                         Msg->Submessages = NewHash(1,NULL);
386                 Put(Msg->Submessages, SKEY(Mime->PartNum), Mime, reference_free_handler);
387         }
388         else if ((Mime->level == 1) &&
389                  (!strcasecmp(ChrPtr(Mime->Disposition), "inline"))
390                  && (!strncasecmp(ChrPtr(Mime->ContentType), "image/", 6)) ){
391                 if (Msg->AttachLinks == NULL)
392                         Msg->AttachLinks = NewHash(1,NULL);
393                 Put(Msg->AttachLinks, SKEY(Mime->PartNum), Mime, reference_free_handler);
394         }
395         else if ((Mime->level == 1) &&
396                  (StrLength(Mime->ContentType) > 0) &&
397                   ( (!strcasecmp(ChrPtr(Mime->Disposition), "attachment")) 
398                     || (!strcasecmp(ChrPtr(Mime->Disposition), "inline"))
399                     || (!strcasecmp(ChrPtr(Mime->Disposition), ""))))
400         {               
401                 if (Msg->AttachLinks == NULL)
402                         Msg->AttachLinks = NewHash(1,NULL);
403                 Put(Msg->AttachLinks, SKEY(Mime->PartNum), Mime, reference_free_handler);
404                 if (strcasecmp(ChrPtr(Mime->ContentType), "application/octet-stream") == 0) {
405                         FlushStrBuf(Mime->ContentType);
406                         StrBufAppendBufPlain(Mime->ContentType,
407                                              GuessMimeByFilename(SKEY(Mime->FileName)),
408                                              -1, 0);
409                 }
410         }
411 }
412
413 void tmplput_MAIL_SUMM_NATTACH(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
414 {
415         message_summary *Msg = (message_summary*) Context;
416         StrBufAppendPrintf(Target, "%ld", GetCount(Msg->Attachments));
417 }
418
419
420
421
422
423
424
425 void examine_hnod(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
426 {
427         FreeStrBuf(&Msg->hnod);
428         Msg->hnod = NewStrBufPlain(NULL, StrLength(HdrLine));
429         StrBuf_RFC822_to_Utf8(Msg->hnod, HdrLine, WC->DefaultCharset, FoundCharset);
430 }
431 void tmplput_MAIL_SUMM_H_NODE(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
432 {
433         message_summary *Msg = (message_summary*) Context;
434         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->hnod, 0);
435 }
436 int Conditional_MAIL_SUMM_H_NODE(WCTemplateToken *Tokens, void *Context, int ContextType)
437 {
438         message_summary *Msg = (message_summary*) Context;
439         return StrLength(Msg->hnod) > 0;
440 }
441
442
443
444 void examine_text(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
445 {
446         Msg->MsgBody->Data = NewStrBuf();
447 }
448
449 void examine_msg4_partnum(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
450 {
451         Msg->MsgBody->PartNum = NewStrBufDup(HdrLine);
452         StrBufTrim(Msg->MsgBody->PartNum);/////TODO: striplt == trim?
453 }
454
455 void examine_content_encoding(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
456 {
457 ////TODO: do we care?
458 }
459
460 void examine_content_lengh(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
461 {
462         Msg->MsgBody->length = StrTol(HdrLine);
463         Msg->MsgBody->size_known = 1;
464 }
465
466 void examine_content_type(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
467 {
468         void *vHdr;
469         headereval *Hdr;
470         StrBuf *Token;
471         StrBuf *Value;
472         const char* sem;
473         const char *eq;
474         int len;
475         StrBufTrim(HdrLine);
476         Msg->MsgBody->ContentType = NewStrBufDup(HdrLine);
477         sem = strchr(ChrPtr(HdrLine), ';');
478
479         if (sem != NULL) {
480                 Token = NewStrBufPlain(NULL, StrLength(HdrLine));
481                 Value = NewStrBufPlain(NULL, StrLength(HdrLine));
482                 len = sem - ChrPtr(HdrLine);
483                 StrBufCutAt(Msg->MsgBody->ContentType, len, NULL);
484                 while (sem != NULL) {
485                         while (isspace(*(sem + 1)))
486                                 sem ++;
487                         StrBufCutLeft(HdrLine, sem - ChrPtr(HdrLine));
488                         sem = strchr(ChrPtr(HdrLine), ';');
489                         if (sem != NULL)
490                                 len = sem - ChrPtr(HdrLine);
491                         else
492                                 len = StrLength(HdrLine);
493                         FlushStrBuf(Token);
494                         FlushStrBuf(Value);
495                         StrBufAppendBufPlain(Token, ChrPtr(HdrLine), len, 0);
496                         eq = strchr(ChrPtr(Token), '=');
497                         if (eq != NULL) {
498                                 len = eq - ChrPtr(Token);
499                                 StrBufAppendBufPlain(Value, eq + 1, StrLength(Token) - len - 1, 0); 
500                                 StrBufCutAt(Token, len, NULL);
501                                 StrBufTrim(Value);
502                         }
503                         StrBufTrim(Token);
504
505                         if (GetHash(MsgHeaderHandler, SKEY(Token), &vHdr) &&
506                             (vHdr != NULL)) {
507                                 Hdr = (headereval*)vHdr;
508                                 Hdr->evaluator(Msg, Value, FoundCharset);
509                         }
510                         else lprintf(1, "don't know how to handle content type sub-header[%s]\n", ChrPtr(Token));
511                 }
512                 FreeStrBuf(&Token);
513                 FreeStrBuf(&Value);
514         }
515 }
516
517 void tmplput_MAIL_SUMM_N(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
518 {
519         message_summary *Msg = (message_summary*) Context;
520         StrBufAppendPrintf(Target, "%ld", Msg->msgnum);
521 }
522
523
524
525 int Conditional_MAIL_MIME_ALL(WCTemplateToken *Tokens, void *Context, int ContextType)
526 {
527         message_summary *Msg = (message_summary*) Context;
528         return GetCount(Msg->Attachments) > 0;
529 }
530
531 int Conditional_MAIL_MIME_SUBMESSAGES(WCTemplateToken *Tokens, void *Context, int ContextType)
532 {
533         message_summary *Msg = (message_summary*) Context;
534         return GetCount(Msg->Submessages) > 0;
535 }
536
537 int Conditional_MAIL_MIME_ATTACHLINKS(WCTemplateToken *Tokens, void *Context, int ContextType)
538 {
539         message_summary *Msg = (message_summary*) Context;
540         return GetCount(Msg->AttachLinks) > 0;
541 }
542
543 int Conditional_MAIL_MIME_ATTACH(WCTemplateToken *Tokens, void *Context, int ContextType)
544 {
545         message_summary *Msg = (message_summary*) Context;
546         return GetCount(Msg->AllAttach) > 0;
547 }
548
549
550
551 /*----------------------------------------------------------------------------*/
552 void tmplput_QUOTED_MAIL_BODY(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
553 {
554         long MsgNum;
555         StrBuf *Buf;
556
557         MsgNum = LBstr(Tokens->Params[0]->Start, Tokens->Params[0]->len);
558         Buf = NewStrBuf();
559         read_message(Buf, HKEY("view_message_replyquote"), MsgNum, 0, NULL);
560         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Buf, 1);
561         FreeStrBuf(&Buf);
562 }
563
564 void tmplput_MAIL_BODY(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
565 {
566         message_summary *Msg = (message_summary*) Context;
567         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Msg->MsgBody->Data, 0);
568 }
569
570
571 void render_MAIL_variformat(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundCharset)
572 {
573         /* Messages in legacy Citadel variformat get handled thusly... */
574         StrBuf *Target = NewStrBufPlain(NULL, StrLength(Mime->Data));
575         FmOut(Target, "JUSTIFY", Mime->Data);
576         FreeStrBuf(&Mime->Data);
577         Mime->Data = Target;
578 }
579
580 void render_MAIL_text_plain(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundCharset)
581 {
582         StrBuf *cs = NULL;
583         const char *ptr, *pte;
584         const char *BufPtr = NULL;
585         StrBuf *Line = NewStrBuf();
586         StrBuf *Line1 = NewStrBuf();
587         StrBuf *Line2 = NewStrBuf();
588         StrBuf *Target = NewStrBufPlain(NULL, StrLength(Mime->Data));
589         int ConvertIt = 1;
590         int bn = 0;
591         int bq = 0;
592         int i, n, done = 0;
593         long len;
594 #ifdef HAVE_ICONV
595         iconv_t ic = (iconv_t)(-1) ;
596 #endif
597
598         if ((StrLength(Mime->Data) == 0) && (Mime->length > 0)) {
599                 FreeStrBuf(&Mime->Data);
600                 Mime->Data = NewStrBufPlain(NULL, Mime->length);
601                 if (!read_message(Mime->Data, HKEY("view_submessage"), Mime->msgnum, 0, Mime->PartNum))
602                         return;
603         }
604
605         /* Boring old 80-column fixed format text gets handled this way... */
606         if ((strcasecmp(ChrPtr(Mime->Charset), "us-ascii") == 0) &&
607             (strcasecmp(ChrPtr(Mime->Charset), "UTF-8") == 0))
608                 ConvertIt = 0;
609
610 #ifdef HAVE_ICONV
611         if (ConvertIt) {
612                 if (StrLength(Mime->Charset) != 0)
613                         cs = Mime->Charset;
614                 else if (StrLength(FoundCharset) > 0)
615                         cs = FoundCharset;
616                 else if (StrLength(WC->DefaultCharset) > 0)
617                         cs = WC->DefaultCharset;
618                 if (cs == 0) {
619                         ConvertIt = 0;
620                 }
621                 else {
622                         ctdl_iconv_open("UTF-8", ChrPtr(cs), &ic);
623                         if (ic == (iconv_t)(-1) ) {
624                                 lprintf(5, "%s:%d iconv_open(UTF-8, %s) failed: %s\n",
625                                         __FILE__, __LINE__, ChrPtr(Mime->Charset), strerror(errno));
626                         }
627                 }
628         }
629 #endif
630
631         while ((n = StrBufSipLine(Line, Mime->Data, &BufPtr), n >= 0) && !done)
632         {
633                 done = n == 0;
634                 bq = 0;
635                 i = 0;
636                 ptr = ChrPtr(Line);
637                 len = StrLength(Line);
638                 pte = ptr + len;
639                 
640                 while ((ptr < pte) &&
641                        ((*ptr == '>') ||
642                         isspace(*ptr)))
643                 {
644                         if (*ptr == '>')
645                                 bq++;
646                         ptr ++;
647                         i++;
648                 }
649                 if (i > 0) StrBufCutLeft(Line, i);
650                 
651                 if (StrLength(Line) == 0)
652                         continue;
653
654                 for (i = bn; i < bq; i++)                               
655                         StrBufAppendBufPlain(Target, HKEY("<blockquote>"), 0);
656                 for (i = bq; i < bn; i++)                               
657                         StrBufAppendBufPlain(Target, HKEY("</blockquote>"), 0);
658
659                 if (ConvertIt == 1) {
660                         StrBufConvert(Line, Line1, &ic);
661                 }
662
663                 StrBufAppendBufPlain(Target, HKEY("<tt>"), 0);
664                 UrlizeText(Line1, Line, Line2);
665
666                 StrEscAppend(Target, Line1, NULL, 0, 0);
667                 StrBufAppendBufPlain(Target, HKEY("</tt><br />\n"), 0);
668                 bn = bq;
669         }
670
671         for (i = 0; i < bn; i++)                                
672                 StrBufAppendBufPlain(Target, HKEY("</blockquote>"), 0);
673
674         StrBufAppendBufPlain(Target, HKEY("</i><br />"), 0);
675 #ifdef HAVE_ICONV
676         if (ic != (iconv_t)(-1) ) {
677                 iconv_close(ic);
678         }
679 #endif
680         FreeStrBuf(&Mime->Data);
681         Mime->Data = Target;
682         FreeStrBuf(&Line);
683         FreeStrBuf(&Line1);
684         FreeStrBuf(&Line2);
685 }
686
687 void render_MAIL_html(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundCharset)
688 {
689         StrBuf *Buf;
690         /* HTML is fun, but we've got to strip it first */
691         if (StrLength(Mime->Data) == 0)
692                 return;
693
694         Buf = NewStrBufPlain(NULL, StrLength(Mime->Data));
695
696         output_html(ChrPtr(Mime->Charset), 
697                     (WC->wc_view == VIEW_WIKI ? 1 : 0), 
698                     StrToi(Mime->PartNum), 
699                     Mime->Data, Buf);
700         FreeStrBuf(&Mime->Data);
701         Mime->Data = Buf;
702 }
703
704 void render_MAIL_UNKNOWN(wc_mime_attachment *Mime, StrBuf *RawData, StrBuf *FoundCharset)
705 {
706         /* Unknown weirdness */
707         FlushStrBuf(Mime->Data);
708         StrBufAppendBufPlain(Mime->Data, _("I don't know how to display "), -1, 0);
709         StrBufAppendBuf(Mime->Data, Mime->ContentType, 0);
710         StrBufAppendBufPlain(Mime->Data, HKEY("<br />\n"), 0);
711 }
712
713
714
715
716
717
718 HashList *iterate_get_mime_All(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
719 {
720         message_summary *Msg = (message_summary*) Context;
721         return Msg->Attachments;
722 }
723 HashList *iterate_get_mime_Submessages(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
724 {
725         message_summary *Msg = (message_summary*) Context;
726         return Msg->Submessages;
727 }
728 HashList *iterate_get_mime_AttachLinks(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
729 {
730         message_summary *Msg = (message_summary*) Context;
731         return Msg->AttachLinks;
732 }
733 HashList *iterate_get_mime_Attachments(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
734 {
735         message_summary *Msg = (message_summary*) Context;
736         return Msg->AllAttach;
737 }
738
739 void tmplput_MIME_Name(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
740 {
741         wc_mime_attachment *mime = (wc_mime_attachment*) Context;
742         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, mime->Name, 0);
743 }
744
745 void tmplput_MIME_FileName(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
746 {
747         wc_mime_attachment *mime = (wc_mime_attachment*) Context;
748         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, mime->FileName, 0);
749 }
750
751 void tmplput_MIME_PartNum(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
752 {
753         wc_mime_attachment *mime = (wc_mime_attachment*) Context;
754         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, mime->PartNum, 0);
755 }
756
757 void tmplput_MIME_MsgNum(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
758 {
759         wc_mime_attachment *mime = (wc_mime_attachment*) Context;
760         StrBufAppendPrintf(Target, "%ld", mime->msgnum);
761 }
762
763 void tmplput_MIME_Disposition(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
764 {
765         wc_mime_attachment *mime = (wc_mime_attachment*) Context;
766         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, mime->Disposition, 0);
767 }
768
769 void tmplput_MIME_ContentType(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
770 {
771         wc_mime_attachment *mime = (wc_mime_attachment*) Context;
772         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, mime->ContentType, 0);
773 }
774
775 void examine_charset(message_summary *Msg, StrBuf *HdrLine, StrBuf *FoundCharset)
776 {
777         Msg->MsgBody->Charset = NewStrBufDup(HdrLine);
778 }
779
780 void tmplput_MIME_Charset(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
781 {
782         wc_mime_attachment *mime = (wc_mime_attachment*) Context;
783         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, mime->Charset, 0);
784 }
785
786 void tmplput_MIME_Data(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
787 {
788         wc_mime_attachment *mime = (wc_mime_attachment*) Context;
789         if (mime->Renderer != NULL)
790                 mime->Renderer(mime, NULL, NULL);
791         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, mime->Data, 0);
792  /// TODO: check whether we need to load it now?
793 }
794
795 void tmplput_MIME_Length(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
796 {
797         wc_mime_attachment *mime = (wc_mime_attachment*) Context;
798         StrBufAppendPrintf(Target, "%ld", mime->length);
799 }
800
801 HashList *iterate_get_registered_Attachments(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
802 {
803         return WC->attachments;
804 }
805
806 void tmplput_ATT_Length(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
807 {
808         wc_attachment *att = (wc_attachment*) Context;
809         StrBufAppendPrintf(Target, "%ld", att->length);
810 }
811
812 void tmplput_ATT_Contenttype(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
813 {
814         wc_attachment *att = (wc_attachment*) Context;
815         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, att->content_type, 0);
816 }
817
818 void tmplput_ATT_FileName(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType)
819 {
820         wc_attachment *att = (wc_attachment*) Context;
821         StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, att->filename, 0);
822 }
823
824
825
826
827
828
829 void 
830 InitModule_MSGRENDERERS
831 (void)
832 {
833         RegisterNamespace("MAIL:SUMM:DATESTR", 0, 0, tmplput_MAIL_SUMM_DATE_STR, CTX_MAILSUM);
834         RegisterNamespace("MAIL:SUMM:DATENO",  0, 0, tmplput_MAIL_SUMM_DATE_NO,  CTX_MAILSUM);
835         RegisterNamespace("MAIL:SUMM:N",       0, 0, tmplput_MAIL_SUMM_N,        CTX_MAILSUM);
836         RegisterNamespace("MAIL:SUMM:FROM",    0, 2, tmplput_MAIL_SUMM_FROM,     CTX_MAILSUM);
837         RegisterNamespace("MAIL:SUMM:TO",      0, 2, tmplput_MAIL_SUMM_TO,       CTX_MAILSUM);
838         RegisterNamespace("MAIL:SUMM:SUBJECT", 0, 4, tmplput_MAIL_SUMM_SUBJECT,  CTX_MAILSUM);
839         RegisterNamespace("MAIL:SUMM:NTATACH", 0, 0, tmplput_MAIL_SUMM_NATTACH,  CTX_MAILSUM);
840         RegisterNamespace("MAIL:SUMM:CCCC", 0, 2, tmplput_MAIL_SUMM_CCCC,  CTX_MAILSUM);
841         RegisterNamespace("MAIL:SUMM:H_NODE", 0, 2, tmplput_MAIL_SUMM_H_NODE,  CTX_MAILSUM);
842         RegisterNamespace("MAIL:SUMM:ALLRCPT", 0, 2, tmplput_MAIL_SUMM_ALLRCPT,  CTX_MAILSUM);
843         RegisterNamespace("MAIL:SUMM:ORGROOM", 0, 2, tmplput_MAIL_SUMM_ORGROOM,  CTX_MAILSUM);
844         RegisterNamespace("MAIL:SUMM:RFCA", 0, 2, tmplput_MAIL_SUMM_RFCA,  CTX_MAILSUM);
845         RegisterNamespace("MAIL:SUMM:OTHERNODE", 2, 0, tmplput_MAIL_SUMM_OTHERNODE,  CTX_MAILSUM);
846         RegisterNamespace("MAIL:SUMM:REFIDS", 0, 0, tmplput_MAIL_SUMM_REFIDS,  CTX_MAILSUM);
847         RegisterNamespace("MAIL:SUMM:INREPLYTO", 0, 2, tmplput_MAIL_SUMM_INREPLYTO,  CTX_MAILSUM);
848         RegisterNamespace("MAIL:BODY", 0, 2, tmplput_MAIL_BODY,  CTX_MAILSUM);
849         RegisterNamespace("MAIL:QUOTETEXT", 1, 2, tmplput_QUOTED_MAIL_BODY,  CTX_NONE);
850         RegisterNamespace("ATT:SIZE", 0, 1, tmplput_ATT_Length, CTX_ATT);
851         RegisterNamespace("ATT:TYPE", 0, 1, tmplput_ATT_Contenttype, CTX_ATT);
852         RegisterNamespace("ATT:FILENAME", 0, 1, tmplput_ATT_FileName, CTX_ATT);
853
854         RegisterConditional(HKEY("MAIL:SUMM:RFCA"), 0, Conditional_MAIL_SUMM_RFCA,  CTX_MAILSUM);
855         RegisterConditional(HKEY("COND:MAIL:SUMM:UNREAD"), 0, Conditional_MAIL_SUMM_UNREAD, CTX_MAILSUM);
856         RegisterConditional(HKEY("COND:MAIL:SUMM:H_NODE"), 0, Conditional_MAIL_SUMM_H_NODE, CTX_MAILSUM);
857         RegisterConditional(HKEY("COND:MAIL:SUMM:OTHERNODE"), 0, Conditional_MAIL_SUMM_OTHERNODE, CTX_MAILSUM);
858         RegisterConditional(HKEY("COND:MAIL:ANON"), 0, Conditional_ANONYMOUS_MESSAGE, CTX_MAILSUM);
859
860         RegisterConditional(HKEY("COND:MAIL:MIME:ATTACH"), 0, Conditional_MAIL_MIME_ALL, CTX_MAILSUM);
861         RegisterConditional(HKEY("COND:MAIL:MIME:ATTACH:SUBMESSAGES"), 0, Conditional_MAIL_MIME_SUBMESSAGES, CTX_MAILSUM);
862         RegisterConditional(HKEY("COND:MAIL:MIME:ATTACH:LINKS"), 0, Conditional_MAIL_MIME_ATTACHLINKS, CTX_MAILSUM);
863         RegisterConditional(HKEY("COND:MAIL:MIME:ATTACH:ATT"), 0, Conditional_MAIL_MIME_ATTACH, CTX_MAILSUM);
864
865         RegisterIterator("MAIL:MIME:ATTACH", 0, NULL, iterate_get_mime_All, 
866                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM);
867         RegisterIterator("MAIL:MIME:ATTACH:SUBMESSAGES", 0, NULL, iterate_get_mime_Submessages, 
868                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM);
869         RegisterIterator("MAIL:MIME:ATTACH:LINKS", 0, NULL, iterate_get_mime_AttachLinks, 
870                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM);
871         RegisterIterator("MAIL:MIME:ATTACH:ATT", 0, NULL, iterate_get_mime_Attachments, 
872                          NULL, NULL, CTX_MIME_ATACH, CTX_MAILSUM);
873
874         RegisterNamespace("MAIL:MIME:NAME", 0, 2, tmplput_MIME_Name, CTX_MIME_ATACH);
875         RegisterNamespace("MAIL:MIME:FILENAME", 0, 2, tmplput_MIME_FileName, CTX_MIME_ATACH);
876         RegisterNamespace("MAIL:MIME:PARTNUM", 0, 2, tmplput_MIME_PartNum, CTX_MIME_ATACH);
877         RegisterNamespace("MAIL:MIME:MSGNUM", 0, 2, tmplput_MIME_MsgNum, CTX_MIME_ATACH);
878         RegisterNamespace("MAIL:MIME:DISPOSITION", 0, 2, tmplput_MIME_Disposition, CTX_MIME_ATACH);
879         RegisterNamespace("MAIL:MIME:CONTENTTYPE", 0, 2, tmplput_MIME_ContentType, CTX_MIME_ATACH);
880         RegisterNamespace("MAIL:MIME:CHARSET", 0, 2, tmplput_MIME_Charset, CTX_MIME_ATACH);
881         RegisterNamespace("MAIL:MIME:LENGTH", 0, 2, tmplput_MIME_Length, CTX_MIME_ATACH);
882         RegisterNamespace("MAIL:MIME:DATA", 0, 2, tmplput_MIME_Data, CTX_MIME_ATACH);
883
884         RegisterIterator("MSG:ATTACHNAMES", 0, NULL, iterate_get_registered_Attachments, 
885                          NULL, NULL, CTX_ATT, CTX_NONE);
886
887         RegisterMimeRenderer(HKEY("message/rfc822"), render_MAIL);
888         RegisterMimeRenderer(HKEY("text/x-vcard"), render_MIME_VCard);
889         RegisterMimeRenderer(HKEY("text/vcard"), render_MIME_VCard);
890         RegisterMimeRenderer(HKEY("text/calendar"), render_MIME_ICS);
891         RegisterMimeRenderer(HKEY("application/ics"), render_MIME_ICS);
892
893         RegisterMimeRenderer(HKEY("text/x-citadel-variformat"), render_MAIL_variformat);
894         RegisterMimeRenderer(HKEY("text/plain"), render_MAIL_text_plain);
895         RegisterMimeRenderer(HKEY("text"), render_MAIL_text_plain);
896         RegisterMimeRenderer(HKEY("text/html"), render_MAIL_html);
897         RegisterMimeRenderer(HKEY(""), render_MAIL_UNKNOWN);
898
899         RegisterMsgHdr(HKEY("nhdr"), examine_nhdr, 0);
900         RegisterMsgHdr(HKEY("type"), examine_type, 0);
901         RegisterMsgHdr(HKEY("from"), examine_from, 0);
902         RegisterMsgHdr(HKEY("subj"), examine_subj, 0);
903         RegisterMsgHdr(HKEY("msgn"), examine_msgn, 0);
904         RegisterMsgHdr(HKEY("wefw"), examine_wefw, 0);
905         RegisterMsgHdr(HKEY("cccc"), examine_cccc, 0);
906         RegisterMsgHdr(HKEY("hnod"), examine_hnod, 0);
907         RegisterMsgHdr(HKEY("room"), examine_room, 0);
908         RegisterMsgHdr(HKEY("rfca"), examine_rfca, 0);
909         RegisterMsgHdr(HKEY("node"), examine_node, 0);
910         RegisterMsgHdr(HKEY("rcpt"), examine_rcpt, 0);
911         RegisterMsgHdr(HKEY("time"), examine_time, 0);
912         RegisterMsgHdr(HKEY("part"), examine_mime_part, 0);
913         RegisterMsgHdr(HKEY("text"), examine_text, 1);
914         RegisterMsgHdr(HKEY("X-Citadel-MSG4-Partnum"), examine_msg4_partnum, 0);
915         RegisterMsgHdr(HKEY("Content-type"), examine_content_type, 0);
916         RegisterMsgHdr(HKEY("Content-length"), examine_content_lengh, 0);
917         RegisterMsgHdr(HKEY("Content-transfer-encoding"), examine_content_encoding, 0);
918         RegisterMsgHdr(HKEY("charset"), examine_charset, 0);
919 }