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