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