Added the javascript logic to delete a message. This pretty much completes the forum...
[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         JsonObjectAppend(j, NewJsonNumber(HKEY("msgnum"), msgnum));
45
46         while ((ctdl_readline(c, buf, sizeof(buf)) >= 0) && (strcmp(buf, "text")) && (strcmp(buf, "000"))) {
47
48                 // citadel header parsing here
49                 if (!strncasecmp(buf, "from=", 5)) {
50                         safestrncpy(author, &buf[5], sizeof author);
51                 }
52                 else if (!strncasecmp(buf, "rfca=", 5)) {
53                         safestrncpy(emailaddr, &buf[5], sizeof emailaddr);
54                 }
55                 else if (!strncasecmp(buf, "time=", 5)) {
56                         JsonObjectAppend(j, NewJsonNumber(HKEY("time"), atol(&buf[5])));
57                 }
58                 else if (!strncasecmp(buf, "locl=", 5)) {
59                         message_originated_locally = 1;
60                 }
61                 else if (!strncasecmp(buf, "subj=", 5)) {
62                         JsonObjectAppend(j, NewJsonPlainString(HKEY("subj"), &buf[5], -1));
63                 }
64                 else if (!strncasecmp(buf, "msgn=", 5)) {
65                         JsonObjectAppend(j, NewJsonPlainString(HKEY("msgn"), &buf[5], -1));
66                 }
67                 else if (!strncasecmp(buf, "wefw=", 5)) {
68                         JsonObjectAppend(j, NewJsonPlainString(HKEY("wefw"), &buf[5], -1));
69                 }
70         }
71
72         if (message_originated_locally) {
73                 JsonObjectAppend(j, NewJsonPlainString(HKEY("from"), author, -1));
74         }
75         else {
76                 JsonObjectAppend(j, NewJsonPlainString(HKEY("from"), emailaddr, -1));           // FIXME do compound address string
77         }
78
79         if (!strcmp(buf, "text")) {
80                 while ((ctdl_readline(c, buf, sizeof(buf)) >= 0) && (strcmp(buf, "")) && (strcmp(buf, "000"))) {
81                         // rfc822 header parsing here
82                         if (!strncasecmp(buf, "Content-transfer-encoding:", 26)) {
83                                 strcpy(content_transfer_encoding, &buf[26]);
84                                 striplt(content_transfer_encoding);
85                         }
86                         if (!strncasecmp(buf, "Content-type:", 13)) {
87                                 strcpy(content_type, &buf[13]);
88                                 striplt(content_type);
89                         }
90                 }
91                 if (!strcmp(buf, "000")) {              // if we have an empty message, don't try to read further
92                         raw_msg = NULL;
93                 }
94                 else {
95                         raw_msg = ctdl_readtextmsg(c);
96                 }
97         }
98         else {
99                 raw_msg = NULL;
100         }
101
102         if (raw_msg) {
103                 // These are the encodings we know how to handle.  Decode in-place.
104
105                 if (!strcasecmp(content_transfer_encoding, "base64")) {
106                         StrBufDecodeBase64(raw_msg);
107                 }
108                 if (!strcasecmp(content_transfer_encoding, "quoted-printable")) {
109                         StrBufDecodeQP(raw_msg);
110                 }
111
112                 // At this point, raw_msg contains the decoded message.
113                 // Now run through the renderers we have available.
114
115                 if (!strncasecmp(content_type, "text/html", 9)) {
116                         sanitized_msg = html2html("UTF-8", 0, c->room, msgnum, raw_msg);
117                 }
118                 else if (!strncasecmp(content_type, "text/plain", 10)) {
119                         sanitized_msg = text2html("UTF-8", 0, c->room, msgnum, raw_msg);
120                 }
121                 else if (!strncasecmp(content_type, "text/x-citadel-variformat", 25)) {
122                         sanitized_msg = variformat2html(raw_msg);
123                 }
124                 else {
125                         sanitized_msg = NewStrBufPlain(HKEY("<i>No renderer for this content type</i><br>"));
126                         syslog(LOG_WARNING, "forum_view: no renderer for content type %s", content_type);
127                 }
128                 FreeStrBuf(&raw_msg);
129
130                 // If sanitized_msg is not NULL, we have rendered the message and can output it.
131                 if (sanitized_msg) {
132                         JsonObjectAppend(j, NewJsonString(HKEY("text"), sanitized_msg, NEWJSONSTRING_SMASHBUF));
133                 }
134                 else {
135                         syslog(LOG_WARNING, "forum_view: message %ld of content type %s converted to NULL", msgnum, content_type);
136                 }
137         }
138
139         StrBuf *sj = NewStrBuf();
140         SerializeJson(sj, j, 1);        // '1' == free the source object
141
142         add_response_header(h, strdup("Content-type"), strdup("application/json"));
143         h->response_code = 200;
144         h->response_string = strdup("OK");
145         h->response_body_length = StrLength(sj);
146         h->response_body = SmashStrBuf(&sj);
147 }