]> code.citadel.org Git - citadel.git/blobdiff - webcit/sitemap.c
sitemap now uses GetRoomListHash() which is what I should have used in the first...
[citadel.git] / webcit / sitemap.c
index fe6c68908db8fa3967fd2d60867dd06dae51cb18..4d154632df09fd4cd1478e654b90f8511a813fae 100644 (file)
@@ -52,6 +52,39 @@ void sitemap_do_bbs(void) {
 }
 
 
+/*
+ * XML sitemap generator -- go through the message list for a Blog room
+ */
+void sitemap_do_blog(void) {
+       wcsession *WCC = WC;
+       int num_msgs = 0;
+       int i;
+       SharedMessageStatus Stat;
+       message_summary *Msg = NULL;
+
+       memset(&Stat, 0, sizeof Stat);
+       Stat.maxload = INT_MAX;
+       Stat.lowest_found = (-1);
+       Stat.highest_found = (-1);
+       num_msgs = load_msg_ptrs("MSGS ALL", &Stat, NULL);
+       if (num_msgs < 1) return;
+
+       for (i=0; i<num_msgs; ++i) {
+               Msg = GetMessagePtrAt(i, WCC->summ);
+               if (Msg != NULL) {
+                       struct bltr bltr = blogview_learn_thread_references(Msg->msgnum);
+                       /* Show only top level posts, not comments */
+                       if ((bltr.id != 0) && (bltr.refs == 0)) {
+                               WC->bptlid = bltr.id;
+                               wc_printf("<url><loc>%s", ChrPtr(site_prefix));
+                               tmplput_blog_permalink(NULL, NULL);
+                               wc_printf("</loc></url>\r\n");
+                       }
+               }
+       }
+}
+
+
 /*
  * XML sitemap generator -- go through the message list for a wiki room
  */
@@ -96,11 +129,11 @@ void sitemap_do_wiki(void) {
  * Entry point for RSS feed generator
  */
 void sitemap(void) {
-       HashList *roomlist;
-       HashPos *it;
-       long HKlen;
-       const char *HashKey;
-       folder *room;
+       HashList *roomlist = NULL;
+       HashPos *it = NULL;
+       long HKlen = 0;
+       const char *HashKey = NULL;
+       folder *room = NULL;
 
        output_headers(0, 0, 0, 0, 1, 0);
        hprintf("Content-type: text/xml\r\n");
@@ -115,8 +148,10 @@ void sitemap(void) {
        wc_printf("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n");
        wc_printf("<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\r\n");
 
-       roomlist = GetRoomListHashLKRA(NULL, NULL);
+       roomlist = GetRoomListHash(NULL, NULL);
+       if (!roomlist) syslog(LOG_CRIT, "GetRoomListHash() FAILED!");
        it = GetNewHashPos(roomlist, 0);
+       if (!it) syslog(LOG_CRIT, "GetNewHashPos() FAILED!");
 
        while (GetNextHashPos(roomlist, it, &HKlen, &HashKey, (void *)&room))
        {
@@ -130,14 +165,16 @@ void sitemap(void) {
                        case VIEW_WIKI:
                                sitemap_do_wiki();
                                break;
+                       case VIEW_BLOG:
+                               sitemap_do_blog();
+                               break;
                        default:
                                break;
                }
        }
 
        DeleteHashPos(&it);
-       /* No need to DeleteHash(&roomlist) -- it will be freed when the session closes */
-
+       DeleteHash(&roomlist);
        wc_printf("</urlset>\r\n");
        wDumpContent(0);
 }