new license declaration text
[citadel.git] / webcit-ng / forum_view.c
1 // The code in here feeds messages out as JSON to the client browser.  It is currently being used
2 // for the forum view, but as we implement other views we'll probably reuse a lot of what's here.
3 //
4 // Copyright (c) 1996-2022 by the citadel.org team
5 //
6 // This program is open source software.  Use, duplication, or
7 // disclosure are subject to the GNU General Public License v3.
8
9 #include "webcit.h"
10
11 // Commands we need to send to Citadel Server before we begin rendering forum view.
12 // These are common to flat and threaded views.
13 void setup_for_forum_view(struct ctdlsession *c) {
14         char buf[1024];
15         ctdl_printf(c, "MSGP text/html|text/plain");    // Declare the MIME types we know how to render
16         ctdl_readline(c, buf, sizeof(buf));             // Ignore the response
17         ctdl_printf(c, "MSGP dont_decode");             // Tell the server we will decode base64/etc client-side
18         ctdl_readline(c, buf, sizeof(buf));             // Ignore the response
19 }
20
21
22 // Fetch a single message and return it in JSON format for client-side rendering
23 void json_render_one_message(struct http_transaction *h, struct ctdlsession *c, long msgnum) {
24         StrBuf *raw_msg = NULL;
25         StrBuf *sanitized_msg = NULL;
26         char buf[1024];
27         char content_transfer_encoding[1024] = { 0 };
28         char content_type[1024] = { 0 };
29         char datetime[128] = { 0 };
30         char author[1024] = { 0 };
31         char emailaddr[1024] = { 0 };
32         int message_originated_locally = 0;
33
34         setup_for_forum_view(c);
35
36         ctdl_printf(c, "MSG4 %ld", msgnum);
37         ctdl_readline(c, buf, sizeof(buf));
38         if (buf[0] != '1') {
39                 do_404(h);
40                 return;
41         }
42
43         JsonValue *j = NewJsonObject(HKEY("message"));
44
45         while ((ctdl_readline(c, buf, sizeof(buf)) >= 0) && (strcmp(buf, "text")) && (strcmp(buf, "000"))) {
46
47                 // citadel header parsing here
48                 if (!strncasecmp(buf, "from=", 5)) {
49                         safestrncpy(author, &buf[5], sizeof author);
50                 }
51                 else if (!strncasecmp(buf, "rfca=", 5)) {
52                         safestrncpy(emailaddr, &buf[5], sizeof emailaddr);
53                 }
54                 else if (!strncasecmp(buf, "time=", 5)) {
55                         JsonObjectAppend(j, NewJsonNumber(HKEY("time"), atol(&buf[5])));
56                 }
57                 else if (!strncasecmp(buf, "locl=", 5)) {
58                         message_originated_locally = 1;
59                 }
60                 else if (!strncasecmp(buf, "subj=", 5)) {
61                         JsonObjectAppend(j, NewJsonPlainString(HKEY("subj"), &buf[5], -1));
62                 }
63                 else if (!strncasecmp(buf, "msgn=", 5)) {
64                         JsonObjectAppend(j, NewJsonPlainString(HKEY("msgn"), &buf[5], -1));
65                 }
66                 else if (!strncasecmp(buf, "wefw=", 5)) {
67                         JsonObjectAppend(j, NewJsonPlainString(HKEY("wefw"), &buf[5], -1));
68                 }
69         }
70
71         if (message_originated_locally) {
72                 JsonObjectAppend(j, NewJsonPlainString(HKEY("from"), author, -1));
73         }
74         else {
75                 JsonObjectAppend(j, NewJsonPlainString(HKEY("from"), emailaddr, -1));           // FIXME do compound address string
76         }
77
78         if (!strcmp(buf, "text")) {
79                 while ((ctdl_readline(c, buf, sizeof(buf)) >= 0) && (strcmp(buf, "")) && (strcmp(buf, "000"))) {
80                         // rfc822 header parsing here
81                         if (!strncasecmp(buf, "Content-transfer-encoding:", 26)) {
82                                 strcpy(content_transfer_encoding, &buf[26]);
83                                 striplt(content_transfer_encoding);
84                         }
85                         if (!strncasecmp(buf, "Content-type:", 13)) {
86                                 strcpy(content_type, &buf[13]);
87                                 striplt(content_type);
88                         }
89                 }
90                 if (!strcmp(buf, "000")) {              // if we have an empty message, don't try to read further
91                         raw_msg = NULL;
92                 }
93                 else {
94                         raw_msg = ctdl_readtextmsg(c);
95                 }
96         }
97         else {
98                 raw_msg = NULL;
99         }
100
101         if (raw_msg) {
102                 // These are the encodings we know how to handle.  Decode in-place.
103
104                 if (!strcasecmp(content_transfer_encoding, "base64")) {
105                         StrBufDecodeBase64(raw_msg);
106                 }
107                 if (!strcasecmp(content_transfer_encoding, "quoted-printable")) {
108                         StrBufDecodeQP(raw_msg);
109                 }
110
111                 // At this point, raw_msg contains the decoded message.
112                 // Now run through the renderers we have available.
113
114                 if (!strncasecmp(content_type, "text/html", 9)) {
115                         sanitized_msg = html2html("UTF-8", 0, c->room, msgnum, raw_msg);
116                 }
117                 else if (!strncasecmp(content_type, "text/plain", 10)) {
118                         sanitized_msg = text2html("UTF-8", 0, c->room, msgnum, raw_msg);
119                 }
120                 else if (!strncasecmp(content_type, "text/x-citadel-variformat", 25)) {
121                         sanitized_msg = variformat2html(raw_msg);
122                 }
123                 else {
124                         sanitized_msg = NewStrBufPlain(HKEY("<i>No renderer for this content type</i><br>"));
125                         syslog(LOG_WARNING, "forum_view: no renderer for content type %s", content_type);
126                 }
127                 FreeStrBuf(&raw_msg);
128
129                 // If sanitized_msg is not NULL, we have rendered the message and can output it.
130                 if (sanitized_msg) {
131                         JsonObjectAppend(j, NewJsonString(HKEY("text"), sanitized_msg, NEWJSONSTRING_SMASHBUF));
132                 }
133                 else {
134                         syslog(LOG_WARNING, "forum_view: message %ld of content type %s converted to NULL", msgnum, content_type);
135                 }
136         }
137
138         StrBuf *sj = NewStrBuf();
139         SerializeJson(sj, j, 1);        // '1' == free the source object
140
141         add_response_header(h, strdup("Content-type"), strdup("application/json"));
142         h->response_code = 200;
143         h->response_string = strdup("OK");
144         h->response_body_length = StrLength(sj);
145         h->response_body = SmashStrBuf(&sj);
146 }