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