Citadel API clean up.
[citadel.git] / citadel / modules / notes / serv_notes.c
1 /*
2  * $Id$
3  *
4  * Handles functions related to yellow sticky notes.
5  *
6  * Copyright (c) 2007-2009 by the citadel.org team
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 3 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include "sysdep.h"
24 #include <stdlib.h>
25 #include <unistd.h>
26 #include <stdio.h>
27 #include <fcntl.h>
28 #include <signal.h>
29 #include <pwd.h>
30 #include <errno.h>
31 #include <sys/types.h>
32
33 #if TIME_WITH_SYS_TIME
34 # include <sys/time.h>
35 # include <time.h>
36 #else
37 # if HAVE_SYS_TIME_H
38 #  include <sys/time.h>
39 # else
40 #  include <time.h>
41 # endif
42 #endif
43
44 #include <sys/wait.h>
45 #include <string.h>
46 #include <limits.h>
47 #include <libcitadel.h>
48 #include "citadel.h"
49 #include "server.h"
50 #include "citserver.h"
51 #include "support.h"
52 #include "config.h"
53 #include "user_ops.h"
54 #include "policy.h"
55 #include "database.h"
56 #include "msgbase.h"
57
58 #include "ctdl_module.h"
59
60
61 /*
62  * Callback function for serv_notes_beforesave() hunts for a vNote in the MIME structure
63  */
64 void notes_extract_vnote(char *name, char *filename, char *partnum, char *disp,
65                    void *content, char *cbtype, char *cbcharset, size_t length,
66                    char *encoding, char *cbid, void *cbuserdata)
67 {
68         struct vnote **v = (struct vnote **) cbuserdata;
69
70         if (!strcasecmp(cbtype, "text/vnote")) {
71
72                 CtdlLogPrintf(CTDL_DEBUG, "Part %s contains a vNote!  Loading...\n", partnum);
73                 if (*v != NULL) {
74                         vnote_free(*v);
75                 }
76                 *v = vnote_new_from_str(content);
77         }
78 }
79
80
81 /*
82  * Before-save hook searches for two different types of notes (legacy Kolab/Aethera notes
83  * and modern vNote format notes) and does its best to learn the subject (summary)
84  * and EUID (uid) of the note for Citadel's own nefarious purposes.
85  */
86 int serv_notes_beforesave(struct CtdlMessage *msg)
87 {
88         char *p;
89         int a, i;
90         char uuid[512];
91         struct vnote *v = NULL;
92
93         /* First determine if this room has the "notes" view set */
94
95         if (CC->room.QRdefaultview != VIEW_NOTES) {
96                 return(0);                      /* not notes; do nothing */
97         }
98
99         /* It must be an RFC822 message! */
100         if (msg->cm_format_type != 4) {
101                 return(0);      /* You tried to save a non-RFC822 message! */
102         }
103         
104         /*
105          * If we are in a "notes" view room, and the client has sent an RFC822
106          * message containing an X-KOrg-Note-Id: field (Aethera does this, as
107          * do some Kolab clients) then set both the Subject and the Exclusive ID
108          * of the message to that.  It's going to be a UUID so we want to replace
109          * any existing message containing that UUID.
110          */
111         strcpy(uuid, "");
112         p = msg->cm_fields['M'];
113         a = strlen(p);
114         while (--a > 0) {
115                 if (!strncasecmp(p, "X-KOrg-Note-Id: ", 16)) {  /* Found it */
116                         safestrncpy(uuid, p + 16, sizeof(uuid));
117                         for (i = 0; uuid[i]; ++i) {
118                                 if ( (uuid[i] == '\r') || (uuid[i] == '\n') ) {
119                                         uuid[i] = 0;
120                                         break;
121                                 }
122                         }
123
124                         CtdlLogPrintf(9, "UUID of note is: %s\n", uuid);
125                         if (!IsEmptyStr(uuid)) {
126
127                                 if (msg->cm_fields['E'] != NULL) {
128                                         free(msg->cm_fields['E']);
129                                 }
130                                 msg->cm_fields['E'] = strdup(uuid);
131
132                                 if (msg->cm_fields['U'] != NULL) {
133                                         free(msg->cm_fields['U']);
134                                 }
135                                 msg->cm_fields['U'] = strdup(uuid);
136                         }
137                 }
138                 p++;
139         }
140
141         /* Modern clients are using vNote format.  Check for one... */
142
143         mime_parser(msg->cm_fields['M'],
144                 NULL,
145                 *notes_extract_vnote,
146                 NULL, NULL,
147                 &v,             /* user data ptr - put the vnote here */
148                 0
149         );
150
151         if (v == NULL) return(0);       /* no vNotes were found in this message */
152
153         /* Set the message EUID to the vNote UID */
154
155         if (v->uid) if (!IsEmptyStr(v->uid)) {
156                 CtdlLogPrintf(9, "UID of vNote is: %s\n", v->uid);
157                 if (msg->cm_fields['E'] != NULL) {
158                         free(msg->cm_fields['E']);
159                 }
160                 msg->cm_fields['E'] = strdup(v->uid);
161         }
162
163         /* Set the message Subject to the vNote Summary */
164
165         if (v->summary) if (!IsEmptyStr(v->summary)) {
166                 if (msg->cm_fields['U'] != NULL) {
167                         free(msg->cm_fields['U']);
168                 }
169                 msg->cm_fields['U'] = strdup(v->summary);
170                 if (strlen(msg->cm_fields['U']) > 72) {
171                         strcpy(&msg->cm_fields['U'][68], "...");
172                 }
173         }
174
175         vnote_free(v);
176         
177         return(0);
178 }
179
180
181 CTDL_MODULE_INIT(notes)
182 {
183         if (!threading)
184         {
185                 CtdlRegisterMessageHook(serv_notes_beforesave, EVT_BEFORESAVE);
186         }
187         
188         /* return our Subversion id for the Log */
189         return "$Id$";
190 }