summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-04-26 18:00:06 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-04-26 18:00:06 -0400
commite438334c00ebe29c01bfc5b02aa64cffdb43cb46 (patch)
tree7368a948675c3c32e648f66df45b80a0c2125f2a /plugins
parent781341d91fd4c7406d8687e7828ab86f9696cf66 (diff)
add live updating for tag pages
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Comet/CometPlugin.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/plugins/Comet/CometPlugin.php b/plugins/Comet/CometPlugin.php
index a7a4f4b23..cff0d4c9d 100644
--- a/plugins/Comet/CometPlugin.php
+++ b/plugins/Comet/CometPlugin.php
@@ -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)