Remove $Id$ tags from most of webcit
[citadel.git] / webcit / serv_func.c
1
2 #include "webcit.h"
3 #include "webserver.h"
4
5 int is_uds = 0;
6 char serv_sock_name[PATH_MAX] = "";
7
8 HashList *EmbeddableMimes = NULL;
9 StrBuf *EmbeddableMimeStrs = NULL;
10
11
12 void SetInlinMimeRenderers(void)
13 {
14         StrBuf *Buf;
15
16         Buf = NewStrBuf();
17
18         /* Tell the server what kind of richtext we prefer */
19         serv_putbuf(EmbeddableMimeStrs);
20         StrBuf_ServGetln(Buf);
21
22         FreeStrBuf(&Buf);
23 }
24
25
26 void DeleteServInfo(ServInfo **FreeMe)
27 {
28         if (*FreeMe == NULL)
29                 return;
30         FreeStrBuf(&(*FreeMe)->serv_nodename);
31         FreeStrBuf(&(*FreeMe)->serv_humannode);
32         FreeStrBuf(&(*FreeMe)->serv_fqdn);
33         FreeStrBuf(&(*FreeMe)->serv_software);
34         FreeStrBuf(&(*FreeMe)->serv_bbs_city);
35         FreeStrBuf(&(*FreeMe)->serv_sysadm);
36         FreeStrBuf(&(*FreeMe)->serv_moreprompt);
37         FreeStrBuf(&(*FreeMe)->serv_default_cal_zone);
38         FreeStrBuf(&(*FreeMe)->serv_svn_revision);
39         free(*FreeMe);
40         *FreeMe = NULL;
41 }
42
43 /*
44  * get info about the server we've connected to
45  *
46  * browser_host         the citadel we want to connect to
47  * user_agent           which browser uses our client?
48  */
49 ServInfo *get_serv_info(StrBuf *browser_host, StrBuf *user_agent)
50 {
51         ServInfo *info;
52         StrBuf *Buf;
53         int a;
54
55         Buf = NewStrBuf();
56
57         /* Tell the server what kind of client is connecting */
58         serv_printf("IDEN %d|%d|%d|%s|%s",
59                     DEVELOPER_ID,
60                     CLIENT_ID,
61                     CLIENT_VERSION,
62                     ChrPtr(user_agent),
63                     ChrPtr(browser_host)
64         );
65         StrBuf_ServGetln(Buf);
66         if (GetServerStatus(Buf, NULL) != 2) {
67                 lprintf(0, "get_serv_info(IDEN): unexpected answer [%s]\n",
68                         ChrPtr(Buf));
69                 FreeStrBuf(&Buf);
70                 return NULL;
71         }
72
73         /*
74          * Tell the server that when we save a calendar event, we
75          * want invitations to be generated by the Citadel server
76          * instead of by the client.
77          */
78         serv_puts("ICAL sgi|1");
79         StrBuf_ServGetln(Buf);
80         if (GetServerStatus(Buf, NULL) != 2) {
81                 lprintf(0, "get_serv_info(ICAL sgi|1): unexpected answer [%s]\n",
82                         ChrPtr(Buf));
83                 FreeStrBuf(&Buf);
84                 return NULL;
85         }
86
87         /* Now ask the server to tell us a little bit about itself... */
88         serv_puts("INFO");
89         StrBuf_ServGetln(Buf);
90         if (GetServerStatus(Buf, NULL) != 1) {
91                 lprintf(0, "get_serv_info(INFO sgi|1): unexpected answer [%s]\n",
92                         ChrPtr(Buf));
93                 FreeStrBuf(&Buf);
94                 return NULL;
95         }
96
97         info = (ServInfo*)malloc(sizeof(ServInfo));
98         memset(info, 0, sizeof(ServInfo));
99         a = 0;
100         while (StrBuf_ServGetln(Buf), (strcmp(ChrPtr(Buf), "000")!= 0)) {
101                 switch (a) {
102                 case 0:
103                         info->serv_pid = StrToi(Buf);
104                         WC->ctdl_pid = info->serv_pid;
105                         break;
106                 case 1:
107                         info->serv_nodename = NewStrBufDup(Buf);
108                         break;
109                 case 2:
110                         info->serv_humannode = NewStrBufDup(Buf);
111                         break;
112                 case 3:
113                         info->serv_fqdn = NewStrBufDup(Buf);
114                         break;
115                 case 4:
116                         info->serv_software = NewStrBufDup(Buf);
117                         break;
118                 case 5:
119                         info->serv_rev_level = StrToi(Buf);
120                         break;
121                 case 6:
122                         info->serv_bbs_city = NewStrBufDup(Buf);
123                         break;
124                 case 7:
125                         info->serv_sysadm = NewStrBufDup(Buf);
126                         break;
127                 case 9:
128                         info->serv_moreprompt = NewStrBufDup(Buf);
129                         break;
130                 case 14:
131                         info->serv_supports_ldap = StrToi(Buf);
132                         break;
133                 case 15:
134                         info->serv_newuser_disabled = StrToi(Buf);
135                         break;
136                 case 16:
137                         info->serv_default_cal_zone = NewStrBufDup(Buf);
138                         break;
139                 case 20:
140                         info->serv_supports_sieve = StrToi(Buf);
141                         break;
142                 case 21:
143                         info->serv_fulltext_enabled = StrToi(Buf);
144                         break;
145                 case 22:
146                         info->serv_svn_revision = NewStrBufDup(Buf);
147                         break;
148                 case 23:
149                         info->serv_supports_openid = StrToi(Buf);
150                         break;
151                 }
152                 ++a;
153         }
154         FreeStrBuf(&Buf);
155         return info;
156 }
157
158 int GetConnected (void)
159 {
160         StrBuf *Buf;
161         wcsession *WCC = WC;
162
163         if (WCC->ReadBuf == NULL)
164                 WCC->ReadBuf = NewStrBufPlain(NULL, SIZ * 4);
165         if (is_uds) /* unix domain socket */
166                 WCC->serv_sock = uds_connectsock(serv_sock_name);
167         else        /* tcp socket */
168                 WCC->serv_sock = tcp_connectsock(ctdlhost, ctdlport);
169         
170         if (WCC->serv_sock < 0) {
171                 do_logout();
172                 FreeStrBuf(&WCC->ReadBuf);
173                 return 1;
174         }
175         else {
176                 long Status;
177                 int short_status;
178                 Buf = NewStrBuf();
179                 WCC->connected = 1;
180                 StrBuf_ServGetln(Buf);  /* get the server greeting */
181                 short_status = GetServerStatus(Buf, &Status);
182                 FreeStrBuf(&Buf);
183
184                 /* Server isn't ready for us? */
185                 if (short_status != 2) {
186                         if (Status == 571) {
187                                 wc_printf(_("This server is already serving its maximum number of users and cannot accept any additional logins at this time.  Please try again later or contact your system administrator."));
188                         }
189                         else {
190                                 wc_printf("%ld %s\n",
191                                         Status,
192                                         _("Received unexpected answer from Citadel server; bailing out.")
193                                 );
194                         }
195                         end_burst();
196                         end_webcit_session();
197                         return 1;
198                 }
199
200                 /* 2010jun03: every now and then the connection to Citadel dies before this point.  why? */
201
202                 /*
203                  * From what host is our user connecting?  Go with
204                  * the host at the other end of the HTTP socket,
205                  * unless we are following X-Forwarded-For: headers
206                  * and such a header has already turned up something.
207                  */
208                 if ( (!follow_xff) || (StrLength(WCC->Hdr->HR.browser_host) == 0) ) {
209                         if (WCC->Hdr->HR.browser_host == NULL) {
210                                 WCC->Hdr->HR.browser_host = NewStrBuf();
211                                 Put(WCC->Hdr->HTTPHeaders, HKEY("FreeMeWithTheOtherHeaders"), 
212                                     WCC->Hdr->HR.browser_host, HFreeStrBuf);
213                         }
214                         locate_host(WCC->Hdr->HR.browser_host, WCC->Hdr->http_sock);
215                 }
216                 if (WCC->serv_info == NULL) {
217                         WCC->serv_info = get_serv_info(WCC->Hdr->HR.browser_host, WCC->Hdr->HR.user_agent);
218                 }
219                 if (WCC->serv_info == NULL){
220                         begin_burst();
221                         wc_printf(_("Received unexpected answer from Citadel server; bailing out."));
222                         hprintf("HTTP/1.1 200 OK\r\n");
223                         hprintf("Content-type: text/plain; charset=utf-8\r\n");
224                         end_burst();
225                         end_webcit_session();
226                         return 1;
227                 }
228                 if (WCC->serv_info->serv_rev_level < MINIMUM_CIT_VERSION) {
229                         begin_burst();
230                         wc_printf(_("You are connected to a Citadel "
231                                   "server running Citadel %d.%02d. \n"
232                                   "In order to run this version of WebCit "
233                                   "you must also have Citadel %d.%02d or"
234                                   " newer.\n\n\n"),
235                                 WCC->serv_info->serv_rev_level / 100,
236                                 WCC->serv_info->serv_rev_level % 100,
237                                 MINIMUM_CIT_VERSION / 100,
238                                 MINIMUM_CIT_VERSION % 100
239                                 );
240                         hprintf("HTTP/1.1 200 OK\r\n");
241                         hprintf("Content-type: text/plain; charset=utf-8\r\n");
242                         end_burst();
243                         end_webcit_session();
244                         return 1;
245                 }
246                 SetInlinMimeRenderers();
247         }
248         return 0;
249 }
250
251 /*
252  *  Read Citadel variformat text and spit it out as HTML.
253  *  align html align string
254  */
255 inline void fmout(char *align)
256 {
257         _fmout(WC->WBuf, align);
258 }
259
260 void _fmout(StrBuf *Target, char *align)
261 {
262         int intext = 0;
263         int bq = 0;
264         char buf[SIZ];
265
266         StrBufAppendPrintf(Target, "<div align=%s>\n", align);
267         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
268
269                 if ((intext == 1) && (isspace(buf[0]))) {
270                         wc_printf("<br />");
271                 }
272                 intext = 1;
273
274                 /*
275                  * Quoted text should be displayed in italics and in a
276                  * different colour.  This code understands Citadel-style
277                  * " >" quotes and will convert to <BLOCKQUOTE> tags.
278                  */
279                 if ((bq == 0) && (!strncmp(buf, " >", 2))) {
280                         StrBufAppendBufPlain(Target, HKEY("<BLOCKQUOTE>"), 0);
281                         bq = 1;
282                 } else if ((bq == 1) && (strncmp(buf, " >", 2))) {
283                         StrBufAppendBufPlain(Target, HKEY("</BLOCKQUOTE>"), 0);
284                         bq = 0;
285                 }
286                 if ((bq == 1) && (!strncmp(buf, " >", 2))) {
287                         strcpy(buf, &buf[2]);
288                 }
289                 /* Activate embedded URL's */
290                 url(buf, sizeof(buf));
291
292                 escputs(buf);
293                 StrBufAppendBufPlain(Target, HKEY("\n"), 0);
294         }
295         if (bq == 1) {
296                 wc_printf("</I>");
297         }
298         wc_printf("</div><br />\n");
299 }
300
301 void FmOut(StrBuf *Target, char *align, StrBuf *Source)
302 {
303         const char *ptr, *pte;
304         const char *BufPtr = NULL;
305         StrBuf *Line = NewStrBufPlain(NULL, SIZ);
306         StrBuf *Line1 = NewStrBufPlain(NULL, SIZ);
307         StrBuf *Line2 = NewStrBufPlain(NULL, SIZ);
308         int bn = 0;
309         int bq = 0;
310         int i;
311         long len;
312         int intext = 0;
313
314         StrBufAppendPrintf(Target, "<div class=\"fmout-%s\">\n", align);
315
316         if (StrLength(Source) > 0) 
317                 do 
318                 {
319                         StrBufSipLine(Line, Source, &BufPtr);
320                         bq = 0;
321                         i = 0;
322                         ptr = ChrPtr(Line);
323                         len = StrLength(Line);
324                         pte = ptr + len;
325
326                         if ((intext == 1) && (isspace(*ptr))) {
327                                 StrBufAppendBufPlain(Target, HKEY("<br>"), 0);
328                         }
329                         intext = 1;
330                         if (isspace(*ptr)) while ((ptr < pte) &&
331                                                   ((*ptr == '>') ||
332                                                    isspace(*ptr)))
333                                            {
334                                                    if (*ptr == '>')
335                                                            bq++;
336                                                    ptr ++;
337                                                    i++;
338                                            }
339
340                         /*
341                          * Quoted text should be displayed in italics and in a
342                          * different colour.  This code understands Citadel-style
343                          * " >" quotes and will convert to <BLOCKQUOTE> tags.
344                          */
345                         if (i > 0) StrBufCutLeft(Line, i);
346                 
347
348                         for (i = bn; i < bq; i++)                               
349                                 StrBufAppendBufPlain(Target, HKEY("<blockquote>"), 0);
350                         for (i = bq; i < bn; i++)                               
351                                 StrBufAppendBufPlain(Target, HKEY("</blockquote>"), 0);
352                         bn = bq;
353
354                         if (StrLength(Line) == 0)
355                                 continue;
356
357                         /* Activate embedded URL's */
358                         UrlizeText(Line1, Line, Line2);
359
360                         StrEscAppend(Target, Line1, NULL, 0, 0);
361
362                         StrBufAppendBufPlain(Target, HKEY("\n"), 0);
363                 }
364                 while ((BufPtr != StrBufNOTNULL) &&
365                        (BufPtr != NULL));
366
367         for (i = 0; i < bn; i++) {
368                 StrBufAppendBufPlain(Target, HKEY("</blockquote>"), 0);
369         }
370         StrBufAppendBufPlain(Target, HKEY("</div><br>\n"), 0);
371         FreeStrBuf(&Line);
372         FreeStrBuf(&Line1);
373         FreeStrBuf(&Line2);
374 }
375
376
377 /*
378  * Read Citadel variformat text and spit it out as HTML in a form
379  * suitable for embedding in another message (forward/quote).
380  * (NO LINEBREAKS ALLOWED HERE!)
381  */
382 void pullquote_fmout(void) {
383         int intext = 0;
384         int bq = 0;
385         char buf[SIZ];
386
387         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
388
389                 if ((intext == 1) && (isspace(buf[0]))) {
390                         wc_printf("<br />");
391                 }
392                 intext = 1;
393
394                 /*
395                  * Quoted text should be displayed in italics and in a
396                  * different colour.  This code understands Citadel-style
397                  * " >" quotes and will convert to <BLOCKQUOTE> tags.
398                  */
399                 if ((bq == 0) && (!strncmp(buf, " >", 2))) {
400                         wc_printf("<BLOCKQUOTE>");
401                         bq = 1;
402                 } else if ((bq == 1) && (strncmp(buf, " >", 2))) {
403                         wc_printf("</BLOCKQUOTE>");
404                         bq = 0;
405                 }
406                 if ((bq == 1) && (!strncmp(buf, " >", 2))) {
407                         strcpy(buf, &buf[2]);
408                 }
409
410                 msgescputs(buf);
411         }
412         if (bq == 1) {
413                 wc_printf("</I>");
414         }
415 }
416
417
418
419
420 /*
421  *  Transmit message text (in memory) to the server.
422  */
423 void text_to_server(char *ptr)
424 {
425         char buf[256];
426         int ch, a, pos, len;
427
428         pos = 0;
429         buf[0] = 0;
430
431         while (ptr[pos] != 0) {
432                 ch = ptr[pos++];
433                 if (ch == 10) {
434                         len = strlen(buf);
435                         while ( (isspace(buf[len - 1]))
436                                 && (buf[0] !=  '\0') 
437                                 && (buf[1] !=  '\0') )
438                                 buf[--len] = 0;
439                         serv_puts(buf);
440                         buf[0] = 0;
441                         if (ptr[pos] != 0) strcat(buf, " ");
442                 } else {
443                         a = strlen(buf);
444                         buf[a + 1] = 0;
445                         buf[a] = ch;
446                         if ((ch == 32) && (strlen(buf) > 200)) {
447                                 buf[a] = 0;
448                                 serv_puts(buf);
449                                 buf[0] = 0;
450                         }
451                         if (strlen(buf) > 250) {
452                                 serv_puts(buf);
453                                 buf[0] = 0;
454                         }
455                 }
456         }
457         serv_puts(buf);
458 }
459
460
461 /*
462  * Transmit message text (in memory) to the server, converting to Quoted-Printable encoding as we go.
463  */
464 void text_to_server_qp(char *ptr)
465 {
466         unsigned char ch, buf[256];
467         int pos;
468         int output_len = 0;
469
470         pos = 0;
471         buf[0] = 0;
472         output_len = 0;
473
474         while (ptr[pos] != 0) {
475                 ch = (unsigned char)(ptr[pos++]);
476
477                 if (ch == 13) {
478                         /* ignore carriage returns */
479                 }
480                 else if (ch == 10) {
481                         /* hard line break */
482                         if (output_len > 0) {
483                                 if (isspace(buf[output_len-1])) {
484                                         sprintf((char *)&buf[output_len-1], "=%02X", buf[output_len-1]);
485                                         output_len += 2;
486                                 }
487                         }
488                         buf[output_len++] = 0;
489                         serv_puts((char *)buf);
490                         output_len = 0;
491                 }
492                 else if (ch == 9) {
493                         buf[output_len++] = ch;
494                 }
495                 else if ( (ch >= 32) && (ch <= 60) ) {
496                         buf[output_len++] = ch;
497                 }
498                 else if ( (ch >= 62) && (ch <= 126) ) {
499                         buf[output_len++] = ch;
500                 }
501                 else {
502                         sprintf((char *)&buf[output_len], "=%02X", ch);
503                         output_len += 3;
504                 }
505                 
506                 if (output_len > 72) {
507                         /* soft line break */
508                         if (isspace(buf[output_len-1])) {
509                                 sprintf((char *)&buf[output_len-1], "=%02X", buf[output_len-1]);
510                                 output_len += 2;
511                         }
512                         buf[output_len++] = '=';
513                         buf[output_len++] = 0;
514                         serv_puts((char *)buf);
515                         output_len = 0;
516                 }
517         }
518
519         /* end of data - transmit anything that's left */
520         if (output_len > 0) {
521                 if (isspace(buf[output_len-1])) {
522                         sprintf((char *)&buf[output_len-1], "=%02X", buf[output_len-1]);
523                         output_len += 2;
524                 }
525                 buf[output_len++] = 0;
526                 serv_puts((char *)buf);
527                 output_len = 0;
528         }
529 }
530
531
532
533
534 /*
535  * translate server message output to text (used for editing room info files and such)
536  */
537 void server_to_text()
538 {
539         char buf[SIZ];
540
541         int count = 0;
542
543         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
544                 if ((buf[0] == 32) && (count > 0)) {
545                         wc_printf("\n");
546                 }
547                 wc_printf("%s", buf);
548                 ++count;
549         }
550 }
551
552
553
554
555 /*
556  * Read text from server, appending to a string buffer until the
557  * usual 000 terminator is found.  Caller is responsible for freeing
558  * the returned pointer.
559  */
560 int read_server_text(StrBuf *Buf, long *nLines)
561 {
562         wcsession *WCC = WC;
563         long nRead;
564         long nTotal = 0;
565         long nlines;
566         
567         nlines = 0;
568         while ((WCC->serv_sock!=-1) &&
569                (nRead = StrBuf_ServGetln(Buf), (nRead >= 0) ))
570         {
571                 if (strcmp(ChrPtr(Buf) + nTotal, "000") != 0) {
572                         StrBufCutRight(Buf, nRead);
573                         break;
574                 }
575                 nTotal += nRead;
576                 nlines ++;
577         }
578
579         *nLines = nlines;
580         return nTotal;
581 }
582
583
584 int GetServerStatus(StrBuf *Line, long* FullState)
585 {
586         if (FullState != NULL)
587                 *FullState = StrTol(Line);
588         return ChrPtr(Line)[0] - 48;
589 }
590
591
592 void tmplput_serv_ip(StrBuf *Target, WCTemplputParams *TP)
593 {
594         StrBufAppendPrintf(Target, "%d", WC->ctdl_pid);
595 }
596
597 void tmplput_serv_nodename(StrBuf *Target, WCTemplputParams *TP)
598 {
599         wcsession *WCC = WC;
600         if (WCC->serv_info == NULL)
601                 return;
602         StrBufAppendTemplate(Target, TP, WCC->serv_info->serv_nodename, 0);
603 }
604
605 void tmplput_serv_humannode(StrBuf *Target, WCTemplputParams *TP)
606 {
607         wcsession *WCC = WC;
608         if (WCC->serv_info == NULL)
609                 return;
610         StrBufAppendTemplate(Target, TP, WCC->serv_info->serv_humannode, 0);
611 }
612
613 void tmplput_serv_fqdn(StrBuf *Target, WCTemplputParams *TP)
614 {
615         wcsession *WCC = WC;
616         if (WCC->serv_info == NULL)
617                 return;
618         StrBufAppendTemplate(Target, TP, WCC->serv_info->serv_fqdn, 0);
619 }
620
621 void tmplput_serv_software(StrBuf *Target, WCTemplputParams *TP)
622 {
623         wcsession *WCC = WC;
624         if (WCC->serv_info == NULL)
625                 return;
626         StrBufAppendTemplate(Target, TP, WCC->serv_info->serv_software, 0);
627 }
628
629 void tmplput_serv_rev_level(StrBuf *Target, WCTemplputParams *TP)
630 {
631         wcsession *WCC = WC;
632         if (WCC->serv_info == NULL)
633                 return;
634         StrBufAppendPrintf(Target, "%d.%02d",
635                             WCC->serv_info->serv_rev_level / 100,
636                             WCC->serv_info->serv_rev_level % 100);
637 }
638 int conditional_serv_newuser_disabled(StrBuf *Target, WCTemplputParams *TP)
639 {
640         wcsession *WCC = WC;
641         if (WCC->serv_info == NULL)
642                 return 0;
643         return WCC->serv_info->serv_newuser_disabled != 0;
644 }
645
646 int conditional_serv_supports_openid(StrBuf *Target, WCTemplputParams *TP)
647 {
648         wcsession *WCC = WC;
649         if (WCC->serv_info == NULL)
650                 return 0;
651         return WCC->serv_info->serv_supports_openid != 0;
652 }
653
654 int conditional_serv_fulltext_enabled(StrBuf *Target, WCTemplputParams *TP)
655 {
656         wcsession *WCC = WC;
657         if (WCC->serv_info == NULL)
658                 return 0;
659         return WCC->serv_info->serv_fulltext_enabled != 0;
660 }
661
662 int conditional_serv_ldap_enabled(StrBuf *Target, WCTemplputParams *TP)
663 {
664         wcsession *WCC = WC;
665         if (WCC->serv_info == NULL)
666                 return 0;
667         return WCC->serv_info->serv_supports_ldap != 0;
668 }
669
670 void tmplput_serv_bbs_city(StrBuf *Target, WCTemplputParams *TP)
671 {
672         wcsession *WCC = WC;
673         if (WCC->serv_info == NULL)
674                 return;
675         StrBufAppendTemplate(Target, TP, WC->serv_info->serv_bbs_city, 0);
676 }
677
678 void tmplput_mesg(StrBuf *Target, WCTemplputParams *TP)
679 {
680         int n = 0;
681         int Done = 0;
682         StrBuf *Line;
683         StrBuf *Buf;
684
685         Buf = NewStrBuf();
686         Line = NewStrBuf();
687         serv_printf("MESG %s", TP->Tokens->Params[0]->Start);
688
689         StrBuf_ServGetln(Line);
690         if (GetServerStatus(Line, NULL) == 1) {
691                 while (!Done &&  (StrBuf_ServGetln(Line)>=0)) {
692                         if ( (StrLength(Line)==3) && 
693                              !strcmp(ChrPtr(Line), "000")) 
694                                 Done = 1;
695                         else
696                         {
697                                 if (n > 0)
698                                         StrBufAppendBufPlain(Buf, "\n", 1, 0);
699                                 StrBufAppendBuf(Buf, Line, 0);
700                         }
701                         n++;
702                 }
703         
704                 FlushStrBuf(Line);
705                 FmOut(Line, "center", Buf);
706                 StrBufAppendTemplate(Target, TP, Line, 1);
707         }
708         FreeStrBuf(&Buf);
709         FreeStrBuf(&Line);
710 }
711
712
713 void RegisterEmbeddableMimeType(const char *MimeType, long MTLen, int Priority)
714 {
715         StrBuf *MT;
716         MT = NewStrBufPlain(MimeType, MTLen);
717         Put(EmbeddableMimes, IKEY(Priority), MT, HFreeStrBuf);
718 }
719
720 void CreateMimeStr(void)
721 {
722         HashPos  *it;
723         void *vMime;
724         long len = 0;
725         const char *Key;
726
727         it = GetNewHashPos(EmbeddableMimes, 0);
728         while (GetNextHashPos(EmbeddableMimes, it, &len, &Key, &vMime) &&
729                (vMime != NULL)) {
730                 if (StrLength(EmbeddableMimeStrs) > 0)
731                         StrBufAppendBufPlain(EmbeddableMimeStrs, HKEY("|"), 0);
732                 else 
733                         StrBufAppendBufPlain(EmbeddableMimeStrs, HKEY("MSGP "), 0);
734                 StrBufAppendBuf(EmbeddableMimeStrs, (StrBuf*) vMime, 0);
735         }
736         DeleteHashPos(&it);
737 }
738
739 void
740 ServerStartModule_SERV_FUNC
741 (void)
742 {
743         EmbeddableMimes = NewHash(1, Flathash);
744         EmbeddableMimeStrs = NewStrBuf();
745 }
746
747
748 void
749 ServerShutdownModule_SERV_FUNC
750 (void)
751 {
752         FreeStrBuf(&EmbeddableMimeStrs);
753         DeleteHash(&EmbeddableMimes);
754 }
755
756 void 
757 InitModule_SERVFUNC
758 (void)
759 {
760         is_uds = strcasecmp(ctdlhost, "uds") == 0;
761         if (is_uds)
762                 snprintf(serv_sock_name, PATH_MAX, "%s/citadel.socket", ctdlport);
763
764         RegisterConditional(HKEY("COND:SERV:OPENID"), 2, conditional_serv_supports_openid, CTX_NONE);
765         RegisterConditional(HKEY("COND:SERV:NEWU"), 2, conditional_serv_newuser_disabled, CTX_NONE);
766         RegisterConditional(HKEY("COND:SERV:FULLTEXT_ENABLED"), 2, conditional_serv_fulltext_enabled, CTX_NONE);
767         RegisterConditional(HKEY("COND:SERV:LDAP_ENABLED"), 2, conditional_serv_ldap_enabled, CTX_NONE);
768         RegisterNamespace("SERV:PID", 0, 0, tmplput_serv_ip, NULL, CTX_NONE);
769         RegisterNamespace("SERV:NODENAME", 0, 1, tmplput_serv_nodename, NULL, CTX_NONE);
770         RegisterNamespace("SERV:HUMANNODE", 0, 1, tmplput_serv_humannode, NULL, CTX_NONE);
771         RegisterNamespace("SERV:FQDN", 0, 1, tmplput_serv_fqdn, NULL, CTX_NONE);
772         RegisterNamespace("SERV:SOFTWARE", 0, 1, tmplput_serv_software, NULL, CTX_NONE);
773         RegisterNamespace("SERV:REV_LEVEL", 0, 0, tmplput_serv_rev_level, NULL, CTX_NONE);
774         RegisterNamespace("SERV:BBS_CITY", 0, 1, tmplput_serv_bbs_city, NULL, CTX_NONE);
775         RegisterNamespace("SERV:MESG", 1, 2, tmplput_mesg, NULL, CTX_NONE);
776 }
777
778
779
780 void 
781 SessionDestroyModule_SERVFUNC
782 (wcsession *sess)
783 {
784         DeleteServInfo(&sess->serv_info);
785 }