]> code.citadel.org Git - citadel.git/blobdiff - webcit/serv_func.c
* Better alignment of system messages
[citadel.git] / webcit / serv_func.c
index be9e41323e8f132ff8e61afece156853c488c498..e99037e0828d56f4da2d2f6ced708e11ba379c86 100644 (file)
@@ -1,6 +1,10 @@
-/* $Id$ */
-
-
+/*
+ * serv_func.c
+ *
+ * Handles various types of data transfer operations with the Citadel service.
+ *
+ * $Id$
+ */
 
 #include <ctype.h>
 #include <stdlib.h>
 #include <pthread.h>
 #include <signal.h>
 #include "webcit.h"
-
-
-
-
-
-
+#include "webserver.h"
 
 struct serv_info serv_info;
 
 /*
- * get info about the server we've WC->connected to
+ * get info about the server we've connected to
  */
 void get_serv_info(char *browser_host, char *user_agent)
 {
        char buf[SIZ];
        int a;
 
+       /* Tell the server what kind of client is connecting */
        serv_printf("IDEN %d|%d|%d|%s|%s",
                DEVELOPER_ID,
                CLIENT_ID,
@@ -48,6 +48,11 @@ void get_serv_info(char *browser_host, char *user_agent)
        );
        serv_gets(buf);
 
+       /* Tell the server what kind of richtext we prefer */
+       serv_puts("MSGP text/html|text/plain");
+       serv_gets(buf);
+
+       /* Now ask the server to tell us a little bit about itself... */
        serv_puts("INFO");
        serv_gets(buf);
        if (buf[0] != '1')
@@ -95,14 +100,14 @@ void get_serv_info(char *browser_host, char *user_agent)
  * If fp is non-null, it is considered to be the file handle to read the
  * text from.  Otherwise, text is read from the server.
  */
-void fmout(FILE * fp)
+void fmout(FILE *fp, char *align)
 {
 
        int intext = 0;
        int bq = 0;
        char buf[SIZ];
 
-       wprintf("<DIV ALIGN=JUSTIFY>\n");
+       wprintf("<DIV ALIGN=%s>\n", align);
        while (1) {
                if (fp == NULL)
                        serv_gets(buf);
@@ -128,11 +133,11 @@ void fmout(FILE * fp)
                 */
                if ((bq == 0) &&
                    ((!strncmp(buf, " >", 2)) || (!strncmp(buf, " :-)", 4)))) {
-                       wprintf("<FONT COLOR=\"000044\"><I>");
+                       wprintf("<SPAN CLASS=\"pull_quote\">");
                        bq = 1;
                } else if ((bq == 1) &&
                  (strncmp(buf, " >", 2)) && (strncmp(buf, " :-)", 4))) {
-                       wprintf("</FONT></I>");
+                       wprintf("</SPAN>");
                        bq = 0;
                }
                /* Activate embedded URL's */
@@ -146,19 +151,23 @@ void fmout(FILE * fp)
 
 
 
-
-
 /*
- * transmit message text (in memory) to the server
+ * Transmit message text (in memory) to the server.
+ * If convert_to_html is set to 1, the message is converted into something
+ * which kind of resembles HTML.
  */
-void text_to_server(char *ptr)
+void text_to_server(char *ptr, int convert_to_html)
 {
        char buf[SIZ];
        int ch, a, pos;
 
-       pos = 0;
+       if (convert_to_html) {
+               serv_puts("<HTML><BODY>");
+       }
 
+       pos = 0;
        strcpy(buf, "");
+
        while (ptr[pos] != 0) {
                ch = ptr[pos++];
                if (ch == 10) {
@@ -167,7 +176,12 @@ void text_to_server(char *ptr)
                                buf[strlen(buf) - 1] = 0;
                        serv_puts(buf);
                        strcpy(buf, "");
-                       if (ptr[pos] != 0) strcat(buf, " ");
+                       if (convert_to_html) {
+                               strcat(buf, "<BR>");
+                       }
+                       else {
+                               if (ptr[pos] != 0) strcat(buf, " ");
+                       }
                } else {
                        a = strlen(buf);
                        buf[a + 1] = 0;
@@ -184,10 +198,12 @@ void text_to_server(char *ptr)
                }
        }
        serv_puts(buf);
-}
-
 
+       if (convert_to_html) {
+               serv_puts("</BODY></HTML>\n");
+       }
 
+}
 
 
 
@@ -209,3 +225,74 @@ void server_to_text()
                ++count;
        }
 }
+
+
+
+/*
+ * Read binary data from server into memory using a series of
+ * server READ commands.
+ */
+void read_server_binary(char *buffer, size_t total_len) {
+       char buf[SIZ];
+       size_t bytes = 0;
+       size_t thisblock = 0;
+
+       memset(buffer, 0, total_len);
+       while (bytes < total_len) {
+               thisblock = 4095;
+               if ((total_len - bytes) < thisblock) {
+                       thisblock = total_len - bytes;
+                       if (thisblock == 0) return;
+               }
+               serv_printf("READ %d|%d", (int)bytes, (int)thisblock);
+               serv_gets(buf);
+               if (buf[0] == '6') {
+                       thisblock = (size_t)atoi(&buf[4]);
+                       if (!WC->connected) return;
+                       serv_read(&buffer[bytes], thisblock);
+                       bytes += thisblock;
+               }
+               else {
+                       lprintf(3, "Error: %s\n", &buf[4]);
+                       return;
+               }
+       }
+}
+
+
+/*
+ * Read text from server, appending to a string buffer until the
+ * usual 000 terminator is found.  Caller is responsible for freeing
+ * the returned pointer.
+ */
+char *read_server_text(void) {
+       char *text = NULL;
+       size_t bytes_allocated = 0;
+       size_t bytes_read = 0;
+       int linelen;
+       char buf[SIZ];
+
+       text = malloc(SIZ);
+       if (text == NULL) {
+               return(NULL);
+       }
+       strcpy(text, "");
+       bytes_allocated = SIZ;
+
+       while (serv_gets(buf), strcmp(buf, "000")) {
+               linelen = strlen(buf);
+               buf[linelen] = '\n';
+               buf[linelen+1] = 0;
+               ++linelen;
+
+               if ((bytes_read + linelen) >= (bytes_allocated - 2)) {
+                       bytes_allocated = 2 * bytes_allocated;
+                       text = realloc(text, bytes_allocated);
+               }
+
+               strcpy(&text[bytes_read], buf);
+               bytes_read += linelen;
+       }
+
+       return(text);
+}