]> code.citadel.org Git - citadel.git/blobdiff - webcit/blogview_renderer.c
Move some of the new code into a separate function
[citadel.git] / webcit / blogview_renderer.c
index dc376b6655192f06c963588d513fe446716807d3..bba136c1eb62027b79d1e50fd17713702003f8b1 100644 (file)
  * Data which gets passed around between the various functions in this module
  *
  */
+
+struct blogpost {
+       long msgnum;
+       StrBuf *id;
+       StrBuf *refs;
+};
+
 struct blogview {
-       long *msgs;             /* Array of msgnums for messages we are displaying */
+       struct blogpost *msgs;  /* Array of msgnums for messages we are displaying */
        int num_msgs;           /* Number of msgnums stored in 'msgs' */
        int alloc_msgs;         /* Currently allocated size of array */
 };
@@ -71,8 +78,8 @@ int blogview_LoadMsgFromServer(SharedMessageStatus *Stat,
 
        if (BLOG->alloc_msgs == 0) {
                BLOG->alloc_msgs = 1000;
-               BLOG->msgs = malloc(BLOG->alloc_msgs * sizeof(long));
-               memset(BLOG->msgs, 0, (BLOG->alloc_msgs * sizeof(long)) );
+               BLOG->msgs = malloc(BLOG->alloc_msgs * sizeof(struct blogpost));
+               memset(BLOG->msgs, 0, (BLOG->alloc_msgs * sizeof(struct blogpost)) );
        }
 
        /* Check our buffer size */
@@ -82,7 +89,9 @@ int blogview_LoadMsgFromServer(SharedMessageStatus *Stat,
                memset(&BLOG->msgs[BLOG->num_msgs], 0, ((BLOG->alloc_msgs - BLOG->num_msgs) * sizeof(long)) );
        }
 
-       BLOG->msgs[BLOG->num_msgs++] = Msg->msgnum;
+       BLOG->msgs[BLOG->num_msgs++].msgnum = Msg->msgnum;
+       BLOG->msgs[BLOG->num_msgs].id = NULL;
+       BLOG->msgs[BLOG->num_msgs].refs = NULL;
 
        return 200;
 }
@@ -92,45 +101,63 @@ int blogview_LoadMsgFromServer(SharedMessageStatus *Stat,
  * People expect blogs to be sorted newest-to-oldest
  */
 int blogview_sortfunc(const void *s1, const void *s2) {
-       long l1;
-       long l2;
+       struct blogpost *l1 = (struct blogpost *)(s1);
+       struct blogpost *l2 = (struct blogpost *)(s2);
 
-       l1 = *(long *)(s1);
-       l2 = *(long *)(s2);
-
-       if (l1 > l2) return(-1);
-       if (l1 < l2) return(+1);
+       if (l1->msgnum > l2->msgnum) return(-1);
+       if (l1->msgnum < l2->msgnum) return(+1);
        return(0);
 }
 
 
-int blogview_render(SharedMessageStatus *Stat, 
-                              void **ViewSpecific, 
-                              long oper)
+
+/*
+ * Given a 'struct blogpost' containing a msgnum, populate the id
+ * and refs fields by fetching them from the Citadel server
+ */
+void blogview_learn_thread_references(struct blogpost *bp)
+{
+       StrBuf *Buf;
+       Buf = NewStrBuf();
+       serv_printf("MSG0 %ld|1", bp->msgnum);          /* top level citadel headers only */
+       StrBuf_ServGetln(Buf);
+       if (GetServerStatus(Buf, NULL) == 1) {
+               while (StrBuf_ServGetln(Buf), strcmp(ChrPtr(Buf), "000")) {
+                       if (!strncasecmp(ChrPtr(Buf), "msgn=", 5)) {
+                               bp->id = NewStrBufDup(Buf);
+                               StrBufCutLeft(bp->id, 5);
+                       }
+                       else if (!strncasecmp(ChrPtr(Buf), "wefw=", 5)) {
+                               bp->refs = NewStrBufDup(Buf);
+                               StrBufCutLeft(bp->refs, 5);
+                       }
+               }
+       }
+       FreeStrBuf(&Buf);
+}
+
+
+
+
+int blogview_render(SharedMessageStatus *Stat, void **ViewSpecific, long oper)
 {
        struct blogview *BLOG = (struct blogview *) *ViewSpecific;
        int i;
 
        if (Stat->nummsgs > 0) {
                lprintf(9, "sorting %d messages\n", BLOG->num_msgs);
-               qsort(BLOG->msgs, (size_t)(BLOG->num_msgs), sizeof(long), blogview_sortfunc);
+               qsort(BLOG->msgs, (size_t)(BLOG->num_msgs), sizeof(struct blogpost), blogview_sortfunc);
        }
 
        for (i=0; (i<BLOG->num_msgs); ++i) {
-               if (BLOG->msgs[i] > 0L) {
-                       wc_printf("<p>Message %d %ld</p>\n", i, BLOG->msgs[i]);
-
-                       /* maybe put some of this into its own function later */
-                       StrBuf *Buf;
-                       Buf = NewStrBuf();
-                       serv_printf("MSG0 %ld|1", BLOG->msgs[i]);       /* top level citadel headers only */
-                       StrBuf_ServGetln(Buf);
-                       if (GetServerStatus(Buf, NULL) == 1) {
-                               while (StrBuf_ServGetln(Buf), strcmp(ChrPtr(Buf), "000")) {
-                                       wc_printf("%s<br>\n", ChrPtr(Buf));
-                               }
-                       }
-                       FreeStrBuf(&Buf);
+               if (BLOG->msgs[i].msgnum > 0L) {
+                       blogview_learn_thread_references(&BLOG->msgs[i]);
+                       wc_printf("Message %d, #%ld, id '%s', refs '%s'<br>\n",
+                               i,
+                               BLOG->msgs[i].msgnum,
+                               ChrPtr(BLOG->msgs[i].id),
+                               ChrPtr(BLOG->msgs[i].refs)
+                       );
                }
        }
 
@@ -141,8 +168,13 @@ int blogview_render(SharedMessageStatus *Stat,
 int blogview_Cleanup(void **ViewSpecific)
 {
        struct blogview *BLOG = (struct blogview *) *ViewSpecific;
+       int i;
 
        if (BLOG->alloc_msgs != 0) {
+               for (i=0; i<BLOG->num_msgs; ++i) {
+                       FreeStrBuf(&BLOG->msgs[i].id);
+                       FreeStrBuf(&BLOG->msgs[i].refs);
+               }
                free(BLOG->msgs);
        }
        free(BLOG);