Changed 'free software' to 'open source' to piss off Richard Stallman
[citadel.git] / webcit / blogview_renderer.c
index 30ede0c14a1c3eb998d9e3f0f489b31af211f083..5da977ba3cf7152d9fe73b63e4e491bbd7fd79d2 100644 (file)
@@ -3,10 +3,10 @@
  *
  * Copyright (c) 1996-2010 by the citadel.org team
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
+ * This program is open source software.  You can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 3 of the
+ * License, or (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -15,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  */
 
 #include "webcit.h"
@@ -27,6 +27,7 @@
  * Array type for a blog post.  The first message is the post; the rest are comments
  */
 struct blogpost {
+       int top_level_id;
        long *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 */
@@ -37,15 +38,38 @@ struct blogpost {
  * Destructor for 'struct blogpost' which does the rendering first.
  * By rendering from here, we eliminate the need for a separate iterator, although
  * we might run into trouble when we get around to displaying newest-to-oldest...
- * FIXME do the needful with regard to gettext
  */
 void blogpost_render_and_destroy(struct blogpost *bp) {
        const StrBuf *Mime;
-
-       if (bp->num_msgs > 0) {
-               read_message(WC->WBuf, HKEY("view_message"), bp->msgs[0], NULL, &Mime);
-               wc_printf("<div align=\"right\"><i>%d comments</i></div>\n", bp->num_msgs - 1);
-               wc_printf("<br>\n");
+       int p = 0;
+       int i;
+
+       p = atoi(BSTR("p"));    /* are we looking for a specific post? */
+       WC->bptlid = bp->top_level_id;
+
+       if ( ((p == 0) || (p == bp->top_level_id)) && (bp->num_msgs > 0) ) {
+               /* Show the top level post */
+               read_message(WC->WBuf, HKEY("view_blog_post"), bp->msgs[0], NULL, &Mime);
+
+               if (p == 0) {
+                       /* Show the number of comments */
+                       wc_printf("<a href=\"readfwd?p=%d?gotofirst=", bp->top_level_id);
+                       urlescputs(ChrPtr(WC->CurRoom.name));
+                       wc_printf("#comments\">");
+                       wc_printf(_("%d comments"), bp->num_msgs - 1);
+                       wc_printf("</a>");
+               }
+               else if (bp->num_msgs < 2) {
+                       wc_printf(_("%d comments"), 0);
+               }
+               else {
+                       wc_printf("<a name=\"comments\"></a>\n");
+                       wc_printf(_("%d comments"), bp->num_msgs - 1);
+                       wc_printf("<br>\n");
+                       for (i=1; i<bp->num_msgs; ++i) {
+                               read_message(WC->WBuf, HKEY("view_blog_comment"), bp->msgs[i], NULL, &Mime);
+                       }
+               }
        }
 
 
@@ -146,6 +170,7 @@ int blogview_LoadMsgFromServer(SharedMessageStatus *Stat,
                bp = malloc(sizeof(struct blogpost));
                if (!bp) return(200);
                memset(bp, 0, sizeof (struct blogpost));
+               bp->top_level_id = b.id;
                Put(BLOG, (const char *)&b.id, sizeof(b.id), bp,
                                        (DeleteHashDataFunc)blogpost_render_and_destroy);
        }
@@ -195,11 +220,8 @@ int blogview_render(SharedMessageStatus *Stat, void **ViewSpecific, long oper)
        /*HashList *BLOG = (HashList *) *ViewSpecific;*/
 
        /*
-        * This will require several different modes:
-        * * Top level
-        * * Single story permalink
-        * * Comments
-        * * etc
+        * No code needed here -- we render during disposition.
+        * Maybe this is the location where we want to handle pretty permalinks.
         */
 
        return(0);
@@ -216,6 +238,21 @@ int blogview_Cleanup(void **ViewSpecific)
        return 0;
 }
 
+/*
+ * Generate a permalink for a post
+ */
+void tmplput_blog_permalink(StrBuf *Target, WCTemplputParams *TP) {
+       char perma[SIZ];
+       char encoded_perma[SIZ];
+       
+       strcpy(perma, "/readfwd?gotofirst=");
+       urlesc(&perma[strlen(perma)], sizeof(perma)-strlen(perma), ChrPtr(WC->CurRoom.name));
+       snprintf(&perma[strlen(perma)], sizeof(perma)-strlen(perma), "?p=%d", WC->bptlid);
+
+       CtdlEncodeBase64(encoded_perma, perma, strlen(perma), 0);
+       StrBufAppendPrintf(Target, "/B64%s", encoded_perma);
+}
+
 
 void 
 InitModule_BLOGVIEWRENDERERS
@@ -230,4 +267,5 @@ InitModule_BLOGVIEWRENDERERS
                blogview_render,
                blogview_Cleanup
        );
+       RegisterNamespace("BLOG:PERMALINK", 0, 0, tmplput_blog_permalink, NULL, CTX_NONE);
 }