Implemented the ajax call for updating notes.
[citadel.git] / webcit / notes.c
1 /*
2  * $Id$
3  *
4  */
5
6 #include "webcit.h"
7 #include "groupdav.h"
8 #include "webserver.h"
9
10
11 /*
12  * Uncomment this #define in order to get the new vNote-based sticky notes view.
13  * We're keeping both versions here so that I can work on the new view without breaking
14  * the existing implementation prior to completion.
15  */
16
17 /* #define NEW_NOTES_VIEW */
18
19
20 #ifndef NEW_NOTES_VIEW
21 /*
22  * display sticky notes
23  *
24  * msgnum = Message number on the local server of the note to be displayed
25  */
26 void display_note(long msgnum, int unread)
27 {
28         char buf[SIZ];
29         char notetext[SIZ];
30         char display_notetext[SIZ];
31         char eid[128];
32         int in_text = 0;
33         int i, len;
34
35         serv_printf("MSG0 %ld", msgnum);
36         serv_getln(buf, sizeof buf);
37         if (buf[0] != '1') {
38                 wprintf("%s<br />\n", &buf[4]);
39                 return;
40         }
41
42         strcpy(notetext, "");
43         strcpy(eid, "");
44         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
45
46                 /* Fill the buffer */
47                 if ( (in_text) && (strlen(notetext) < SIZ-256) ) {
48                         strcat(notetext, buf);
49                 }
50
51                 if ( (!in_text) && (!strncasecmp(buf, "exti=", 5)) ) {
52                         safestrncpy(eid, &buf[5], sizeof eid);
53                 }
54
55                 if ( (!in_text) && (!strcasecmp(buf, "text")) ) {
56                         in_text = 1;
57                 }
58         }
59
60         /* Now sanitize the buffer */
61         len = strlen(notetext);
62         for (i=0; i<len; ++i) {
63                 if (isspace(notetext[i])) notetext[i] = ' ';
64         }
65
66         /* Make it HTML-happy and print it. */
67         stresc(display_notetext, SIZ, notetext, 0, 0);
68
69         /* Lets try it as a draggable */
70         if (!IsEmptyStr(eid)) {
71                 wprintf ("<IMG ALIGN=MIDDLE src=\"static/storenotes_48x.gif\" id=\"note_%s\" alt=\"Note\" ", eid); 
72                 wprintf ("class=\"notes\">\n");
73                 wprintf ("<script type=\"text/javascript\">\n");
74                 wprintf ("new Draggable (\"note_%s\", {revert:true})\n", eid);
75                 wprintf ("</script>\n");
76         }
77         else {
78                 wprintf ("<IMG ALIGN=MIDDLE src=\"static/storenotes_48x.gif\" id=\"note_%ld\" ", msgnum); 
79                 wprintf ("class=\"notes\">\n");
80                 wprintf ("<script type=\"text/javascript\">\n");
81                 wprintf ("new Draggable (\"note_%ld\", {revert:true})\n", msgnum);
82                 wprintf ("</script>\n");
83         }
84         
85         if (!IsEmptyStr(eid)) {
86                 wprintf("<span id=\"note%s\">%s</span><br />\n", eid, display_notetext);
87         }
88         else {
89                 wprintf("<span id=\"note%ld\">%s</span><br />\n", msgnum, display_notetext);
90         }
91
92         /* Offer in-place editing. */
93         if (!IsEmptyStr(eid)) {
94                 wprintf("<script type=\"text/javascript\">"
95                         "new Ajax.InPlaceEditor('note%s', 'updatenote?nonce=%ld?eid=%s', {rows:5,cols:72});"
96                         "</script>\n",
97                         eid,
98                         WC->nonce,
99                         eid
100                 );
101         }
102 }
103 #endif
104
105
106 /*
107  * This gets called by the Ajax.InPlaceEditor when we save a note.
108  */
109 void updatenote(void)
110 {
111         char buf[SIZ];
112         char notetext[SIZ];
113         char display_notetext[SIZ];
114         long msgnum;
115         int in_text = 0;
116         int i, len;
117
118         serv_printf("ENT0 1||0|0||||||%s", bstr("eid"));
119         serv_getln(buf, sizeof buf);
120         if (buf[0] == '4') {
121                 text_to_server(bstr("value"));
122                 serv_puts("000");
123         }
124
125         begin_ajax_response();
126         msgnum = locate_message_by_uid(bstr("eid"));
127         if (msgnum >= 0L) {
128                 serv_printf("MSG0 %ld", msgnum);
129                 serv_getln(buf, sizeof buf);
130                 if (buf[0] == '1') {
131                         strcpy(notetext, "");
132                         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
133                 
134                                 /* Fill the buffer */
135                                 if ( (in_text) && (strlen(notetext) < SIZ-256) ) {
136                                         strcat(notetext, buf);
137                                 }
138                 
139                                 if ( (!in_text) && (!strcasecmp(buf, "text")) ) {
140                                         in_text = 1;
141                                 }
142                         }
143                         /* Now sanitize the buffer */
144                         len = strlen(notetext);
145                         for (i=0; i<len; ++i) {
146                                 if (isspace(notetext[i])) notetext[i] = ' ';
147                         }
148                 
149                         /* Make it HTML-happy and print it. */
150                         stresc(display_notetext, SIZ, notetext, 0, 0);
151                         wprintf("%s\n", display_notetext);
152                 }
153         }
154         else {
155                 wprintf("%s", _("An error has occurred."));
156         }
157
158         end_ajax_response();
159 }
160
161
162 /*
163  * Background ajax call to receive updates from the browser when a note is moved, resized, or updated.
164  */
165 void ajax_update_note(void) {
166
167         begin_ajax_response();
168         wprintf("Updating.");           // Browser ignores the response, so nothing is necessary.
169         end_ajax_response();
170
171         if (!havebstr("note_uid")) {
172                 lprintf(5, "Received ajax_update_note() request without a note UID.\n");
173                 return;
174         }
175
176         lprintf(9, "Note UID = %s\n", bstr("note_uid"));
177         if (havebstr("top"))    lprintf(9, "Top      = %s\n", bstr("top"));
178         if (havebstr("left"))   lprintf(9, "Left     = %s\n", bstr("left"));
179         if (havebstr("height")) lprintf(9, "Height   = %s\n", bstr("height"));
180         if (havebstr("width"))  lprintf(9, "Width    = %s\n", bstr("width"));
181
182         /* FIXME finish this */
183 }
184
185
186
187
188 #ifdef NEW_NOTES_VIEW
189
190 /*
191  * Display a <div> containing a rendered sticky note.
192  */
193 void display_vnote_div(struct vnote *v) {
194
195         /* begin outer div */
196
197         wprintf("<div id=\"note-%s\" ", v->uid);
198         wprintf("class=\"stickynote_outer\" ");
199         wprintf("style=\"");
200         wprintf("left: %dpx; ", v->pos_left);
201         wprintf("top: %dpx; ", v->pos_top);
202         wprintf("width: %dpx; ", v->pos_width);
203         wprintf("height: %dpx; ", v->pos_height);
204         wprintf("background-color: #%02X%02X%02X ", v->color_red, v->color_green, v->color_blue);
205         wprintf("\">");
206
207         /* begin title bar */
208
209         wprintf("<div id=\"titlebar-%s\" ", v->uid);
210         wprintf("class=\"stickynote_titlebar\" ");
211         wprintf("onMouseDown=\"NotesDragMouseDown(event,'%s')\" ", v->uid);
212         wprintf("style=\"");
213         wprintf("background-color: #%02X%02X%02X ", v->color_red/2, v->color_green/2, v->color_blue/2);
214         wprintf("\">");
215
216         wprintf("<table border=0 cellpadding=0 cellspacing=0 valign=middle width=100%%><tr>");
217         wprintf("<td></td>");   // nothing in the title bar, it's just for dragging
218
219         wprintf("<td align=right valign=middle "
220                 // "onclick=\"javascript:$('address_book_popup').style.display='none';\" "
221                 "><img src=\"static/closewindow.gif\">");
222         wprintf("</td></tr></table>");
223
224         wprintf("</div>\n");
225
226         escputs(v->body);
227
228         wprintf("</div>\n");
229 }
230
231
232
233
234 /*
235  * display sticky notes
236  *
237  * msgnum = Message number on the local server of the note to be displayed
238  */
239 void display_note(long msgnum, int unread) {
240         char buf[1024];
241         char mime_partnum[256];
242         char mime_filename[256];
243         char mime_content_type[256];
244         char mime_disposition[256];
245         int mime_length;
246         char relevant_partnum[256];
247         char *relevant_source = NULL;
248
249         relevant_partnum[0] = '\0';
250         sprintf(buf, "MSG4 %ld", msgnum);       /* we need the mime headers */
251         serv_puts(buf);
252         serv_getln(buf, sizeof buf);
253         if (buf[0] != '1') return;
254
255         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
256                 if (!strncasecmp(buf, "part=", 5)) {
257                         extract_token(mime_filename, &buf[5], 1, '|', sizeof mime_filename);
258                         extract_token(mime_partnum, &buf[5], 2, '|', sizeof mime_partnum);
259                         extract_token(mime_disposition, &buf[5], 3, '|', sizeof mime_disposition);
260                         extract_token(mime_content_type, &buf[5], 4, '|', sizeof mime_content_type);
261                         mime_length = extract_int(&buf[5], 5);
262
263                         if (!strcasecmp(mime_content_type, "text/vnote")) {
264                                 strcpy(relevant_partnum, mime_partnum);
265                         }
266                 }
267         }
268
269         if (!IsEmptyStr(relevant_partnum)) {
270                 relevant_source = load_mimepart(msgnum, relevant_partnum);
271                 if (relevant_source != NULL) {
272                         struct vnote *v = vnote_new_from_str(relevant_source);
273                         free(relevant_source);
274                         display_vnote_div(v);
275
276                         /* uncomment these lines to see ugly debugging info 
277                         wprintf("<script type=\"text/javascript\">");
278                         wprintf("document.write('L: ' + $('note-%s').style.left + '; ');", v->uid);
279                         wprintf("document.write('T: ' + $('note-%s').style.top + '; ');", v->uid);
280                         wprintf("document.write('W: ' + $('note-%s').style.width + '; ');", v->uid);
281                         wprintf("document.write('H: ' + $('note-%s').style.height + '<br>');", v->uid);
282                         wprintf("</script>");
283                         */
284
285                         vnote_free(v);
286                 }
287         }
288 }
289
290 #endif