Generate wiki diffs using a temp file instead of a big string of realloc() calls.
[citadel.git] / citadel / modules / wiki / serv_wiki.c
1 /*
2  * Server-side module for Wiki rooms.  This handles things like version control. 
3  * 
4  * Copyright (c) 2009-2011 by the citadel.org team
5  *
6  * This program is open source software.  You can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 3 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  */
20
21 #include "sysdep.h"
22 #include <stdlib.h>
23 #include <unistd.h>
24 #include <stdio.h>
25 #include <fcntl.h>
26 #include <signal.h>
27 #include <pwd.h>
28 #include <errno.h>
29 #include <ctype.h>
30 #include <sys/types.h>
31
32 #if TIME_WITH_SYS_TIME
33 # include <sys/time.h>
34 # include <time.h>
35 #else
36 # if HAVE_SYS_TIME_H
37 #  include <sys/time.h>
38 # else
39 #  include <time.h>
40 # endif
41 #endif
42
43 #include <sys/wait.h>
44 #include <string.h>
45 #include <limits.h>
46 #include <libcitadel.h>
47 #include "citadel.h"
48 #include "server.h"
49 #include "citserver.h"
50 #include "support.h"
51 #include "config.h"
52 #include "control.h"
53 #include "user_ops.h"
54 #include "database.h"
55 #include "msgbase.h"
56 #include "euidindex.h"
57 #include "ctdl_module.h"
58
59 /*
60  * Data passed back and forth between wiki_rev() and its MIME parser callback
61  */
62 struct HistoryEraserCallBackData {
63         char *tempfilename;             /* name of temp file being patched */
64         char *stop_when;                /* stop when we hit this uuid */
65         int done;                       /* set to nonzero when we're done patching */
66 };
67
68 /*
69  * Name of the temporary room we create to store old revisions when someone requests them.
70  * We put it in an invalid namespace so the DAP cleans up after us later.
71  */
72 char *wwm = "9999999999.WikiWaybackMachine";
73
74 /*
75  * Before allowing a wiki page save to execute, we have to perform version control.
76  * This involves fetching the old version of the page if it exists.
77  */
78 int wiki_upload_beforesave(struct CtdlMessage *msg) {
79         struct CitContext *CCC = CC;
80         long old_msgnum = (-1L);
81         struct CtdlMessage *old_msg = NULL;
82         long history_msgnum = (-1L);
83         struct CtdlMessage *history_msg = NULL;
84         char diff_old_filename[PATH_MAX];
85         char diff_new_filename[PATH_MAX];
86         char diff_out_filename[PATH_MAX];
87         char diff_cmd[PATH_MAX];
88         FILE *fp;
89         int rv;
90         char history_page[1024];
91         char boundary[256];
92         char prefixed_boundary[258];
93         char buf[1024];
94         char *diffbuf = NULL;
95         size_t diffbuf_len = 0;
96         char *ptr = NULL;
97
98         if (!CCC->logged_in) return(0); /* Only do this if logged in. */
99
100         /* Is this a room with a Wiki in it, don't run this hook. */
101         if (CCC->room.QRdefaultview != VIEW_WIKI) {
102                 return(0);
103         }
104
105         /* If this isn't a MIME message, don't bother. */
106         if (msg->cm_format_type != 4) return(0);
107
108         /* If there's no EUID we can't do this.  Reject the post. */
109         if (msg->cm_fields['E'] == NULL) return(1);
110
111         snprintf(history_page, sizeof history_page, "%s_HISTORY_", msg->cm_fields['E']);
112
113         /* Make sure we're saving a real wiki page rather than a wiki history page.
114          * This is important in order to avoid recursing infinitely into this hook.
115          */
116         if (    (strlen(msg->cm_fields['E']) >= 9)
117                 && (!strcasecmp(&msg->cm_fields['E'][strlen(msg->cm_fields['E'])-9], "_HISTORY_"))
118         ) {
119                 syslog(LOG_DEBUG, "History page not being historied\n");
120                 return(0);
121         }
122
123         /* If there's no message text, obviously this is all b0rken and shouldn't happen at all */
124         if (msg->cm_fields['M'] == NULL) return(0);
125
126         /* Set the message subject identical to the page name */
127         if (msg->cm_fields['U'] != NULL) {
128                 free(msg->cm_fields['U']);
129         }
130         msg->cm_fields['U'] = strdup(msg->cm_fields['E']);
131
132         /* See if we can retrieve the previous version. */
133         old_msgnum = CtdlLocateMessageByEuid(msg->cm_fields['E'], &CCC->room);
134         if (old_msgnum > 0L) {
135                 old_msg = CtdlFetchMessage(old_msgnum, 1);
136         }
137         else {
138                 old_msg = NULL;
139         }
140
141         if ((old_msg != NULL) && (old_msg->cm_fields['M'] == NULL)) {   /* old version is corrupt? */
142                 CtdlFreeMessage(old_msg);
143                 old_msg = NULL;
144         }
145         
146         /* If no changes were made, don't bother saving it again */
147         if ((old_msg != NULL) && (!strcmp(msg->cm_fields['M'], old_msg->cm_fields['M']))) {
148                 CtdlFreeMessage(old_msg);
149                 return(1);
150         }
151
152         /*
153          * Generate diffs
154          */
155         CtdlMakeTempFileName(diff_old_filename, sizeof diff_old_filename);
156         CtdlMakeTempFileName(diff_new_filename, sizeof diff_new_filename);
157         CtdlMakeTempFileName(diff_out_filename, sizeof diff_out_filename);
158
159         if (old_msg != NULL) {
160                 fp = fopen(diff_old_filename, "w");
161                 rv = fwrite(old_msg->cm_fields['M'], strlen(old_msg->cm_fields['M']), 1, fp);
162                 fclose(fp);
163                 CtdlFreeMessage(old_msg);
164         }
165
166         fp = fopen(diff_new_filename, "w");
167         rv = fwrite(msg->cm_fields['M'], strlen(msg->cm_fields['M']), 1, fp);
168         fclose(fp);
169
170         snprintf(diff_cmd, sizeof diff_cmd,
171                 "diff -u %s %s >%s",
172                 diff_new_filename,
173                 ((old_msg != NULL) ? diff_old_filename : "/dev/null"),
174                 diff_out_filename
175         );
176         syslog(LOG_DEBUG, "diff cmd: %s", diff_cmd);
177         rv = system(diff_cmd);
178         syslog(LOG_DEBUG, "diff cmd returned %d", rv);
179
180         diffbuf_len = 0;
181         diffbuf = NULL;
182         fp = fopen(diff_out_filename, "r");
183         if (fp == NULL) {
184                 fp = fopen("/dev/null", "r");
185         }
186         if (fp != NULL) {
187                 fseek(fp, 0L, SEEK_END);
188                 diffbuf_len = ftell(fp);
189                 fseek(fp, 0L, SEEK_SET);
190                 diffbuf = malloc(diffbuf_len + 1);
191                 fread(diffbuf, diffbuf_len, 1, fp);
192                 diffbuf[diffbuf_len] = 0;
193                 fclose(fp);
194         }
195
196         syslog(LOG_DEBUG, "diff length is %d bytes", diffbuf_len);
197
198         unlink(diff_old_filename);
199         unlink(diff_new_filename);
200         unlink(diff_out_filename);
201
202         /* Determine whether this was a bogus (empty) edit */
203         if ((diffbuf_len = 0) && (diffbuf != NULL)) {
204                 free(diffbuf);
205                 diffbuf = NULL;
206         }
207         if (diffbuf == NULL) {
208                 return(1);              /* No changes at all?  Abandon the post entirely! */
209         }
210
211         /* Now look for the existing edit history */
212
213         history_msgnum = CtdlLocateMessageByEuid(history_page, &CCC->room);
214         history_msg = NULL;
215         if (history_msgnum > 0L) {
216                 history_msg = CtdlFetchMessage(history_msgnum, 1);
217         }
218
219         /* Create a new history message if necessary */
220         if (history_msg == NULL) {
221                 history_msg = malloc(sizeof(struct CtdlMessage));
222                 memset(history_msg, 0, sizeof(struct CtdlMessage));
223                 history_msg->cm_magic = CTDLMESSAGE_MAGIC;
224                 history_msg->cm_anon_type = MES_NORMAL;
225                 history_msg->cm_format_type = FMT_RFC822;
226                 history_msg->cm_fields['A'] = strdup("Citadel");
227                 history_msg->cm_fields['R'] = strdup(CCC->room.QRname);
228                 history_msg->cm_fields['E'] = strdup(history_page);
229                 history_msg->cm_fields['U'] = strdup(history_page);
230                 history_msg->cm_fields['1'] = strdup("1");              /* suppress full text indexing */
231                 snprintf(boundary, sizeof boundary, "Citadel--Multipart--%04x--%08lx", getpid(), time(NULL));
232                 history_msg->cm_fields['M'] = malloc(1024);
233                 snprintf(history_msg->cm_fields['M'], 1024,
234                         "Content-type: multipart/mixed; boundary=\"%s\"\n\n"
235                         "This is a Citadel wiki history encoded as multipart MIME.\n"
236                         "Each part is comprised of a diff script representing one change set.\n"
237                         "\n"
238                         "--%s--\n"
239                         ,
240                         boundary, boundary
241                 );
242         }
243
244         /* Update the history message (regardless of whether it's new or existing) */
245
246         /* Remove the Message-ID from the old version of the history message.  This will cause a brand
247          * new one to be generated, avoiding an uninitentional hit of the loop zapper when we replicate.
248          */
249         if (history_msg->cm_fields['I'] != NULL) {
250                 free(history_msg->cm_fields['I']);
251                 history_msg->cm_fields['I'] = NULL;
252         }
253
254         /* Figure out the boundary string.  We do this even when we generated the
255          * boundary string in the above code, just to be safe and consistent.
256          */
257         strcpy(boundary, "");
258
259         ptr = history_msg->cm_fields['M'];
260         do {
261                 ptr = memreadline(ptr, buf, sizeof buf);
262                 if (*ptr != 0) {
263                         striplt(buf);
264                         if (!IsEmptyStr(buf) && (!strncasecmp(buf, "Content-type:", 13))) {
265                                 if (
266                                         (bmstrcasestr(buf, "multipart") != NULL)
267                                         && (bmstrcasestr(buf, "boundary=") != NULL)
268                                 ) {
269                                         safestrncpy(boundary, bmstrcasestr(buf, "\""), sizeof boundary);
270                                         char *qu;
271                                         qu = strchr(boundary, '\"');
272                                         if (qu) {
273                                                 strcpy(boundary, ++qu);
274                                         }
275                                         qu = strchr(boundary, '\"');
276                                         if (qu) {
277                                                 *qu = 0;
278                                         }
279                                 }
280                         }
281                 }
282         } while ( (IsEmptyStr(boundary)) && (*ptr != 0) );
283
284
285         /****************** STACK SMASH IS SOMEWHERE BELOW THIS LINE **************/
286
287
288         /* Now look for the first boundary.  That is where we need to insert our fun.
289          */
290         if (!IsEmptyStr(boundary)) {
291                 snprintf(prefixed_boundary, sizeof prefixed_boundary, "--%s", boundary);
292                 history_msg->cm_fields['M'] = realloc(history_msg->cm_fields['M'],
293                         strlen(history_msg->cm_fields['M']) + strlen(diffbuf) + 1024
294                 );
295                 ptr = bmstrcasestr(history_msg->cm_fields['M'], prefixed_boundary);
296                 if (ptr != NULL) {
297                         char *the_rest_of_it = strdup(ptr);
298                         char uuid[32];
299                         char memo[512];
300                         char encoded_memo[768];
301                         generate_uuid(uuid);
302                         snprintf(memo, sizeof memo, "%s|%ld|%s|%s", 
303                                 uuid,
304                                 time(NULL),
305                                 CCC->user.fullname,
306                                 config.c_nodename
307                                 /* no longer logging CCC->cs_inet_email */
308                         );
309                         CtdlEncodeBase64(encoded_memo, memo, strlen(memo), 0);
310                         sprintf(ptr, "--%s\n"
311                                         "Content-type: text/plain\n"
312                                         "Content-Disposition: inline; filename=\"%s\"\n"
313                                         "Content-Transfer-Encoding: 8bit\n"
314                                         "\n"
315                                         "%s\n"
316                                         "%s"
317                                         ,
318                                 boundary,
319                                 encoded_memo,
320                                 diffbuf,
321                                 the_rest_of_it
322                         );
323                         free(the_rest_of_it);
324                 }
325
326                 history_msg->cm_fields['T'] = realloc(history_msg->cm_fields['T'], 32);
327                 if (history_msg->cm_fields['T'] == NULL) {
328                         syslog(LOG_EMERG, "*** REALLOC FAILED *** %s", strerror(errno));
329                 }
330                 snprintf(history_msg->cm_fields['T'], 32, "%ld", time(NULL));
331         
332                 CtdlSubmitMsg(history_msg, NULL, "", 0);
333         }
334         else {
335                 syslog(LOG_ALERT, "Empty boundary string in history message.  No history!\n");
336         }
337
338
339         /****************** STACK SMASH IS SOMEWHERE BELOW THIS LINE **************/
340
341
342         free(diffbuf);
343         free(history_msg);
344         return(0);
345 }
346
347
348 /*
349  * MIME Parser callback for wiki_history()
350  *
351  * The "filename" field will contain a memo field.  All we have to do is decode
352  * the base64 and output it.  The data is already in a delimited format suitable
353  * for our client protocol.
354  */
355 void wiki_history_callback(char *name, char *filename, char *partnum, char *disp,
356                    void *content, char *cbtype, char *cbcharset, size_t length,
357                    char *encoding, char *cbid, void *cbuserdata)
358 {
359         char memo[1024];
360
361         CtdlDecodeBase64(memo, filename, strlen(filename));
362         cprintf("%s\n", memo);
363 }
364
365
366 /*
367  * Fetch a list of revisions for a particular wiki page
368  */
369 void wiki_history(char *pagename) {
370         int r;
371         char history_page_name[270];
372         long msgnum;
373         struct CtdlMessage *msg;
374
375         r = CtdlDoIHavePermissionToReadMessagesInThisRoom();
376         if (r != om_ok) {
377                 if (r == om_not_logged_in) {
378                         cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
379                 }
380                 else {
381                         cprintf("%d An unknown error has occurred.\n", ERROR);
382                 }
383                 return;
384         }
385
386         snprintf(history_page_name, sizeof history_page_name, "%s_HISTORY_", pagename);
387         msgnum = CtdlLocateMessageByEuid(history_page_name, &CC->room);
388         if (msgnum > 0L) {
389                 msg = CtdlFetchMessage(msgnum, 1);
390         }
391         else {
392                 msg = NULL;
393         }
394
395         if ((msg != NULL) && (msg->cm_fields['M'] == NULL)) {
396                 CtdlFreeMessage(msg);
397                 msg = NULL;
398         }
399
400         if (msg == NULL) {
401                 cprintf("%d Revision history for '%s' was not found.\n", ERROR+MESSAGE_NOT_FOUND, pagename);
402                 return;
403         }
404
405         
406         cprintf("%d Revision history for '%s'\n", LISTING_FOLLOWS, pagename);
407         mime_parser(msg->cm_fields['M'], NULL, *wiki_history_callback, NULL, NULL, NULL, 0);
408         cprintf("000\n");
409
410         CtdlFreeMessage(msg);
411         return;
412 }
413
414 /*
415  * MIME Parser callback for wiki_rev()
416  *
417  * The "filename" field will contain a memo field, which includes (among other things)
418  * the uuid of this revision.  After we hit the desired revision, we stop processing.
419  *
420  * The "content" filed will contain "diff" output suitable for applying via "patch"
421  * to our temporary file.
422  */
423 void wiki_rev_callback(char *name, char *filename, char *partnum, char *disp,
424                    void *content, char *cbtype, char *cbcharset, size_t length,
425                    char *encoding, char *cbid, void *cbuserdata)
426 {
427         struct HistoryEraserCallBackData *hecbd = (struct HistoryEraserCallBackData *)cbuserdata;
428         char memo[1024];
429         char this_rev[256];
430         FILE *fp;
431         char *ptr = NULL;
432         char buf[1024];
433
434         /* Did a previous callback already indicate that we've reached our target uuid?
435          * If so, don't process anything else.
436          */
437         if (hecbd->done) {
438                 return;
439         }
440
441         CtdlDecodeBase64(memo, filename, strlen(filename));
442         extract_token(this_rev, memo, 0, '|', sizeof this_rev);
443         syslog(LOG_DEBUG, "callback found rev: %s\n", this_rev);
444
445         /* Perform the patch */
446         fp = popen("patch -f -s -p0 -r /dev/null >/dev/null 2>/dev/null", "w");
447         if (fp) {
448                 /* Replace the filenames in the patch with the tempfilename we're actually tweaking */
449                 fprintf(fp, "--- %s\n", hecbd->tempfilename);
450                 fprintf(fp, "+++ %s\n", hecbd->tempfilename);
451
452                 ptr = (char *)content;
453                 int linenum = 0;
454                 do {
455                         ++linenum;
456                         ptr = memreadline(ptr, buf, sizeof buf);
457                         if (*ptr != 0) {
458                                 if (linenum <= 2) {
459                                         /* skip the first two lines; they contain bogus filenames */
460                                 }
461                                 else {
462                                         fprintf(fp, "%s\n", buf);
463                                 }
464                         }
465                 } while ((*ptr != 0) && (ptr < ((char*)content + length)));
466                 if (pclose(fp) != 0) {
467                         syslog(LOG_ERR, "pclose() returned an error - patch failed\n");
468                 }
469         }
470
471         if (!strcasecmp(this_rev, hecbd->stop_when)) {
472                 /* Found our target rev.  Tell any subsequent callbacks to suppress processing. */
473                 syslog(LOG_DEBUG, "Target revision has been reached -- stop patching.\n");
474                 hecbd->done = 1;
475         }
476 }
477
478
479 /*
480  * Fetch a specific revision of a wiki page.  The "operation" string may be set to "fetch" in order
481  * to simply fetch the desired revision and store it in a temporary location for viewing, or "revert"
482  * to revert the currently active page to that revision.
483  */
484 void wiki_rev(char *pagename, char *rev, char *operation)
485 {
486         int r;
487         char history_page_name[270];
488         long msgnum;
489         char temp[PATH_MAX];
490         char timestamp[64];
491         struct CtdlMessage *msg;
492         FILE *fp;
493         struct HistoryEraserCallBackData hecbd;
494         long len = 0L;
495         int rv;
496
497         r = CtdlDoIHavePermissionToReadMessagesInThisRoom();
498         if (r != om_ok) {
499                 if (r == om_not_logged_in) {
500                         cprintf("%d Not logged in.\n", ERROR + NOT_LOGGED_IN);
501                 }
502                 else {
503                         cprintf("%d An unknown error has occurred.\n", ERROR);
504                 }
505                 return;
506         }
507
508         if (!strcasecmp(operation, "revert")) {
509                 r = CtdlDoIHavePermissionToPostInThisRoom(temp, sizeof temp, NULL, POST_LOGGED_IN, 0);
510                 if (r != 0) {
511                         cprintf("%d %s\n", r, temp);
512                         return;
513                 }
514         }
515
516         /* Begin by fetching the current version of the page.  We're going to patch
517          * backwards through the diffs until we get the one we want.
518          */
519         msgnum = CtdlLocateMessageByEuid(pagename, &CC->room);
520         if (msgnum > 0L) {
521                 msg = CtdlFetchMessage(msgnum, 1);
522         }
523         else {
524                 msg = NULL;
525         }
526
527         if ((msg != NULL) && (msg->cm_fields['M'] == NULL)) {
528                 CtdlFreeMessage(msg);
529                 msg = NULL;
530         }
531
532         if (msg == NULL) {
533                 cprintf("%d Page '%s' was not found.\n", ERROR+MESSAGE_NOT_FOUND, pagename);
534                 return;
535         }
536
537         /* Output it to a temporary file */
538
539         CtdlMakeTempFileName(temp, sizeof temp);
540         fp = fopen(temp, "w");
541         if (fp != NULL) {
542                 r = fwrite(msg->cm_fields['M'], strlen(msg->cm_fields['M']), 1, fp);
543                 fclose(fp);
544         }
545         else {
546                 syslog(LOG_ALERT, "Cannot open %s: %s\n", temp, strerror(errno));
547         }
548         CtdlFreeMessage(msg);
549
550         /* Get the revision history */
551
552         snprintf(history_page_name, sizeof history_page_name, "%s_HISTORY_", pagename);
553         msgnum = CtdlLocateMessageByEuid(history_page_name, &CC->room);
554         if (msgnum > 0L) {
555                 msg = CtdlFetchMessage(msgnum, 1);
556         }
557         else {
558                 msg = NULL;
559         }
560
561         if ((msg != NULL) && (msg->cm_fields['M'] == NULL)) {
562                 CtdlFreeMessage(msg);
563                 msg = NULL;
564         }
565
566         if (msg == NULL) {
567                 cprintf("%d Revision history for '%s' was not found.\n", ERROR+MESSAGE_NOT_FOUND, pagename);
568                 return;
569         }
570
571         /* Start patching backwards (newest to oldest) through the revision history until we
572          * hit the revision uuid requested by the user.  (The callback will perform each one.)
573          */
574
575         memset(&hecbd, 0, sizeof(struct HistoryEraserCallBackData));
576         hecbd.tempfilename = temp;
577         hecbd.stop_when = rev;
578
579         mime_parser(msg->cm_fields['M'], NULL, *wiki_rev_callback, NULL, NULL, (void *)&hecbd, 0);
580         CtdlFreeMessage(msg);
581
582         /* Were we successful? */
583         if (hecbd.done == 0) {
584                 cprintf("%d Revision '%s' of page '%s' was not found.\n",
585                         ERROR + MESSAGE_NOT_FOUND, rev, pagename
586                 );
587         }
588
589         /* We have the desired revision on disk.  Now do something with it. */
590
591         else if ( (!strcasecmp(operation, "fetch")) || (!strcasecmp(operation, "revert")) ) {
592                 msg = malloc(sizeof(struct CtdlMessage));
593                 memset(msg, 0, sizeof(struct CtdlMessage));
594                 msg->cm_magic = CTDLMESSAGE_MAGIC;
595                 msg->cm_anon_type = MES_NORMAL;
596                 msg->cm_format_type = FMT_RFC822;
597                 fp = fopen(temp, "r");
598                 if (fp) {
599                         fseek(fp, 0L, SEEK_END);
600                         len = ftell(fp);
601                         fseek(fp, 0L, SEEK_SET);
602                         msg->cm_fields['M'] = malloc(len + 1);
603                         rv = fread(msg->cm_fields['M'], len, 1, fp);
604                         syslog(LOG_DEBUG, "did %d blocks of %ld bytes\n", rv, len);
605                         msg->cm_fields['M'][len] = 0;
606                         fclose(fp);
607                 }
608                 if (len <= 0) {
609                         msgnum = (-1L);
610                 }
611                 else if (!strcasecmp(operation, "fetch")) {
612                         msg->cm_fields['A'] = strdup("Citadel");
613                         CtdlCreateRoom(wwm, 5, "", 0, 1, 1, VIEW_BBS);  /* Not an error if already exists */
614                         msgnum = CtdlSubmitMsg(msg, NULL, wwm, 0);      /* Store the revision here */
615                 }
616                 else if (!strcasecmp(operation, "revert")) {
617                         snprintf(timestamp, sizeof timestamp, "%ld", time(NULL));
618                         msg->cm_fields['T'] = strdup(timestamp);
619                         msg->cm_fields['A'] = strdup(CC->user.fullname);
620                         msg->cm_fields['F'] = strdup(CC->cs_inet_email);
621                         msg->cm_fields['O'] = strdup(CC->room.QRname);
622                         msg->cm_fields['N'] = strdup(NODENAME);
623                         msg->cm_fields['E'] = strdup(pagename);
624                         msgnum = CtdlSubmitMsg(msg, NULL, "", 0);       /* Replace the current revision */
625                 }
626                 else {
627                         /* Theoretically it is impossible to get here, but throw an error anyway */
628                         msgnum = (-1L);
629                 }
630                 CtdlFreeMessage(msg);
631                 if (msgnum >= 0L) {
632                         cprintf("%d %ld\n", CIT_OK, msgnum);            /* Give the client a msgnum */
633                 }
634                 else {
635                         cprintf("%d Error %ld has occurred.\n", ERROR+INTERNAL_ERROR, msgnum);
636                 }
637         }
638
639         /* We did all this work for nothing.  Express anguish to the caller. */
640         else {
641                 cprintf("%d An unknown operation was requested.\n", ERROR+CMD_NOT_SUPPORTED);
642         }
643
644         unlink(temp);
645         return;
646 }
647
648
649
650 /*
651  * commands related to wiki management
652  */
653 void cmd_wiki(char *argbuf) {
654         char subcmd[32];
655         char pagename[256];
656         char rev[128];
657         char operation[16];
658
659         extract_token(subcmd, argbuf, 0, '|', sizeof subcmd);
660
661         if (!strcasecmp(subcmd, "history")) {
662                 extract_token(pagename, argbuf, 1, '|', sizeof pagename);
663                 wiki_history(pagename);
664                 return;
665         }
666
667         if (!strcasecmp(subcmd, "rev")) {
668                 extract_token(pagename, argbuf, 1, '|', sizeof pagename);
669                 extract_token(rev, argbuf, 2, '|', sizeof rev);
670                 extract_token(operation, argbuf, 3, '|', sizeof operation);
671                 wiki_rev(pagename, rev, operation);
672                 return;
673         }
674
675         cprintf("%d Invalid subcommand\n", ERROR + CMD_NOT_SUPPORTED);
676 }
677
678
679
680 /*
681  * Module initialization
682  */
683 CTDL_MODULE_INIT(wiki)
684 {
685         if (!threading)
686         {
687                 CtdlRegisterMessageHook(wiki_upload_beforesave, EVT_BEFORESAVE);
688                 CtdlRegisterProtoHook(cmd_wiki, "WIKI", "Commands related to Wiki management");
689         }
690
691         /* return our Subversion id for the Log */
692         return "wiki";
693 }