Implemented drag and drop for the new sticky notes view.
[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 #ifdef NEW_NOTES_VIEW
163
164 /*
165  * Display a <div> containing a rendered sticky note.
166  */
167 void display_vnote_div(struct vnote *v, long msgnum) {
168
169         /* begin outer div */
170
171         wprintf("<div id=\"note%ld\" ", msgnum);
172         wprintf("class=\"stickynote_outer\" ");
173         wprintf("style=\"");
174         wprintf("left: %dpx; ", v->pos_left);
175         wprintf("top: %dpx; ", v->pos_top);
176         wprintf("width: %dpx; ", v->pos_width);
177         wprintf("height: %dpx; ", v->pos_height);
178         wprintf("background-color: #%02X%02X%02X ", v->color_red, v->color_green, v->color_blue);
179         wprintf("\">");
180
181         /* begin title bar */
182
183         wprintf("<div id=\"titlebar%ld\" ", msgnum);
184         wprintf("class=\"stickynote_titlebar\" ");
185         wprintf("onMouseDown=\"NotesDragMouseDown(event,%ld)\" ", msgnum);
186         wprintf("style=\"");
187         wprintf("background-color: #%02X%02X%02X ", v->color_red/2, v->color_green/2, v->color_blue/2);
188         wprintf("\">");
189
190         wprintf("<table border=0 cellpadding=0 cellspacing=0 valign=middle width=100%%><tr>");
191         wprintf("<td>&nbsp;</td>", msgnum);
192
193         wprintf("<td align=right valign=middle "
194                 // "onclick=\"javascript:$('address_book_popup').style.display='none';\" "
195                 "><img src=\"static/closewindow.gif\">");
196         wprintf("</td></tr></table>");
197
198         wprintf("</div>\n");
199
200         escputs(v->body);
201
202         wprintf("</div>\n");
203 }
204
205
206
207
208 /*
209  * display sticky notes
210  *
211  * msgnum = Message number on the local server of the note to be displayed
212  */
213 void display_note(long msgnum, int unread) {
214         char buf[1024];
215         char mime_partnum[256];
216         char mime_filename[256];
217         char mime_content_type[256];
218         char mime_disposition[256];
219         int mime_length;
220         char relevant_partnum[256];
221         char *relevant_source = NULL;
222
223         relevant_partnum[0] = '\0';
224         sprintf(buf, "MSG4 %ld", msgnum);       /* we need the mime headers */
225         serv_puts(buf);
226         serv_getln(buf, sizeof buf);
227         if (buf[0] != '1') return;
228
229         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
230                 if (!strncasecmp(buf, "part=", 5)) {
231                         extract_token(mime_filename, &buf[5], 1, '|', sizeof mime_filename);
232                         extract_token(mime_partnum, &buf[5], 2, '|', sizeof mime_partnum);
233                         extract_token(mime_disposition, &buf[5], 3, '|', sizeof mime_disposition);
234                         extract_token(mime_content_type, &buf[5], 4, '|', sizeof mime_content_type);
235                         mime_length = extract_int(&buf[5], 5);
236
237                         if (!strcasecmp(mime_content_type, "text/vnote")) {
238                                 strcpy(relevant_partnum, mime_partnum);
239                         }
240                 }
241         }
242
243         if (!IsEmptyStr(relevant_partnum)) {
244                 relevant_source = load_mimepart(msgnum, relevant_partnum);
245                 if (relevant_source != NULL) {
246                         struct vnote *v = vnote_new_from_str(relevant_source);
247                         free(relevant_source);
248                         display_vnote_div(v, msgnum);
249                         vnote_free(v);
250
251                         /* FIXME remove these debugging messages when finished */
252                         wprintf("<script type=\"text/javascript\">");
253                         wprintf("document.write('L: ' + $('note%ld').style.left + '<br>');", msgnum);
254                         wprintf("document.write('T: ' + $('note%ld').style.top + '<br>');", msgnum);
255                         wprintf("document.write('W: ' + $('note%ld').style.width + '<br>');", msgnum);
256                         wprintf("document.write('H: ' + $('note%ld').style.height + '<br>');", msgnum);
257                         wprintf("</script>");
258                 }
259         }
260 }
261
262 #endif