]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add live updating for tag pages
authorEvan Prodromou <evan@controlyourself.ca>
Sun, 26 Apr 2009 22:00:06 +0000 (18:00 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Sun, 26 Apr 2009 22:00:06 +0000 (18:00 -0400)
plugins/Comet/CometPlugin.php

index a7a4f4b23786d69afda6432cb1bc811bc26af272..cff0d4c9d63fc2e52f2511a09d2a2d8985cbc286 100644 (file)
@@ -62,6 +62,14 @@ class CometPlugin extends Plugin
          case 'public':
             $timeline = '/timelines/public';
             break;
+         case 'tag':
+            $tag = $action->trimmed('tag');
+            if (!empty($tag)) {
+                $timeline = '/timelines/tag/'.$tag;
+            } else {
+                return true;
+            }
+            break;
          default:
             return true;
         }
@@ -94,6 +102,14 @@ class CometPlugin extends Plugin
             $timelines[] = '/timelines/public';
         }
 
+        $tags = $this->getNoticeTags($notice);
+
+        if (!empty($tags)) {
+            foreach ($tags as $tag) {
+                $timelines[] = '/timelines/tag/' . $tag;
+            }
+        }
+
         if (count($timelines) > 0) {
             // Require this, since we need it
             require_once(INSTALLDIR.'/plugins/Comet/bayeux.class.inc.php');
@@ -134,6 +150,26 @@ class CometPlugin extends Plugin
         return $arr;
     }
 
+    function getNoticeTags($notice)
+    {
+        $tags = null;
+
+        $nt = new Notice_tag();
+        $nt->notice_id = $notice->id;
+
+        if ($nt->find()) {
+            $tags = array();
+            while ($nt->fetch()) {
+                $tags[] = $nt->tag;
+            }
+        }
+
+        $nt->free();
+        $nt = null;
+
+        return $tags;
+    }
+
     // Push this up to Plugin
 
     function log($level, $msg)