e0f7df7ebbac49f662a5494c9d0a345a41d53781
[citadel.git] / webcit / webcit.h
1 /*
2  * Copyright (c) 1987-2015 by the citadel.org team
3  *
4  * This program is open source software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License version 3.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU General Public License for more details.
11  */
12
13 #include "sysdep.h"
14 #include <sys/select.h>
15 #include <ctype.h>
16 #include <stdlib.h>
17 #ifdef HAVE_UNISTD_H
18 #include <unistd.h>
19 #endif
20 #include <stdio.h>
21 #ifdef HAVE_FCNTL_H
22 #include <fcntl.h>
23 #endif
24 #include <signal.h>
25 #include <sys/types.h>
26 #include <sys/wait.h>
27 #include <sys/socket.h>
28 #include <sys/stat.h>
29 #ifdef HAVE_LIMITS_H
30 #include <limits.h>
31 #endif
32 #include <sys/socket.h>
33 #include <netinet/in.h>
34 #include <arpa/inet.h>
35 #include <netdb.h>
36 #include <sys/un.h>
37 #include <sys/poll.h>
38 #include <string.h>
39 #include <pwd.h>
40 #include <errno.h>
41 #include <stdarg.h>
42 #include <pthread.h>
43 #include <signal.h>
44 #include <syslog.h>
45 #include <sys/utsname.h>
46 #include <expat.h>
47 #include <libcitadel.h>
48
49 #ifdef HAVE_ICONV
50 #include <iconv.h>
51 #endif
52
53 #ifdef ENABLE_NLS
54 #ifdef HAVE_XLOCALE_H
55 #include <xlocale.h>
56 #endif
57 #include <libintl.h>
58 #include <locale.h>
59 #define _(string)       gettext(string)
60 #else
61 #define _(string)       (string)
62 #endif
63
64 #define DO_DBG_QR 0
65 #define DBG_QR(x) if(DO_DBG_QR) _DBG_QR(x)
66 #define DBG_QR2(x) if(DO_DBG_QR) _DBG_QR2(x)
67
68 #include <zlib.h>
69
70 #include <libical/ical.h>
71
72 #undef PACKAGE
73 #undef VERSION
74 #undef PACKAGE_NAME
75 #undef PACKAGE_STRING
76 #undef PACKAGE_TARNAME
77 #undef PACKAGE_VERSION
78 #undef PACKAGE_BUGREPORT
79
80 typedef struct wcsession wcsession;
81
82 #include "sysdep.h"
83
84 #include "subst.h"
85 #include "messages.h"
86 #include "paramhandling.h"
87 #include "roomops.h"
88 #include "preferences.h"
89
90 #include "tcp_sockets.h"
91 #include "utils.h"
92 #ifdef HAVE_OPENSSL
93 /* Work around RedHat's b0rken OpenSSL includes */
94 #define OPENSSL_NO_KRB5
95 #include <openssl/ssl.h>
96 #include <openssl/err.h>
97 #include <openssl/rand.h>
98 extern char *ssl_cipher_list;
99 #define DEFAULT_SSL_CIPHER_LIST "DEFAULT"       /* See http://openssl.org/docs/apps/ciphers.html */
100 #endif
101
102 #if SIZEOF_SIZE_T == SIZEOF_INT 
103 #define SIZE_T_FMT "%d"
104 #else
105 #define SIZE_T_FMT "%ld"
106 #endif
107
108 #if SIZEOF_LONG_UNSIGNED_INT == SIZEOF_INT
109 #define ULONG_FMT "%d"
110 #else
111 #define ULONG_FMT "%ld"
112 #endif
113
114 #define CALENDAR_ROOM_NAME      "Calendar"
115 #define PRODID "-//Citadel//NONSGML Citadel Calendar//EN"
116
117 #define SIZ                     4096            /* generic buffer size */
118
119 #define TRACE syslog(LOG_DEBUG, "\033[3%dmCHECKPOINT: %s:%d\033[0m", ((__LINE__%6)+1), __FILE__, __LINE__)
120
121 #ifdef UNDEF_MEMCPY
122 #undef memcpy
123 #endif
124
125 #define SLEEPING                180             /* TCP connection timeout */
126 #define WEBCIT_TIMEOUT          900             /* WebCit session timeout */
127 #define PORT_NUM                2000            /* port number to listen on */
128 #define DEVELOPER_ID            0
129 #define CLIENT_ID               4
130 #define CLIENT_VERSION          901             /* This version of WebCit */
131 #define MINIMUM_CIT_VERSION     901             /* Minimum required version of Citadel server */
132 #define LIBCITADEL_MIN          901             /* Minimum required version of libcitadel */
133 #define DEFAULT_HOST            "localhost"     /* Default Citadel server */
134 #define DEFAULT_PORT            "504"
135 #define TARGET                  "webcit01"      /* Window target for inline URL's */
136 #define HOUSEKEEPING            15              /* Housekeeping frequency */
137 #define MAX_WORKER_THREADS      250
138 #define LISTEN_QUEUE_LENGTH     100             /* listen() backlog queue */
139
140 #define USERCONFIGROOM          "My Citadel Config"
141 #define DEFAULT_MAXMSGS         20
142
143
144 #ifdef LIBCITADEL_VERSION_NUMBER
145 #if LIBCITADEL_VERSION_NUMBER < LIBCITADEL_MIN
146 #error libcitadel is too old.  Please upgrade it before continuing.
147 #endif
148 #endif
149
150
151
152
153 #define SRV_STATUS_MSG(ServerLineBuf) (ChrPtr(ServerLineBuf) + 4), (StrLength(ServerLineBuf) - 4)
154 #define MAJORCODE(a) (((int)(a / 100) ) * 100)
155
156 #define LISTING_FOLLOWS 100
157 #define CIT_OK          200     
158 #define MORE_DATA       300
159 #define SEND_LISTING    400
160 #define ERROR           500
161 #define BINARY_FOLLOWS  600
162 #define SEND_BINARY     700
163 #define START_CHAT_MODE 800
164 #define ASYNC_MSG       900
165
166 #define MINORCODE(a) (a % 100)
167 #define ASYNC_GEXP                      02      
168 #define INTERNAL_ERROR                  10      
169 #define TOO_BIG                         11      
170 #define ILLEGAL_VALUE                   12      
171 #define NOT_LOGGED_IN                   20      
172 #define CMD_NOT_SUPPORTED               30      
173 #define SERVER_SHUTTING_DOWN            31      
174 #define PASSWORD_REQUIRED               40      
175 #define ALREADY_LOGGED_IN               41      
176 #define USERNAME_REQUIRED               42      
177 #define HIGHER_ACCESS_REQUIRED          50      
178 #define MAX_SESSIONS_EXCEEDED           51      
179 #define RESOURCE_BUSY                   52      
180 #define RESOURCE_NOT_OPEN               53      
181 #define NOT_HERE                        60      
182 #define INVALID_FLOOR_OPERATION         61      
183 #define NO_SUCH_USER                    70      
184 #define FILE_NOT_FOUND                  71      
185 #define ROOM_NOT_FOUND                  72      
186 #define NO_SUCH_SYSTEM                  73      
187 #define ALREADY_EXISTS                  74      
188 #define MESSAGE_NOT_FOUND               75
189
190 /*
191  * NLI is the string that shows up in a who's online listing for sessions
192  * that are active but do not (yet) have a user logged in.
193  */
194 #define NLI     "(not logged in)"
195
196 /*
197  * Expiry policy for the autopurger
198  */
199 #define EXPIRE_NEXTLEVEL        0       /* Inherit expiration policy    */
200 #define EXPIRE_MANUAL           1       /* Don't expire messages at all */
201 #define EXPIRE_NUMMSGS          2       /* Keep only latest n messages  */
202 #define EXPIRE_AGE              3       /* Expire messages after n days */
203
204 typedef struct __ExpirePolicy {
205         int expire_mode;
206         int expire_value;
207 } ExpirePolicy;
208 void LoadExpirePolicy(GPEXWhichPolicy which);
209 void SaveExpirePolicyFromHTTP(GPEXWhichPolicy which);
210
211 /*
212  * Linked list of session variables encoded in an x-www-urlencoded content type
213  */
214 typedef struct urlcontent urlcontent;
215 struct urlcontent {
216         char url_key[32];               /* key */
217         StrBuf *url_data;               /* value */
218 };
219
220 /*
221  * Information about the Citadel server to which we are connected
222  */ 
223 typedef struct _serv_info {
224         int serv_pid;                   /* Process ID of the Citadel server */
225         StrBuf *serv_nodename;          /* Node name of the Citadel server */
226         StrBuf *serv_humannode;         /* Juman readable node name of the Citadel server */
227         StrBuf *serv_fqdn;              /* Fully qualified Domain Name (such as uncensored.citadel.org) */
228         StrBuf *serv_software;          /* Free form text description of the server software in use */
229         int serv_rev_level;             /* Server version number (times 100) */
230         StrBuf *serv_bbs_city;          /* Geographic location of the Citadel server */
231         StrBuf *serv_sysadm;            /* Name of system administrator */
232         int serv_supports_ldap;         /* is the server linked against an ldap tree for adresses? */
233         int serv_newuser_disabled;      /* Has the server disabled self-service new user creation? */
234         StrBuf *serv_default_cal_zone;  /* Default timezone for unspecified calendar items */
235         int serv_supports_sieve;        /* Server supports Sieve mail filtering */
236         int serv_fulltext_enabled;      /* Full text index is enabled */
237         StrBuf *serv_svn_revision;      /* svn or git revision of the server */
238         int serv_supports_openid;       /* Server supports authentication via OpenID */
239         int serv_supports_guest;        /* Server supports unauthenticated guest logins */
240 } ServInfo;
241
242
243 typedef struct _disp_cal {                                      
244         icalcomponent *cal;             /* cal items for display */
245         long cal_msgnum;                /* cal msgids for display */
246         char *from;                     /* owner of this component */
247         int unread;                     /* already seen by the user? */
248
249         time_t event_start;
250         time_t event_end;
251
252         int multi_day_event;
253         int is_repeat;
254         icalcomponent *SortBy;          /* cal items for display */
255         icalproperty_status Status;
256 } disp_cal;                                             
257
258 typedef struct _IcalKindEnumMap {
259         const char *Name;
260         long NameLen;
261         icalproperty_kind map;
262 } IcalKindEnumMap;
263 typedef struct _IcalMethodEnumMap {
264         const char *Name;
265         long NameLen;
266         icalproperty_method map;
267 } IcalMethodEnumMap;
268
269 /*
270  * Address book entry (keep it short and sweet, it's just a quickie lookup
271  * which we can use to get to the real meat and bones later)
272  */
273 typedef struct _addrbookent {
274         char ab_name[64];       /* name string */
275         long ab_msgnum;         /* message number of address book entry */
276 } addrbookent;
277
278
279 #define AJAX (1<<0)
280 #define ANONYMOUS (1<<1)
281 #define NEED_URL (1<<2)
282 #define XHTTP_COMMANDS (1<<3)
283 #define BOGUS (1<<4)
284 #define URLNAMESPACE (1<<4)
285 #define LOGCHATTY (1<<5)
286 #define COOKIEUNNEEDED (1<<6)
287 #define ISSTATIC (1<<7)
288 #define FORCE_SESSIONCLOSE (1<<8)
289 #define PARSE_REST_URL (1<<9)
290 #define PROHIBIT_STARTPAGE (1<<10)
291
292
293 #define DATEFMT_FULL 0
294 #define DATEFMT_BRIEF 1
295 #define DATEFMT_RAWDATE 2
296 #define DATEFMT_LOCALEDATE 3
297 long webcit_fmt_date(char *buf, size_t siz, time_t thetime, int Format);
298
299
300 typedef enum _RESTDispatchID {
301         ExistsID,
302         PutID,
303         DeleteID
304 } RESTDispatchID;
305
306 typedef int (*WebcitRESTDispatchID)(RESTDispatchID WhichAction, int IgnoreFloor);
307 typedef void (*WebcitHandlerFunc)(void);
308 typedef struct  _WebcitHandler{
309         WebcitHandlerFunc F;
310         WebcitRESTDispatchID RID;
311         long Flags;
312         StrBuf *Name;
313         StrBuf *DisplayName;
314 } WebcitHandler;
315
316
317 void WebcitAddUrlHandler(const char * UrlString, long UrlSLen, const char *DisplayName, long dslen, WebcitHandlerFunc F, long Flags);
318
319 typedef struct _headereval {
320         ExamineMsgHeaderFunc evaluator;
321         int Type;
322 } headereval;
323
324
325 struct attach_link {
326         char partnum[32];
327         char html[1024];
328 };
329
330
331 enum {
332         eUp,
333         eDown,
334         eNone
335 };
336
337 enum {
338         eGET,
339         ePOST,
340         eOPTIONS,
341         ePROPFIND,
342         ePUT,
343         eDELETE,
344         eHEAD,
345         eMOVE,
346         eCOPY,
347         eREPORT,
348         eNONE
349 };
350 extern const char *ReqStrs[eNONE];
351
352 #define NO_AUTH 0
353 #define AUTH_COOKIE 1
354 #define AUTH_BASIC 2
355
356
357
358 typedef struct _HdrRefs {
359         long eReqType;                          /* HTTP method */
360         int desired_session;
361         int SessionKey;
362
363         int got_auth;
364         int DontNeedAuth;
365         long ContentLength;
366         time_t if_modified_since;
367         int gzip_ok;                            /* Nonzero if Accept-encoding: gzip */
368         int prohibit_caching;
369         int dav_depth;
370         int Static;
371
372         /* these are references into Hdr->HTTPHeaders, so we don't need to free them. */
373         StrBuf *ContentType;
374         StrBuf *RawCookie;
375         StrBuf *ReqLine;
376         StrBuf *browser_host;
377         StrBuf *browser_language;
378         StrBuf *user_agent;
379         StrBuf *plainauth;
380         StrBuf *dav_ifmatch;
381
382         const WebcitHandler *Handler;
383 } HdrRefs;
384
385 typedef struct _ParsedHttpHdrs {
386         int http_sock;                          /* HTTP server socket */
387         long HaveRange;
388         long RangeStart;
389         long RangeTil;
390         long TotalBytes;
391         const char *Pos;
392         StrBuf *ReadBuf;
393
394         StrBuf *c_username;
395         StrBuf *c_password;
396         StrBuf *c_roomname;
397         StrBuf *c_language;
398         StrBuf *this_page;                      /* URL of current page */
399         StrBuf *PlainArgs; 
400         StrBuf *HostHeader;
401
402         HashList *urlstrings;                   /* variables passed to webcit in a URL */
403         HashList *HTTPHeaders;                  /* the headers the client sent us */
404         int nWildfireHeaders;                   /* how many wildfire headers did we already send? */
405
406         HdrRefs HR;
407 } ParsedHttpHdrs;
408
409
410 /*
411  * One of these is kept for each active Citadel session.
412  * HTTP transactions are bound to one at a time.
413  */
414 struct wcsession {
415 /* infrastructural members */
416         wcsession *next;                        /* Linked list */
417         pthread_mutex_t SessionMutex;           /* mutex for exclusive access */
418         int wc_session;                         /* WebCit session ID */
419         int killthis;                           /* Nonzero == purge this session */
420         int ctdl_pid;                           /* Session ID on the Citadel server */
421         int nonce;                              /* session nonce (to prevent session riding) */
422         int inuse;                              /* set to nonzero if bound to a running thread */
423
424 /* Session local Members */
425         int serv_sock;                          /* Client socket to Citadel server */
426         StrBuf *ReadBuf;                        /* linebuffered reads from the server */
427         StrBuf *MigrateReadLineBuf;             /* here we buffer legacy server read stuff */
428         const char *ReadPos;                    /* whats our read position in ReadBuf? */
429         int last_chat_seq;                      /* When in chat - last message seq# we saw */
430         time_t lastreq;                         /* Timestamp of most recent HTTP */
431         time_t last_pager_check;                /* last time we polled for instant msgs */
432         ServInfo *serv_info;                    /* Information about the citserver we're connected to */
433         StrBuf *PushedDestination;              /* Where to go after login, registration, etc. */
434
435 /* Request local Members */
436         StrBuf *CLineBuf;                       /* linebuffering client stuff */
437         ParsedHttpHdrs *Hdr;
438         StrBuf *WBuf;                           /* Our output buffer */
439         StrBuf *HBuf;                           /* Our HeaderBuffer */
440         StrBuf *WFBuf;                          /* Wildfire error logging buffer */
441         StrBuf *trailing_javascript;            /* extra javascript to be appended to page */
442         StrBuf *ImportantMsg;
443         HashList *Directory;                    /* Parts of the directory URL in snippets */
444         const Floor *CurrentFloor;              /* when Parsing REST, which floor are we on? */
445
446 /* accounting */
447         StrBuf *wc_username;                    /* login name of current user */
448         StrBuf *wc_fullname;                    /* Screen name of current user */
449         StrBuf *wc_password;                    /* Password of current user */
450         StrBuf *httpauth_pass;                  /* only for GroupDAV sessions */
451         int axlevel;                            /* this user's access level */
452         int is_aide;                            /* nonzero == this user is an Admin */
453         int connected;                          /* nonzero == we are connected to Citadel */
454         int logged_in;                          /* nonzero == we are logged in  */
455         int need_regi;                          /* This user needs to register. */
456         int need_vali;                          /* New users require validation. */
457
458 /* Preferences */
459         StrBuf *cs_inet_email;                  /* User's preferred Internet addr. */
460         HashList *hash_prefs;                   /* WebCit preferences for this user */
461         StrBuf *DefaultCharset;                 /* Charset the user preferes */
462         int downloaded_prefs;                   /* Has the client download its prefs yet? */
463         int SavePrefsToServer;                  /* Should we save our preferences to the server at the end of the request? */
464         int selected_language;                  /* Language selected by user */
465         int time_format_cache;                  /* which timeformat does our user like? */
466
467         folder CurRoom;                         /* information about our current room */
468         const folder *ThisRoom;                 /* if REST found a room, remember it here. */
469 /* next/previous room thingabob */
470         struct march *march;                    /* march mode room list */
471         char ugname[128];                       /* where does 'ungoto' take us */
472         long uglsn;                             /* last seen message number for ungoto */
473
474 /* Uploading; mime attachments for composing messages */
475         HashList *attachments;                  /* list of attachments for 'enter message' */
476         int upload_length;                      /* content length of http-uploaded data */
477         StrBuf *upload;                         /* pointer to http-uploaded data */
478         StrBuf *upload_filename;                /* filename of http-uploaded data */
479         char upload_content_type[256];          /* content type of http-uploaded data */
480
481         int remember_new_mail;                  /* last count of new mail messages */
482
483 /* Roomiew control */
484         HashList *Floors;                       /* floors our citserver has hashed numeric for quicker access*/
485         HashList *FloorsByName;                 /* same but hashed by its name */
486         HashList *Rooms;                        /* our directory structure as loaded by LKRA */
487         HashList *summ;                         /* list of messages for mailbox summary view */
488   /** Perhaps these should be within a struct instead */
489         long startmsg;                          /* message number to start at */
490         long maxmsgs;                           /* maximum messages to display */
491         long num_displayed;                     /* number of messages actually displayed */
492         HashList *disp_cal_items;               /* sorted list of calendar items; startdate is the sort criteria. */
493
494
495         char last_chat_user[256];
496
497         StrBuf *IconTheme;                      /* Icontheme setting */
498
499 /* Iconbar controls */
500         int cache_max_folders;
501         int cache_num_floors;
502         long *IBSettingsVec;                    /* which icons should be shown / not shown? */
503         const StrBuf *floordiv_expanded;        /* which floordiv currently expanded */
504         int ib_wholist_expanded;
505         int ib_roomlist_expanded;
506
507 /* our known Sieve scripts; loaded by SIEVE:SCRIPTS iterator. */
508         HashList *KnownSieveScripts;
509
510 /* Transcoding cache buffers; used to avoid to frequent realloc */
511         StrBuf *ConvertBuf1;
512         StrBuf *ConvertBuf2;
513
514 /* cache stuff for templates. TODO: find a smarter way */
515         HashList *ServCfg;                      /* cache our server config for editing */
516         HashList *InetCfg;                      /* Our inet server config for editing */
517         ExpirePolicy Policy[maxpolicy];
518
519 /* used by the blog viewer */
520         int bptlid;                             /* hash of thread currently being rendered */
521 };
522
523
524 typedef void (*Header_Evaluator)(StrBuf *Line, ParsedHttpHdrs *hdr);
525
526 typedef struct _HttpHeader {
527         Header_Evaluator H;
528         StrBuf *Val;
529         int HaveEvaluator;
530 } OneHttpHeader;
531
532 void RegisterHeaderHandler(const char *Name, long Len, Header_Evaluator F);
533
534
535 enum {
536         S_SHUTDOWN,
537         S_SPAWNER,
538         MAX_SEMAPHORES
539 };
540
541 #ifndef num_parms
542 #define num_parms(source)               num_tokens(source, '|') 
543 #endif
544
545 #define site_prefix     (WC ? (WC->Hdr->HostHeader) : NULL)
546
547 /* Per-session data */
548 #define WC ((struct wcsession *)pthread_getspecific(MyConKey))
549 extern pthread_key_t MyConKey;
550
551 /* Per-thread SSL context */
552 #ifdef HAVE_OPENSSL
553 #define THREADSSL ((SSL *)pthread_getspecific(ThreadSSL))
554 extern pthread_key_t ThreadSSL;
555 extern char ctdl_key_dir[PATH_MAX];
556 extern char file_crpt_file_key[PATH_MAX];
557 extern char file_crpt_file_csr[PATH_MAX];
558 extern char file_crpt_file_cer[PATH_MAX];
559
560 void init_ssl(void);
561 void endtls(void);
562 void ssl_lock(int mode, int n, const char *file, int line);
563 int starttls(int sock);
564 extern SSL_CTX *ssl_ctx;  
565 int client_read_sslbuffer(StrBuf *buf, int timeout);
566 int client_write_ssl(const StrBuf *Buf);
567 #endif
568
569 extern int is_https;
570 extern int follow_xff;
571 extern char *server_cookie;
572 extern char *ctdlhost, *ctdlport;
573 extern char *axdefs[];
574 extern int num_threads_existing;
575 extern int num_threads_executing;
576 extern int setup_wizard;
577 extern char wizard_filename[];
578
579 void InitialiseSemaphores(void);
580 void begin_critical_section(int which_one);
581 void end_critical_section(int which_one);
582
583 void CheckGZipCompressionAllowed(const char *MimeType, long MLen);
584
585 extern void do_404(void);
586 void http_redirect(const char *);
587
588
589 #ifdef UBER_VERBOSE_DEBUGGING
590 #define wc_printf(...) wcc_printf(__FILE__, __FUNCTION__, __LINE__, __VA_ARGS__)
591 void wcc_printf(const char *FILE, const char *FUNCTION, long LINE, const char *format, ...);
592 #else 
593 void wc_printf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
594 #endif
595
596 void hprintf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
597
598 void CheckAuthBasic(ParsedHttpHdrs *hdr);
599 void GetAuthBasic(ParsedHttpHdrs *hdr);
600
601 void sleeeeeeeeeep(int);
602
603 size_t wc_strftime(char *s, size_t max, const char *format, const struct tm *tm);
604 void fmt_time(char *buf, size_t siz, time_t thetime);
605 void httpdate(char *buf, time_t thetime);
606 time_t httpdate_to_timestamp(StrBuf *buf);
607
608
609
610
611 void end_webcit_session(void);
612
613
614
615
616 void cookie_to_stuff(StrBuf *cookie,
617                 int *session,
618                 StrBuf *user,
619                 StrBuf *pass,
620                 StrBuf *room,
621                 StrBuf *language
622 );
623 void locate_host(StrBuf *TBuf, int);
624 void become_logged_in(const StrBuf *user, const StrBuf *pass, StrBuf *serv_response);
625
626 void display_login(void);
627 void display_openids(void);
628 void display_default_landing_page(void);
629 void do_welcome(void);
630
631 void display_reg(int during_login);
632 void display_main_menu(void);
633 void display_aide_menu(void);
634
635 void RegisterEmbeddableMimeType(const char *MimeType, long MTLen, int Priority);
636 void CreateMimeStr(void);
637
638
639 void pop_destination(void);
640
641 void FmOut(StrBuf *Target, const char *align, const StrBuf *Source);
642 void wDumpContent(int);
643
644
645 void PutRequestLocalMem(void *Data, DeleteHashDataFunc DeleteIt);
646
647 void output_headers(    int do_httpheaders,
648                         int do_htmlhead,
649                         int do_room_banner,
650                         int unset_cookies,
651                         int suppress_check,
652                         int cache);
653 void output_custom_content_header(const char *ctype);
654 void cdataout(char *rawdata);
655
656
657 void url(char *buf, size_t bufsize);
658 void UrlizeText(StrBuf* Target, StrBuf *Source, StrBuf *WrkBuf);
659
660
661 void display_vcard(StrBuf *Target, wc_mime_attachment *Mime, char alpha, int full, char **storename, long msgnum);
662
663 void display_success(const char *successmessage);
664
665 void shutdown_sessions(void);
666
667
668
669 StrBuf *load_mimepart(long msgnum, char *partnum);
670 void MimeLoadData(wc_mime_attachment *Mime);
671 void do_edit_vcard(long msgnum, char *partnum, 
672                    message_summary *VCMsg,
673                    wc_mime_attachment *VCAtt,
674                    const char *return_to, 
675                    const char *force_room);
676
677 void select_user_to_edit(const char *preselect);
678
679 void convenience_page(const char *titlebarcolor, const char *titlebarmsg, const char *messagetext);
680 void output_html(const char *, int, int, StrBuf *, StrBuf *);
681
682 ssize_t write(int fd, const void *buf, size_t count);
683 void cal_process_attachment(wc_mime_attachment *Mime);
684
685 void begin_ajax_response(void);
686 void end_ajax_response(void);
687
688 extern char *months[];
689 extern char *days[];
690 long locate_user_vcard_in_this_room(message_summary **VCMsg,
691                                     wc_mime_attachment **VCAtt);
692 void http_transmit_thing(const char *content_type, int is_static);
693 void http_transmit_headers(const char *content_type, int is_static, long is_chunked, int is_gzip);
694 long unescape_input(char *buf);
695 void check_thread_pool_size(void);
696 void StrEndTab(StrBuf *Target, int tabnum, int num_tabs);
697 void StrBeginTab(StrBuf *Target, int tabnum, int num_tabs, StrBuf **Names);
698 void StrTabbedDialog(StrBuf *Target, int num_tabs, StrBuf *tabnames[]);
699 void tabbed_dialog(int num_tabs, char *tabnames[]);
700 void begin_tab(int tabnum, int num_tabs);
701 void end_tab(int tabnum, int num_tabs);
702
703 int get_time_format_cached (void);
704 void display_wiki_pagelist(void);
705 void str_wiki_index(char *);
706
707 HashList *GetRoomListHashLKRA(StrBuf *Target, WCTemplputParams *TP);
708
709 /* actual supported locales */
710 void TmplGettext(StrBuf *Target, WCTemplputParams *TP);
711
712 void set_selected_language(const char *);
713 void go_selected_language(void);
714 void stop_selected_language(void);
715 const char *get_selected_language(void);
716
717 void utf8ify_rfc822_string(char **buf);
718
719 void begin_burst(void);
720 long end_burst(void);
721
722 void AppendImportantMessage(const char *pch, long len);
723
724 void http_datestring(char *buf, size_t n, time_t xtime);
725
726
727 /* These should be empty, but we have them for testing */
728 #define DEFAULT_HTTPAUTH_USER   ""
729 #define DEFAULT_HTTPAUTH_PASS   ""
730
731
732 /* Exit codes 101 through 109 are initialization failures so we don't want to
733  * just keep respawning indefinitely.
734  */
735 #define WC_EXIT_BIND            101     /* Can't bind to the port */
736 #define WC_EXIT_SSL             102     /* Can't initialize SSL */
737
738
739 #define WC_TIMEFORMAT_NONE 0
740 #define WC_TIMEFORMAT_AMPM 1
741 #define WC_TIMEFORMAT_24 2
742
743 extern int time_to_die;                 /* Nonzero if server is shutting down */
744 extern int DisableGzip;
745
746 /* 
747  * Array type for a blog post.  The first message is the post; the rest are comments
748  */
749 struct blogpost {
750         int top_level_id;
751         long *msgs;             /* Array of msgnums for messages we are displaying */
752         int num_msgs;           /* Number of msgnums stored in 'msgs' */
753         int alloc_msgs;         /* Currently allocated size of array */
754         int unread_oments;
755 };
756
757
758 /*
759  * Data which gets returned from a call to blogview_learn_thread_references()
760  */
761 struct bltr {
762         int id;
763         int refs;
764 };
765
766
767 struct bltr blogview_learn_thread_references(long msgnum);
768 void tmplput_blog_permalink(StrBuf *Target, WCTemplputParams *TP);
769 void display_summary_page(void);
770
771 HashList *GetValidDomainNames(StrBuf *Target, WCTemplputParams *TP);