]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/js/view_mail.js
Handle null pointer correctly
[citadel.git] / webcit-ng / static / js / view_mail.js
1 // This module handles the view for "mailbox" rooms.
2 //
3 // Copyright (c) 2016-2022 by the citadel.org team
4 //
5 // This program is open source software.  Use, duplication, or
6 // disclosure are subject to the GNU General Public License v3.
7
8
9 var displayed_message = 0;                                                      // ID of message currently being displayed
10 var RefreshMailboxInterval;                                                     // We store our refresh timer here
11 var highest_mailnum;                                                            // This is used to detect newly arrived mail
12 var newmail_notify = {
13         NO  : 0,                                                                // do not perform new mail notifications
14         YES : 1                                                                 // yes, perform new mail notifications
15 };
16
17
18 // Render reply address for a message (FIXME figure out how to deal with "reply-to:")
19 function reply_addr(msg) {
20         //if (msg.locl) {
21                 //return([msg.from]);
22         //}
23         //else {
24                 return([msg.from + " <" + msg.rfca + ">"]);
25         //}
26 }
27
28
29 // Render the To: recipients for a reply-all operation
30 function replyall_to(msg) {
31         return([...reply_addr(msg), ...msg.rcpt]);
32 }
33
34
35 // Render a message into the mailbox view
36 // (We want the message number and the message itself because we need to keep the msgnum for reply purposes)
37 function mail_render_one(msgnum, msg, target_div, include_controls) {
38         let div = "";
39         try {
40                 outmsg =
41                   "<div class=\"ctdl-mmsg-wrapper\">"                           // begin message wrapper
42                 ;
43
44                 if (include_controls) {                                         // omit controls if this is a pull quote
45                         outmsg +=
46                           render_userpic(msg.from)                              // user avatar
47                         + "<div class=\"ctdl-mmsg-content\">"                   // begin content
48                         + "<div class=\"ctdl-msg-header\">"                     // begin header
49                         + "<span class=\"ctdl-msg-header-info\">"               // begin header info on left side
50                         + render_msg_author(msg, views.VIEW_MAILBOX)
51                         + "<span class=\"ctdl-msgdate\">"
52                         + string_timestamp(msg.time,0)
53                         + "</span>"                                             // end msgdate
54                         + "</span>"                                             // end header info on left side
55                         + "<span class=\"ctdl-msg-header-buttons\">"            // begin buttons on right side
56                 
57                         + "<span class=\"ctdl-msg-button\">"                    // Reply (mail is always Quoted)
58                         + "<a href=\"javascript:mail_compose(true,'"+msg.wefw+"','"+msgnum+"', reply_addr(msg), [], 'Re: '+msg.subj);\">"
59                         + "<i class=\"fa fa-reply\"></i> " 
60                         + _("Reply")
61                         + "</a></span>"
62                 
63                         + "<span class=\"ctdl-msg-button\">"                    // Reply-All (mail is always Quoted)
64                         + "<a href=\"javascript:mail_compose(true,'"+msg.wefw+"','"+msgnum+"', replyall_to(msg), msg.cccc, 'Re: '+msg.subj);\">"
65                         + "<i class=\"fa fa-reply-all\"></i> " 
66                         + _("ReplyAll")
67                         + "</a></span>";
68                 
69                         if (can_delete_messages) {
70                                 outmsg +=
71                                 "<span class=\"ctdl-msg-button\">"
72                                 + "<a href=\"javascript:forum_delete_message('"+div+"','"+msg.msgnum+"');\">"
73                                 + "<i class=\"fa fa-trash\"></i> " 
74                                 + _("Delete")
75                                 + "</a></span>";
76                         }
77                 
78                         outmsg +=
79                           "</span>";                                            // end buttons on right side
80
81                         // Display the To: recipients, if any are present
82                         if (msg.rcpt) {
83                                 outmsg += "<br><span>" + _("To:") + " ";
84                                 for (var r=0; r<msg.rcpt.length; ++r) {
85                                         if (r != 0) {
86                                                 outmsg += ", ";
87                                         }
88                                         outmsg += escapeHTML(msg.rcpt[r]);
89                                 }
90                                 outmsg += "</span>";
91                         }
92
93                         // Display the Cc: recipients, if any are present
94                         if (msg.cccc) {
95                                 outmsg += "<br><span>" + _("Cc:") + " ";
96                                 for (var r=0; r<msg.cccc.length; ++r) {
97                                         if (r != 0) {
98                                                 outmsg += ", ";
99                                         }
100                                         outmsg += escapeHTML(msg.cccc[r]);
101                                 }
102                                 outmsg += "</span>";
103                         }
104
105                         // Display a subject line, but only if the message has a subject (internal Citadel messages often don't)
106                         if (msg.subj) {
107                                 outmsg +=
108                                 "<br><span class=\"ctdl-msgsubject\">" + msg.subj + "</span>";
109                         }
110
111                         outmsg +=
112                           "</div>";                                             // end header
113                 }
114
115                 outmsg +=
116                   "<div class=\"ctdl-msg-body\" id=\"" + div + "_body\">"       // begin body
117                 + msg.text
118                 + "</div>"                                                      // end body
119                 + "</div>"                                                      // end content
120                 + "</div>"                                                      // end wrapper
121                 ;
122         }
123         catch(err) {
124                 outmsg = "<div class=\"ctdl-mmsg-wrapper\">" + err.message + "</div>";
125         }
126
127         target_div.innerHTML = outmsg;
128 }
129
130
131 // display an individual message (note: this wants an actual div object, not a string containing the name of a div)
132 function mail_display_message(msgnum, target_div, include_controls) {
133         url = "/ctdl/r/" + escapeHTMLURI(current_room) + "/" + msgnum + "/json";
134         mail_fetch_msg = async() => {
135                 response = await fetch(url);
136                 msg = await(response.json());
137                 if (response.ok) {
138                         mail_render_one(msgnum, msg, target_div, include_controls);
139                 }
140         }
141         mail_fetch_msg();
142 }
143
144
145 // A message has been selected...
146 function click_message(event, msgnum) {
147         var table = document.getElementById("ctdl-onscreen-mailbox");
148         var i, m, row;
149
150         // ctrl + click = toggle an individual message without changing existing selection
151         if (event.ctrlKey) {
152                 document.getElementById("ctdl-msgsum-" + msgnum).classList.toggle("ctdl-mail-selected");
153         }
154
155         // shift + click = select a range of messages
156         else if (event.shiftKey) {
157                 for (i=0; row=table.rows[i]; ++i) {
158                         m = parseInt(row["id"].substring(12));                          // derive msgnum from row id
159                         if (
160                                 ((msgnum >= displayed_message) && (m >= displayed_message) && (m <= msgnum))
161                                 || ((msgnum <= displayed_message) && (m <= displayed_message) && (m >= msgnum))
162                         ) {
163                                 row.classList.add("ctdl-mail-selected");
164                         }
165                         else {
166                                 row.classList.remove("ctdl-mail-selected");
167                         }
168                 }
169         }
170
171         // click + no modifiers = select one message and unselect all others
172         else {
173                 for (i=0; row=table.rows[i]; ++i) {
174                         if (row["id"] == "ctdl-msgsum-" + msgnum) {
175                                 row.classList.add("ctdl-mail-selected");
176                         }
177                         else {
178                                 row.classList.remove("ctdl-mail-selected");
179                         }
180                 }
181         }
182
183         // display the message if it isn't already displayed
184         if (displayed_message != msgnum) {
185                 displayed_message = msgnum;
186                 mail_display_message(msgnum, document.getElementById("ctdl-mailbox-reading-pane"), 1);
187         }
188 }
189
190
191 // render one row in the mailbox table (this could be called from one of several places)
192 function mail_render_row(msg, is_selected) {
193         row     = "<tr "
194                 + "id=\"ctdl-msgsum-" + msg["msgnum"] + "\" "
195                 + (is_selected ? "class=\"ctdl-mail-selected\" " : "")
196                 + "onClick=\"click_message(event," + msg["msgnum"] + ");\""
197                 + "onselectstart=\"return false;\""
198                 + ">"
199                 + "<td class=\"ctdl-mail-subject\">" + msg["subject"] + "</td>"
200                 + "<td class=\"ctdl-mail-sender\">" + msg["author"] + "</td>"
201                 + "<td class=\"ctdl-mail-date\">" + string_timestamp(msg["time"],1) + "</td>"
202                 + "<td class=\"ctdl-mail-msgnum\">" + msg["msgnum"] + "</td>"
203                 + "</tr>";
204         return(row);
205 }
206
207
208 // RENDERER FOR THIS VIEW
209 function view_render_mail() {
210         // Put the "enter new message" button into the sidebar
211         document.getElementById("ctdl-newmsg-button").innerHTML = "<i class=\"fa fa-edit\"></i>" + _("Write mail");
212         document.getElementById("ctdl-newmsg-button").style.display = "block";
213
214         document.getElementById("ctdl-main").innerHTML
215                 = "<div id=\"ctdl-mailbox-grid-container\" class=\"ctdl-mailbox-grid-container\">"
216                 + "<div id=\"ctdl-mailbox-pane\" class=\"ctdl-mailbox-pane\"></div>"
217                 + "<div id=\"ctdl-mailbox-reading-pane\" class=\"ctdl-mailbox-reading-pane\"></div>"
218                 + "</div>"
219         ;
220
221         highest_mailnum = 0;                                    // Keep track of highest message number to track newly arrived messages
222         render_mailbox_display(newmail_notify.NO);
223         try {                                                   // if this was already set up, clear it so there aren't multiple
224                 clearInterval(RefreshMailboxInterval);
225         }
226         catch {
227         }
228         RefreshMailboxInterval = setInterval(refresh_mail_display, 10000);
229 }
230
231
232 // Refresh the mailbox, either for the first time or whenever needed
233 function refresh_mail_display() {
234         // If the "ctdl-mailbox-pane" no longer exists, the user has navigated to a different part of the site,
235         // so cancel the refresh.
236         try {
237                 document.getElementById("ctdl-mailbox-pane").innerHTML;
238         }
239         catch {
240                 clearInterval(RefreshMailboxInterval);
241                 return;
242         }
243
244         // Ask the server if the room has been written to since our last look at it.
245         url = "/ctdl/r/" + escapeHTMLURI(current_room) + "/stat";
246         fetch_stat = async() => {
247                 response = await fetch(url);
248                 stat = await(response.json());
249                 if (stat.room_mtime > room_mtime) {                     // FIXME commented out to force refreshes
250                         room_mtime = stat.room_mtime;
251                         render_mailbox_display(newmail_notify.YES);
252                 }
253         }
254         fetch_stat();
255 }
256
257
258 // This is where the rendering of the message list in the mailbox view is performed.
259 // Set notify to newmail_notify.NO or newmail_notify.YES depending on whether we are interested in the arrival of new messages.
260 function render_mailbox_display(notify) {
261
262         url = "/ctdl/r/" + escapeHTMLURI(current_room) + "/mailbox";
263         fetch_mailbox = async() => {
264                 response = await fetch(url);
265                 msgs = await(response.json());
266                 if (response.ok) {
267                         var previously_selected = [];
268                         var oldtable = document.getElementById("ctdl-onscreen-mailbox");
269                         var i, row;
270
271                         // If one or more messages was already selected, remember them so we can re-select them
272                         if (displayed_message > 0) {
273                                 if (oldtable) {
274                                         for (i=0; row=oldtable.rows[i]; ++i) {
275                                                 if (row.classList.contains("ctdl-mail-selected")) {
276                                                         previously_selected.push(parseInt(row["id"].substring(12)));
277                                                 }
278                                         }
279                                 }
280                         }
281
282                         // begin rendering the mailbox table
283                         box =   "<table id=\"ctdl-onscreen-mailbox\" class=\"ctdl-mailbox-table\" width=100%><tr>"
284                                 + "<th>" + _("Subject") + "</th>"
285                                 + "<th>" + _("Sender") + "</th>"
286                                 + "<th>" + _("Date") + "</th>"
287                                 + "<th>#</th>"
288                                 + "</tr>";
289
290                         for (let i=0; i<msgs.length; ++i) {
291                                 let m = parseInt(msgs[i].msgnum);
292                                 let s = (previously_selected.includes(m));
293                                 box += mail_render_row(msgs[i], s);
294                                 if (m > highest_mailnum) {
295                                         highest_mailnum = m;
296                                 }
297                         }
298
299                         box +=  "</table>";
300                         document.getElementById("ctdl-mailbox-pane").innerHTML = box;
301                 }
302         }
303         fetch_mailbox();
304 }
305
306
307 // Compose a new mail message (called by the Reply button here, or by the dispatcher in views.js)
308 function mail_compose(is_quoted, references, quoted_msgnum, m_to, m_cc, m_subject) {
309         // m_to will be an array of zero or more recipients for the To: field.  Convert it to a string.
310         if (m_to) {
311                 m_to = Array.from(new Set(m_to));       // remove dupes
312                 m_to_str = "";
313                 for (i=0; i<m_to.length; ++i) {
314                         if (i > 0) {
315                                 m_to_str += ", ";
316                         }
317                         m_to_str += m_to[i].replaceAll("<", "&lt;").replaceAll(">", "&gt;");
318                 }
319         }
320         else {
321                 m_to_str = "";
322         }
323
324         // m_to will be an array of zero or more recipients for the Cc: field.  Convert it to a string.
325         if (m_cc) {
326                 m_cc = Array.from(new Set(m_cc));       // remove dupes
327                 m_cc_str = "";
328                 for (i=0; i<m_cc.length; ++i) {
329                         if (i > 0) {
330                                 m_cc_str += ", ";
331                         }
332                         m_cc_str += m_cc[i].replaceAll("<", "&lt;").replaceAll(">", "&gt;");
333                 }
334         }
335         else {
336                 m_cc_str = "";
337         }
338
339         quoted_div_name = randomString();
340
341         // Make the "Write mail" button disappear.  We're already there!
342         document.getElementById("ctdl-newmsg-button").style.display = "none";
343
344         // is_quoted    true or false depending on whether the user selected "reply quoted" (is this appropriate for mail?)
345         // references   list of references, be sure to use this in a reply
346         // msgid        if a reply, the msgid of the most recent message in the chain, the one to which we are replying
347
348         // Now display the screen.
349         compose_screen =
350                 // Hidden values that we are storing right here in the document tree for later
351                   "<input id=\"ctdl_mc_is_quoted\" style=\"display:none\" value=\"" + is_quoted + "\"></input>"
352                 + "<input id=\"ctdl_mc_references\" style=\"display:none\" value=\"" + references + "\"></input>"
353
354                 // Header fields, the composition window, and the button bar are arranged using a Grid layout.
355                 + "<div id=\"ctdl-compose-mail\" class=\"ctdl-compose-mail\">"
356
357                 // Visible To: field, plus a box to make the CC/BCC lines appear
358                 + "<div class=\"ctdl-compose-to-label\">" + _("To:") + "</div>"
359                 + "<div class=\"ctdl-compose-to-line\">"
360                 + "<div class=\"ctdl-compose-to-field\" id=\"ctdl-compose-to-field\" contenteditable=\"true\">" + m_to_str + "</div>"
361                 + "<div class=\"ctdl-cc-bcc-buttons ctdl-msg-button\" id=\"ctdl-cc-bcc-buttons\" "
362                 + "onClick=\"make_cc_bcc_visible()\">"
363                 + _("CC:") + "/" + _("BCC:") + "</div>"
364                 + "</div>"
365
366                 // CC/BCC
367                 + "<div class=\"ctdl-compose-cc-label\" id=\"ctdl-compose-cc-label\">" + _("CC:") + "</div>"
368                 + "<div class=\"ctdl-compose-cc-field\" id=\"ctdl-compose-cc-field\" contenteditable=\"true\">" + m_cc_str + "</div>"
369                 + "<div class=\"ctdl-compose-bcc-label\" id=\"ctdl-compose-bcc-label\">" + _("BCC:") + "</div>"
370                 + "<div class=\"ctdl-compose-bcc-field\" id=\"ctdl-compose-bcc-field\" contenteditable=\"true\"></div>"
371
372                 // Visible subject field
373                 + "<div class=\"ctdl-compose-subject-label\">" + _("Subject:") + "</div>"
374                 + "<div class=\"ctdl-compose-subject-field\" id=\"ctdl-compose-subject-field\" contenteditable=\"true\">" + m_subject + "</div>"
375
376                 // Message composition box
377                 + "<div class=\"ctdl-compose-message-box\" id=\"ctdl-editor-body\" contenteditable=\"true\">"
378         ;
379
380         if (is_quoted) {
381                 compose_screen += "<br><br><blockquote><div id=\"" + quoted_div_name + "\"></div></blockquote>";
382         }
383
384         compose_screen +=
385                   "</div>"
386
387                 // The button bar is a Grid element, and is also a Flexbox container.
388                 + "<div class=\"ctdl-compose-toolbar\">"
389                 + "<span class=\"ctdl-msg-button\" onclick=\"mail_send_message()\"><i class=\"fa fa-paper-plane\" style=\"color:green\"></i> " + _("Send message") + "</span>"
390                 + "<span class=\"ctdl-msg-button\">" + _("Save to Drafts") + "</span>"
391                 + "<span class=\"ctdl-msg-button\">" + _("Attachments:") + " 0" + "</span>"
392                 + "<span class=\"ctdl-msg-button\">" + _("Contacts") + "</span>"
393                 + "<span class=\"ctdl-msg-button\" onClick=\"gotoroom(current_room)\"><i class=\"fa fa-trash\" style=\"color:red\"></i> " + _("Cancel") + "</span>"
394                 + "</div>"
395         ;
396
397         document.getElementById("ctdl-main").innerHTML = compose_screen;
398         mail_display_message(quoted_msgnum, document.getElementById(quoted_div_name), 0);
399         if (m_cc) {
400                 document.getElementById("ctdl-compose-cc-label").style.display = "block";
401                 document.getElementById("ctdl-compose-cc-field").style.display = "block";
402         }
403 }
404
405
406 // Called when the user clicks the button to make the hidden "CC" and "BCC" lines appear.
407 // It is also called automatically during a Reply when CC is pre-populated.
408 function make_cc_bcc_visible() {
409         document.getElementById("ctdl-cc-bcc-buttons").style.display = "none";
410         document.getElementById("ctdl-compose-bcc-label").style.display = "block";
411         document.getElementById("ctdl-compose-bcc-field").style.display = "block";
412 }
413
414
415 // Helper function for mail_send_messages() to extract and decode metadata values.
416 function msm_field(element_name, separator) {
417         let s1 = document.getElementById(element_name).innerHTML;
418         let s2 = s1.replaceAll("|",separator);          // Replace "|" with "!" because "|" is a field separator in Citadel wire protocol
419         let s3 = decodeURI(s2);
420         let s4 = document.createElement("textarea");    // This One Weird Trick Unescapes All HTML Entities
421         s4.innerHTML = s3;
422         let s5 = s4.value;
423         return(s5);
424 }
425
426
427 // Save the posted message to the server
428 function mail_send_message() {
429
430         document.body.style.cursor = "wait";
431         let url = "/ctdl/r/" + escapeHTMLURI(current_room)
432                 + "/dummy_name_for_new_mail"
433                 + "?wefw="      + msm_field("ctdl_mc_references", "!")                          // references (if present)
434                 + "&subj="      + msm_field("ctdl-compose-subject-field", " ")                  // subject (if present)
435                 + "&mailto="    + msm_field("ctdl-compose-to-field", ",")                       // To: (required)
436                 + "&mailcc="    + msm_field("ctdl-compose-cc-field", ",")                       // Cc: (if present)
437                 + "&mailbcc="   + msm_field("ctdl-compose-bcc-field", ",")                      // Bcc: (if present)
438         ;
439         boundary = randomString();
440         body_text =
441                 "--" + boundary + "\r\n"
442                 + "Content-type: text/html\r\n"
443                 + "Content-transfer-encoding: quoted-printable\r\n"
444                 + "\r\n"
445                 + quoted_printable_encode(
446                         "<html><body>" + document.getElementById("ctdl-editor-body").innerHTML + "</body></html>"
447                 ) + "\r\n"
448                 + "--" + boundary + "--\r\n"
449         ;
450
451         var request = new XMLHttpRequest();
452         request.open("PUT", url, true);
453         request.setRequestHeader("Content-type", "multipart/mixed; boundary=\"" + boundary + "\"");
454         request.onreadystatechange = function() {
455                 if (request.readyState == 4) {
456                         document.body.style.cursor = "default";
457                         if (Math.trunc(request.status / 100) == 2) {
458                                 headers = request.getAllResponseHeaders().split("\n");
459                                 for (var i in headers) {
460                                         if (headers[i].startsWith("etag: ")) {
461                                                 new_msg_num = headers[i].split(" ")[1];
462                                         }
463                                 }
464
465                                 // After saving the message, go back to the mailbox view.
466                                 gotoroom(current_room);
467
468                         }
469                         else {
470                                 error_message = request.responseText;
471                                 if (error_message.length == 0) {
472                                         error_message = _("An error has occurred.");
473                                 }
474                                 alert(error_message);                                           // editor remains open
475                         }
476                 }
477         };
478         request.send(body_text);
479 }