* split tasks view into its own file
[citadel.git] / webcit / webcit.h
1
2 /* $Id$ */
3
4 #include "sysdep.h"
5
6
7 #include <sys/select.h>
8
9 #include <ctype.h>
10 #include <stdlib.h>
11 #ifdef HAVE_UNISTD_H
12 #include <unistd.h>
13 #endif
14 #include <stdio.h>
15 #ifdef HAVE_FCNTL_H
16 #include <fcntl.h>
17 #endif
18 #include <signal.h>
19 #include <sys/types.h>
20 #include <sys/wait.h>
21 #include <sys/socket.h>
22 #ifdef HAVE_SYS_TIME_H
23 #include <sys/time.h>
24 #endif
25 #include <sys/stat.h>
26 #ifdef HAVE_LIMITS_H
27 #include <limits.h>
28 #endif
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
31 #include <sys/un.h>
32 #include <netdb.h>
33 #include <sys/poll.h>
34 #include <string.h>
35 #include <pwd.h>
36 #include <errno.h>
37 #include <stdarg.h>
38 #include <pthread.h>
39 #include <signal.h>
40 #include <sys/utsname.h>
41
42 #include <libcitadel.h>
43
44 #ifndef INADDR_NONE
45 #define INADDR_NONE 0xffffffff
46 #endif
47
48 #ifdef HAVE_ICONV
49 #include <iconv.h>
50 #endif
51
52 #ifdef ENABLE_NLS
53 #ifdef HAVE_XLOCALE_H
54 #include <xlocale.h>
55 #endif
56 #include <libintl.h>
57 #include <locale.h>
58 #define _(string)       gettext(string)
59 #else
60 #define _(string)       (string)
61 #endif
62
63 #define IsEmptyStr(a) ((a)[0] == '\0')
64 /*
65  * Uncomment to dump an HTTP trace to stderr
66 #define HTTP_TRACING 1
67  */
68
69 #ifdef HTTP_TRACING
70 #undef HAVE_ZLIB_H
71 #undef HAVE_ZLIB
72 #endif
73
74 #ifdef HAVE_ZLIB_H
75 #include <zlib.h>
76 #endif
77
78 #include <libical/ical.h>
79
80 #undef PACKAGE
81 #undef VERSION
82 #undef PACKAGE_NAME
83 #undef PACKAGE_STRING
84 #undef PACKAGE_TARNAME
85 #undef PACKAGE_VERSION
86 #undef PACKAGE_BUGREPORT
87 #include "sysdep.h"
88
89 #include "subst.h"
90 #include "messages.h"
91 #include "paramhandling.h"
92 #include "preferences.h"
93
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 #endif
101
102 #define CALENDAR_ROOM_NAME      "Calendar"
103 #define PRODID "-//Citadel//NONSGML Citadel Calendar//EN"
104
105 #define SIZ                     4096            /* generic buffer size */
106
107 #define TRACE fprintf(stderr, "Checkpoint: %s, %d\n", __FILE__, __LINE__)
108
109 #define SLEEPING                180             /* TCP connection timeout */
110 #define WEBCIT_TIMEOUT          900             /* WebCit session timeout */
111 #define PORT_NUM                2000            /* port number to listen on */
112 #define DEVELOPER_ID            0
113 #define CLIENT_ID               4
114 #define CLIENT_VERSION          762             /* This version of WebCit */
115 #define MINIMUM_CIT_VERSION     761             /* min required Citadel ver */
116 #define LIBCITADEL_MIN          761             /* min required libcitadel ver */
117 #define DEFAULT_HOST            "localhost"     /* Default Citadel server */
118 #define DEFAULT_PORT            "504"
119 #define TARGET                  "webcit01"      /* Target for inline URL's */
120 #define HOUSEKEEPING            15              /* Housekeeping frequency */
121 #define MIN_WORKER_THREADS      5
122 #define MAX_WORKER_THREADS      250
123 #define LISTEN_QUEUE_LENGTH     100             /* listen() backlog queue */
124
125 #define USERCONFIGROOM          "My Citadel Config"
126 #define DEFAULT_MAXMSGS         20
127
128
129 #ifdef LIBCITADEL_VERSION_NUMBER
130 #if LIBCITADEL_VERSION_NUMBER < LIBCITADEL_MIN
131 #error libcitadel is too old.  Please upgrade it before continuing.
132 #endif
133 #endif
134
135
136 /*
137  * Room flags (from Citadel)
138  *
139  * bucket one...
140  */
141 #define QR_PERMANENT    1               /* Room does not purge          */
142 #define QR_INUSE        2               /* Set if in use, clear if avail        */
143 #define QR_PRIVATE      4               /* Set for any type of private room     */
144 #define QR_PASSWORDED   8               /* Set if there's a password too        */
145 #define QR_GUESSNAME    16              /* Set if it's a guessname room */
146 #define QR_DIRECTORY    32              /* Directory room                       */
147 #define QR_UPLOAD       64              /* Allowed to upload                    */
148 #define QR_DOWNLOAD     128             /* Allowed to download          */
149 #define QR_VISDIR       256             /* Visible directory                    */
150 #define QR_ANONONLY     512             /* Anonymous-Only room          */
151 #define QR_ANONOPT      1024            /* Anonymous-Option room                */
152 #define QR_NETWORK      2048            /* Shared network room          */
153 #define QR_PREFONLY     4096            /* Preferred status needed to enter     */
154 #define QR_READONLY     8192            /* Aide status required to post */
155 #define QR_MAILBOX      16384           /* Set if this is a private mailbox     */
156
157 /*
158  * bucket two...
159  */
160 #define QR2_SYSTEM      1               /* System room; hide by default */
161 #define QR2_SELFLIST    2               /* Self-service mailing list mgmt       */
162 #define QR2_COLLABDEL   4               /* Anyone who can post can also delete*/
163 #define QR2_SUBJECTREQ  8               /* Subject strongly recommended */
164 #define QR2_SMTP_PUBLIC 16              /* smtp public postable room */
165 #define QR2_MODERATED   32              /* Listservice aide has to permit posts  */
166
167 /*
168  * user/room access
169  */
170 #define UA_KNOWN        2
171 #define UA_GOTOALLOWED  4
172 #define UA_HASNEWMSGS   8
173 #define UA_ZAPPED       16
174
175
176 /*
177  * User flags (from Citadel)
178  */
179 #define US_NEEDVALID    1               /* User needs to be validated           */
180 #define US_PERM         4               /* Permanent user                       */
181 #define US_LASTOLD      16              /* Print last old message with new      */
182 #define US_EXPERT       32              /* Experienced user                     */
183 #define US_UNLISTED     64              /* Unlisted userlog entry               */
184 #define US_NOPROMPT     128             /* Don't prompt after each message      */
185 #define US_PROMPTCTL    256             /* <N>ext & <S>top work at prompt       */
186 #define US_DISAPPEAR    512             /* Use "disappearing msg prompts"       */
187 #define US_REGIS        1024            /* Registered user                      */
188 #define US_PAGINATOR    2048            /* Pause after each screen of text      */
189 #define US_INTERNET     4096            /* Internet mail privileges             */
190 #define US_FLOORS       8192            /* User wants to see floors             */
191 #define US_COLOR        16384           /* User wants ANSI color support        */
192 #define US_USER_SET     (US_LASTOLD | US_EXPERT | US_UNLISTED | \
193                         US_NOPROMPT | US_DISAPPEAR | US_PAGINATOR | \
194                         US_FLOORS | US_COLOR | US_PROMPTCTL )
195
196
197 #define MAJORCODE(a) (((int)(a / 100) ) * 100)
198
199 #define LISTING_FOLLOWS 100
200 #define CIT_OK          200     
201 #define MORE_DATA       300
202 #define SEND_LISTING    400
203 #define ERROR           500
204 #define BINARY_FOLLOWS  600
205 #define SEND_BINARY     700
206 #define START_CHAT_MODE 800
207 #define ASYNC_MSG       900
208
209 #define MINORCODE(a) (a % 100)
210 #define ASYNC_GEXP                      02      
211 #define INTERNAL_ERROR                  10      
212 #define TOO_BIG                         11      
213 #define ILLEGAL_VALUE                   12      
214 #define NOT_LOGGED_IN                   20      
215 #define CMD_NOT_SUPPORTED               30      
216 #define SERVER_SHUTTING_DOWN            31      
217 #define PASSWORD_REQUIRED               40      
218 #define ALREADY_LOGGED_IN               41      
219 #define USERNAME_REQUIRED               42      
220 #define HIGHER_ACCESS_REQUIRED          50      
221 #define MAX_SESSIONS_EXCEEDED           51      
222 #define RESOURCE_BUSY                   52      
223 #define RESOURCE_NOT_OPEN               53      
224 #define NOT_HERE                        60      
225 #define INVALID_FLOOR_OPERATION         61      
226 #define NO_SUCH_USER                    70      
227 #define FILE_NOT_FOUND                  71      
228 #define ROOM_NOT_FOUND                  72      
229 #define NO_SUCH_SYSTEM                  73      
230 #define ALREADY_EXISTS                  74      
231 #define MESSAGE_NOT_FOUND               75
232 /*
233  * NLI is the string that shows up in a who's online listing for sessions
234  * that are active, but for which no user has yet authenticated.
235  */
236 #define NLI     "(not logged in)"
237
238
239 /*
240  * \brief       Linked list of session variables encoded in an x-www-urlencoded content type
241  */
242 typedef struct urlcontent urlcontent;
243 struct urlcontent {
244         char url_key[32];          /* the variable name */
245         StrBuf *url_data;            /* its value */
246 };
247
248 /*
249  * \brief information about us ???
250  */ 
251 typedef struct _serv_info {
252         int serv_pid;                   /* Process ID of the Citadel server */
253         StrBuf *serv_nodename;          /* Node name of the Citadel server */
254         StrBuf *serv_humannode;         /* human readable node name of the Citadel server */
255         StrBuf *serv_fqdn;              /* fully quallified Domain Name (such as uncensored.citadel.org) */
256         StrBuf *serv_software;          /* What version does our connected citadel server use */
257         int serv_rev_level;             /* Whats the citadel server revision */
258         StrBuf *serv_bbs_city;          /* Geographic location of the Citadel server */
259         StrBuf *serv_sysadm;            /* Name of system administrator */
260         StrBuf *serv_moreprompt;        /* Whats the commandline textprompt */
261         int serv_ok_floors;             /* nonzero == server supports floors */
262         int serv_supports_ldap;         /* is the server linked against an ldap tree for adresses? */
263         int serv_newuser_disabled;      /* Has the server disabled self-service new user creation? */
264         StrBuf *serv_default_cal_zone;  /* Default timezone for unspecified calendar items */
265         int serv_supports_sieve;        /* Does the server support Sieve mail filtering? */
266         int serv_fulltext_enabled;      /* Does the server have the full text index enabled? */
267         StrBuf *serv_svn_revision;      /* SVN revision of the server */
268         int serv_supports_openid;       /* Does the server support authentication via OpenID? */
269 } ServInfo;
270
271
272
273 /*
274  * \brief This struct holds a list of rooms for \\\<G\\\>oto operations.
275  */
276 struct march {
277         struct march *next;       /* pointer to next in linked list */
278         char march_name[128];     /* name of room */
279         int march_floor;          /* floor number of room */
280         int march_order;          /* sequence in which we are to visit this room */
281 };
282
283 /* *
284  * \brief       This struct holds a list of rooms for client display.
285  *              It is a binary tree.
286  */
287 struct roomlisting {
288         struct roomlisting *lnext;      /* pointer to 'left' tree node */
289         struct roomlisting *rnext;      /* pointer to 'right' tree node */
290         char rlname[128];               /* name of room */
291         unsigned rlflags;               /* room flags */
292         int rlfloor;                    /* the floor it resides on */
293         int rlorder;                    /* room listing order */
294 };
295
296
297
298
299
300
301
302 /**
303  * \brief  Data structure for roomlist-to-folderlist conversion 
304  */
305 struct folder {
306         int floor;      /* which floor is it on */
307         char room[SIZ]; /* which roomname ??? */
308         char name[SIZ]; /* which is its own name??? */
309         int hasnewmsgs; /* are there unread messages inside */
310         int is_mailbox; /* is it a mailbox?  */
311         int selectable; /* can we select it ??? */
312         int view;       /* whats its default view? inbox/calendar.... */
313         int num_rooms;  /* If this is a floor, how many rooms does it have */
314 };
315
316 typedef struct _disp_cal {                                      
317         icalcomponent *cal;             /* cal items for display */
318         long cal_msgnum;                /* cal msgids for display */
319         char *from;                     /* owner of this component */
320         int unread;                     /* already seen by the user? */
321
322         time_t event_start;
323         time_t event_end;
324
325         int multi_day_event;
326         int is_repeat;
327         icalcomponent *SortBy;          /* cal items for display */
328         icalproperty_status Status;
329 } disp_cal;                                             
330
331 typedef struct _IcalEnumMap {
332         const char *Name;
333         long NameLen;
334         icalproperty_kind map;
335 } IcalEnumMap;
336
337 /*
338  * Address book entry (keep it short and sweet, it's just a quickie lookup
339  * which we can use to get to the real meat and bones later)
340  */
341 typedef struct _addrbookent {
342         char ab_name[64]; /**< name string */
343         long ab_msgnum;   /**< message number of address book entry */
344 } addrbookent;
345
346
347 #define AJAX (1<<0)
348 #define ANONYMOUS (1<<1)
349 #define NEED_URL (1<<2)
350 #define XHTTP_COMMANDS (1<<3)
351 #define BOGUS (1<<4)
352 #define URLNAMESPACE (1<<4)
353 #define LOGCHATTY (1<<5)
354 #define COOKIEUNNEEDED (1<<6)
355 #define ISSTATIC (1<<7)
356 #define FORCE_SESSIONCLOSE (1<<8)
357
358
359 typedef void (*WebcitHandlerFunc)(void);
360 typedef struct  _WebcitHandler{
361         WebcitHandlerFunc F;
362         long Flags;
363         StrBuf *Name;
364 } WebcitHandler;
365 void WebcitAddUrlHandler(const char * UrlString, long UrlSLen, WebcitHandlerFunc F, long Flags);
366
367 typedef struct _headereval {
368         ExamineMsgHeaderFunc evaluator;
369         int Type;
370 } headereval;
371
372
373 struct attach_link {
374         char partnum[32];
375         char html[1024];
376 };
377
378
379 enum {
380         eUp,
381         eDown,
382         eNone
383 };
384
385 enum {
386         eGET,
387         ePOST,
388         eOPTIONS,
389         ePROPFIND,
390         ePUT,
391         eDELETE,
392         eHEAD,
393         eMOVE,
394         eCOPY,
395         eNONE
396 };
397 const char *ReqStrs[eNONE];
398
399 #define NO_AUTH 0
400 #define AUTH_COOKIE 1
401 #define AUTH_BASIC 2
402
403
404
405 typedef struct _HdrRefs {
406         long eReqType;                          /**< eGET, ePOST.... */
407         int desired_session;
408         int SessionKey;
409
410         int got_auth;
411         int DontNeedAuth;
412         long ContentLength;
413         time_t if_modified_since;
414         int gzip_ok;                            /**< Nonzero if Accept-encoding: gzip */
415         int prohibit_caching;
416         int dav_depth;
417
418         /* these are references into Hdr->HTTPHeaders, so we don't need to free them. */
419         StrBuf *ContentType;
420         StrBuf *RawCookie;
421         StrBuf *ReqLine;
422         StrBuf *http_host;                      /**< HTTP Host: header */
423         StrBuf *browser_host;
424         StrBuf *user_agent;
425         StrBuf *plainauth;
426         StrBuf *dav_ifmatch;
427
428         const WebcitHandler *Handler;
429 } HdrRefs;
430
431 typedef struct _ParsedHttpHdrs {
432         int http_sock;                          /**< HTTP server socket */
433         const char *Pos;
434         StrBuf *ReadBuf;
435
436         StrBuf *c_username;
437         StrBuf *c_password;
438         StrBuf *c_roomname;
439         StrBuf *c_language;
440         StrBuf *this_page;                      /**< URL of current page */
441         StrBuf *PlainArgs; 
442
443         HashList *urlstrings;                   /**< variables passed to webcit in a URL */
444         HashList *HTTPHeaders;                  /**< the headers the client sent us */
445         int nWildfireHeaders;                   /**< how many wildfire headers did we already send? */
446
447         HdrRefs HR;
448 } ParsedHttpHdrs;
449
450
451 /*
452  * One of these is kept for each active Citadel session.
453  * HTTP transactions are bound to one at a time.
454  */
455 typedef struct wcsession wcsession;
456 struct wcsession {
457 /* infrastructural members */
458         wcsession *next;                        /**< Linked list */
459         pthread_mutex_t SessionMutex;           /**< mutex for exclusive access */
460         int wc_session;                         /**< WebCit session ID */
461         int killthis;                           /**< Nonzero == purge this session */
462         int is_mobile;                          /**< Client is a handheld browser */
463         int ctdl_pid;                           /**< Session ID on the Citadel server */
464         int nonce;                              /**< session nonce (to prevent session riding) */
465         int SessionKey;
466
467 /* Session local Members */
468         int serv_sock;                          /**< Client socket to Citadel server */
469         StrBuf *ReadBuf;                        /**< here we keep our stuff while reading linebuffered from the server. */
470         StrBuf *MigrateReadLineBuf;             /**< here we buffer legacy server read stuff */
471         const char *ReadPos;                    /**< whats our read position in ReadBuf? */
472         int chat_sock;                          /**< Client socket to Citadel server - for chat */
473         time_t lastreq;                         /**< Timestamp of most recent HTTP */
474         time_t last_pager_check;                /**< last time we polled for instant msgs */
475         ServInfo *serv_info;                   /**< Iformation about the citserver we're connected to */
476         int is_ajax;                            /** < are we doing an ajax request? */
477
478 /* Request local Members */
479         StrBuf *CLineBuf;                       /**< linebuffering client stuff */
480         ParsedHttpHdrs *Hdr;
481         StrBuf *WBuf;                           /**< Our output buffer */
482         StrBuf *HBuf;                           /**< Our HeaderBuffer */
483
484         HashList *vars;                         /**< HTTP variable substitutions for this page */
485         StrBuf *trailing_javascript;            /**< extra javascript to be appended to page */
486         char ImportantMessage[SIZ];             /**< ??? todo */
487         StrBuf *ImportantMsg;
488
489 /* accounting */
490         StrBuf *wc_username;                    /**< login name of current user */
491         StrBuf *wc_fullname;                    /**< Screen name of current user */
492         StrBuf *wc_password;                    /**< Password of current user */
493         StrBuf *httpauth_pass;                  /**< only for GroupDAV sessions */
494         int axlevel;                            /**< this user's access level */
495         int is_aide;                            /**< nonzero == this user is an Aide */
496         int is_room_aide;                       /**< nonzero == this user is a Room Aide in this room */
497         int connected;                          /**< nonzero == we are connected to Citadel */
498         int logged_in;                          /**< nonzero == we are logged in  */
499         int need_regi;                          /**< This user needs to register. */
500         int need_vali;                          /**< New users require validation. */
501
502 /* Preferences */
503         StrBuf *cs_inet_email;                  /**< User's preferred Internet addr. */
504         char reply_to[512];                     /**< reply-to address */
505         HashList *hash_prefs;                   /**< WebCit preferences for this user */
506         StrBuf *DefaultCharset;                 /**< Charset the user preferes */
507         int downloaded_prefs;                   /** Has the client download its prefs yet? */
508         int SavePrefsToServer;                  /**< Should we save our preferences to the server at the end of the request? */
509         int selected_language;                  /**< Language selected by user */
510         int time_format_cache;                  /**< which timeformat does our user like? */
511
512 /* current room related */
513         StrBuf *wc_roomname;                    /**< Room we are currently in */
514         unsigned room_flags;                    /**< flags associated with the current room */
515         unsigned room_flags2;                   /**< flags associated with the current room */
516         int wc_view;                            /**< view for the current room */
517         int wc_default_view;                    /**< default view for the current room */
518         int wc_is_trash;                        /**< nonzero == current room is a Trash folder */
519         int wc_floor;                           /**< floor number of current room */
520         int is_mailbox;                         /**< the current room is a private mailbox */
521
522 /* next/previous room thingabob */
523         struct march *march;                    /**< march mode room list */
524         char ugname[128];                       /**< where does 'ungoto' take us */
525         long uglsn;                             /**< last seen message number for ungoto */
526
527 /* Uploading; mime attachments for composing messages */
528         HashList *attachments;                  /**< list of attachments for 'enter message' */
529         int upload_length;                      /**< content length of http-uploaded data */
530         StrBuf *upload;                         /**< pointer to http-uploaded data */
531         char upload_filename[PATH_MAX];         /**< filename of http-uploaded data */
532         char upload_content_type[256];          /**< content type of http-uploaded data */
533
534         int new_mail;                           /**< user has new mail waiting */
535         int remember_new_mail;                  /**< last count of new mail messages */
536
537 /* Roomiew control */
538         HashList *summ;                         /**< list of messages for mailbox summary view */
539   /** Perhaps these should be within a struct instead */
540         long startmsg;                          /**< message number to start at */
541         long maxmsgs;                           /**< maximum messages to display */
542         long num_displayed;                     /**< number of messages actually displayed */
543         HashList *disp_cal_items;               /**< sorted list of calendar items; startdate is the sort criteria. */
544
545
546         char last_chat_user[256];               /**< ??? todo */
547
548 /* Iconbar controls */
549         struct folder *cache_fold;              /**< cache the iconbar room list */
550         int cache_max_folders;                  /**< ??? todo */
551         int cache_num_floors;                   /**< ??? todo */
552         time_t cache_timestamp;                 /**< ??? todo */
553         HashList *IconBarSettings;             /**< which icons should be shown / not shown? */
554         const StrBuf *floordiv_expanded;        /**< which floordiv currently expanded */
555
556
557
558 /* cache stuff for templates. TODO: find a smartrer way */
559         HashList *ServCfg;                      /**< cache our server config for editing */
560         HashList *InetCfg;                      /**< Our inet server config for editing */
561
562 };
563
564
565 typedef void (*Header_Evaluator)(StrBuf *Line, ParsedHttpHdrs *hdr);
566
567 typedef struct _HttpHeader {
568         Header_Evaluator H;
569         StrBuf *Val;
570         int HaveEvaluator;
571 } OneHttpHeader;
572
573 void RegisterHeaderHandler(const char *Name, long Len, Header_Evaluator F);
574
575
576 enum {
577         S_SELECT,
578         S_SHUTDOWN,
579         MAX_SEMAPHORES
580 };
581
582
583 #ifndef num_parms
584 #define num_parms(source)               num_tokens(source, '|') 
585 #endif
586
587 /* Per-session data */
588 #define WC ((struct wcsession *)pthread_getspecific(MyConKey))
589 extern pthread_key_t MyConKey;
590
591 /* Per-thread SSL context */
592 #ifdef HAVE_OPENSSL
593 #define THREADSSL ((SSL *)pthread_getspecific(ThreadSSL))
594 extern pthread_key_t ThreadSSL;
595 extern char ctdl_key_dir[PATH_MAX];
596 extern char file_crpt_file_key[PATH_MAX];
597 extern char file_crpt_file_csr[PATH_MAX];
598 extern char file_crpt_file_cer[PATH_MAX];
599 #endif
600
601 extern char floorlist[128][SIZ];
602 extern char *axdefs[];
603 extern char *ctdlhost, *ctdlport;
604 extern int http_port;
605 extern char *server_cookie;
606 extern int is_https;
607 extern int setup_wizard;
608 extern char wizard_filename[];
609 extern int follow_xff;
610
611 void InitialiseSemaphores(void);
612 void begin_critical_section(int which_one);
613 void end_critical_section(int which_one);
614
615 void stuff_to_cookie(char *cookie, size_t clen,
616                 int session,
617                 StrBuf *user,
618                 StrBuf *pass,
619                 StrBuf *room,
620                 const char *language
621 );
622 void cookie_to_stuff(StrBuf *cookie,
623                 int *session,
624                 StrBuf *user,
625                 StrBuf *pass,
626                 StrBuf *room,
627                 StrBuf *language
628 );
629 void locate_host(StrBuf *TBuf, int);
630 void become_logged_in(const StrBuf *user, const StrBuf *pass, StrBuf *serv_response);
631 void openid_manual_create(void);
632 void display_login();
633 void display_openids(void);
634 void do_welcome(void);
635 void do_logout(void);
636 void display_main_menu(void);
637 void display_aide_menu(void);
638 void display_advanced_menu(void);
639 void slrp_highest(void);
640 ServInfo *get_serv_info(StrBuf *, StrBuf *);
641 int GetConnected(void);
642 void DeleteServInfo(ServInfo **FreeMe);
643 int uds_connectsock(char *);
644 int tcp_connectsock(char *, char *);
645 int serv_getln(char *strbuf, int bufsize);
646 int StrBuf_ServGetln(StrBuf *buf);
647 int GetServerStatus(StrBuf *Line, long* FullState);
648 void serv_puts(const char *string);
649 void who(void);
650 void who_inner_div(void);
651 void ajax_mini_calendar(void);
652 void fmout(char *align);
653 void _fmout(StrBuf *Targt, char *align);
654 void FmOut(StrBuf *Target, char *align, StrBuf *Source);
655 void pullquote_fmout(void);
656 void wDumpContent(int);
657
658 int Flathash(const char *str, long len);
659
660
661
662
663
664 void UrlescPutStrBuf(const StrBuf *strbuf);
665 void StrEscPuts(const StrBuf *strbuf);
666 void StrEscputs1(const StrBuf *strbuf, int nbsp, int nolinebreaks);
667
668 void urlescputs(const char *);
669 void hurlescputs(const char *);
670 void jsesc(char *, size_t, char *);
671 void jsescputs(char *);
672 void output_headers(    int do_httpheaders,
673                         int do_htmlhead,
674                         int do_room_banner,
675                         int unset_cookies,
676                         int suppress_check,
677                         int cache);
678 void output_custom_content_header(const char *ctype);
679 void wprintf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
680 void hprintf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
681 void output_static(const char* What);
682
683 void print_menu_box(char* Title, char *Class, int nLines, ...);
684 long stresc(char *target, long tSize, char *strbuf, int nbsp, int nolinebreaks);
685 void escputs(const char *strbuf);
686 void url(char *buf, size_t bufsize);
687 void UrlizeText(StrBuf* Target, StrBuf *Source, StrBuf *WrkBuf);
688 void escputs1(const char *strbuf, int nbsp, int nolinebreaks);
689 void msgesc(char *target, size_t tlen, char *strbuf);
690 void msgescputs(char *strbuf);
691 void msgescputs1(char *strbuf);
692 void dump_vars(void);
693 void embed_main_menu(void);
694
695 void do_addrbook_view(addrbookent *addrbook, int num_ab);
696 void fetch_ab_name(message_summary *Msg, char **namebuf);
697 void display_vcard(StrBuf *Target, StrBuf *vcard_source, char alpha, int full, char **storename, long msgnum);
698 void jsonMessageList(void);
699 void new_summary_view(void);
700 void getseen(void);
701 void text_to_server(char *ptr);
702 void text_to_server_qp(char *ptr);
703 void confirm_delete_msg(void);
704 void display_success(char *);
705 void CheckAuthBasic(ParsedHttpHdrs *hdr);
706 void GetAuthBasic(ParsedHttpHdrs *hdr);
707 void server_to_text(void);
708 void save_edit(char *description, char *enter_cmd, int regoto);
709 void display_edit(char *description, char *check_cmd,
710                   char *read_cmd, char *save_cmd, int with_room_banner);
711 long gotoroom(const StrBuf *gname);
712 void confirm_delete_room(void);
713 void validate(void);
714 void display_graphics_upload(char *, char *, char *);
715 void do_graphics_upload(char *upl_cmd);
716 void serv_gets(char *strbuf);
717 void serv_write(const char *buf, int nbytes);
718 void serv_putbuf(const StrBuf *string);
719 void serv_printf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
720 void load_floorlist(StrBuf *Buf);
721 void shutdown_sessions(void);
722 void do_housekeeping(void);
723 void smart_goto(const StrBuf *);
724 void worker_entry(void);
725 void session_loop(void);
726 size_t wc_strftime(char *s, size_t max, const char *format, const struct tm *tm);
727 void fmt_time(char *buf, size_t siz, time_t thetime);
728 void httpdate(char *buf, time_t thetime);
729 time_t httpdate_to_timestamp(StrBuf *buf);
730 void end_webcit_session(void);
731 void page_popup(void);
732 void http_redirect(const char *);
733 void clear_substs(struct wcsession *wc);
734 void clear_local_substs(void);
735
736
737
738 int lingering_close(int fd);
739 char *memreadline(char *start, char *buf, int maxlen);
740 char *memreadlinelen(char *start, char *buf, int maxlen, int *retlen);
741 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
742 void remove_token(char *source, int parmnum, char separator);
743 StrBuf *load_mimepart(long msgnum, char *partnum);
744 void MimeLoadData(wc_mime_attachment *Mime);
745 int pattern2(char *search, char *patn);
746 void do_edit_vcard(long msgnum, char *partnum, 
747                    message_summary *VCMsg,
748                    wc_mime_attachment *VCAtt,
749                    char *return_to, 
750                    const char *force_room);
751
752 void select_user_to_edit(const char *preselect);
753 void delete_user(char *);
754 void do_change_view(int);
755 void folders(void);
756
757
758
759 void display_addressbook(long msgnum, char alpha);
760 void offer_start_page(StrBuf *Target, WCTemplputParams *TP);
761 void convenience_page(const char *titlebarcolor, const char *titlebarmsg, const char *messagetext);
762 void output_html(const char *, int, int, StrBuf *, StrBuf *);
763 void do_listsub(void);
764 ssize_t write(int fd, const void *buf, size_t count);
765 void cal_process_attachment(wc_mime_attachment *Mime);
766 void display_calendar(message_summary *Msg, int unread);
767 void display_note(message_summary *Msg, int unread);
768 void updatenote(void);
769 void do_tasks_view(void);
770 int calendar_summary_view(void);
771 void free_march_list(wcsession *wcf);
772 void display_rules_editor_inner_div(void);
773 void generate_uuid(char *);
774 void CtdlMakeTempFileName(char *, int);
775 void address_book_popup(void);
776 void begin_ajax_response(void);
777 void end_ajax_response(void);
778 void initialize_viewdefs(void);
779 void initialize_axdefs(void);
780 void burn_folder_cache(time_t age);
781 void list_all_rooms_by_floor(const char *viewpref);
782 void display_pictureview(void);
783
784 void display_edit_task(void);
785 void display_edit_event(void);
786 icaltimezone *get_default_icaltimezone(void);
787 void display_icaltimetype_as_webform(struct icaltimetype *, char *, int);
788 void icaltime_from_webform(struct icaltimetype *result, char *prefix);
789 void icaltime_from_webform_dateonly(struct icaltimetype *result, char *prefix);
790 void partstat_as_string(char *buf, icalproperty *attendee);
791 icalcomponent *ical_encapsulate_subcomponent(icalcomponent *subcomp);
792 void check_attendee_availability(icalcomponent *supplied_vevent);
793 int ical_ctdl_is_overlap(
794                         struct icaltimetype t1start,
795                         struct icaltimetype t1end,
796                         struct icaltimetype t2start,
797                         struct icaltimetype t2end
798 );
799
800
801 extern char *months[];
802 extern char *days[];
803 int read_server_binary(StrBuf *Ret, size_t total_len, StrBuf *Buf);
804 int StrBuf_ServGetBLOB(StrBuf *buf, long BlobSize);
805 int StrBuf_ServGetBLOBBuffered(StrBuf *buf, long BlobSize);
806 int read_server_text(StrBuf *Buf, long *nLines);
807 int goto_config_room(StrBuf *Buf);
808 long locate_user_vcard_in_this_room(message_summary **VCMsg,
809                                     wc_mime_attachment **VCAtt);
810 void sleeeeeeeeeep(int);
811 void http_transmit_thing(const char *content_type, int is_static);
812 long unescape_input(char *buf);
813 void do_selected_iconbar(void);
814 void spawn_another_worker_thread(void);
815 void StrEndTab(StrBuf *Target, int tabnum, int num_tabs);
816 void StrBeginTab(StrBuf *Target, int tabnum, int num_tabs);
817 void StrTabbedDialog(StrBuf *Target, int num_tabs, StrBuf *tabnames[]);
818 void tabbed_dialog(int num_tabs, char *tabnames[]);
819 void begin_tab(int tabnum, int num_tabs);
820 void end_tab(int tabnum, int num_tabs);
821 void str_wiki_index(char *s);
822 long guess_calhourformat(void);
823 int get_time_format_cached (void);
824 int xtoi(const char *in, size_t len);
825 const char *get_selected_language(void);
826
827 #define DATEFMT_FULL 0
828 #define DATEFMT_BRIEF 1
829 #define DATEFMT_RAWDATE 2
830 #define DATEFMT_LOCALEDATE 3
831 void webcit_fmt_date(char *buf, size_t siz, time_t thetime, int Format);
832 int fetch_http(char *url, char *target_buf, int maxbytes);
833 void free_attachments(wcsession *sess);
834 void summary(void);
835
836 int is_mobile_ua(char *user_agent);
837
838 void embed_room_banner(char *, int);
839 HashList *GetFloorListHash(StrBuf *Target, WCTemplputParams *TP);
840 HashList *GetRoomListHash(StrBuf *Target, WCTemplputParams *TP);
841 int SortRoomsByListOrder(const void *room1, const void *room2);
842 /* navbar types that can be passed to embed_room_banner */
843 enum {
844         navbar_none,
845         navbar_default
846 };
847
848 /* actual supported locales */
849 void TmplGettext(StrBuf *Target, WCTemplputParams *TP);
850 void offer_languages(StrBuf *Target, int nArgs, WCTemplateToken *Token, void *Context, int ContextType);
851 void set_selected_language(const char *);
852 void go_selected_language(void);
853 void stop_selected_language(void);
854
855 #ifdef HAVE_OPENSSL
856 void init_ssl(void);
857 void endtls(void);
858 void ssl_lock(int mode, int n, const char *file, int line);
859 int starttls(int sock);
860 extern SSL_CTX *ssl_ctx;  
861 int client_read_sslbuffer(StrBuf *buf, int timeout);
862 void client_write_ssl(const StrBuf *Buf);
863 #endif
864
865 void utf8ify_rfc822_string(char *buf);
866
867 void begin_burst(void);
868 long end_burst(void);
869
870 extern char *hourname[];        /* Names of hours (12am, 1am, etc.) */
871
872 void http_datestring(char *buf, size_t n, time_t xtime);
873
874
875 /* These should be empty, but we have them for testing */
876 #define DEFAULT_HTTPAUTH_USER   ""
877 #define DEFAULT_HTTPAUTH_PASS   ""
878
879
880 /* Exit codes 101 through 109 are initialization failures so we don't want to
881  * just keep respawning indefinitely.
882  */
883 #define WC_EXIT_BIND            101     /* Can't bind to the port */
884 #define WC_EXIT_SSL             102     /* Can't initialize SSL */
885
886
887 #define WC_TIMEFORMAT_NONE 0
888 #define WC_TIMEFORMAT_AMPM 1
889 #define WC_TIMEFORMAT_24 2
890