]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/tagrss.php
Merge branch 'locshunt' into 0.9.x
[quix0rs-gnu-social.git] / actions / tagrss.php
index 9187bdc873e1f53a21e111192839c3de6d7aee43..75cbfa274b58bc0ed54c24ce26976ad6cbf7ba4f 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
- * Laconica - a distributed open-source microblogging tool
- * Copyright (C) 2008, Controlez-Vous, Inc.
+ * StatusNet - the distributed open-source microblogging tool
+ * Copyright (C) 2008, 2009, StatusNet, Inc.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as published by
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-if (!defined('LACONICA')) { exit(1); }
+if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
 
 require_once(INSTALLDIR.'/lib/rssaction.php');
 
 // Formatting of RSS handled by Rss10Action
 
-class TagrssAction extends Rss10Action {
+class TagrssAction extends Rss10Action
+{
+    var $tag;
 
-       function init() {
-               $tag = $this->trimmed('tag');
-               $this->tag = Notice_tag::staticGet('tag', $tag);
+    function prepare($args) {
+        parent::prepare($args);
+        $tag = common_canonical_tag($this->trimmed('tag'));
+        $this->tag = Notice_tag::staticGet('tag', $tag);
+        if (!$this->tag) {
+            $this->clientError(_('No such tag.'));
+            return false;
+        } else {
+            return true;
+        }
+    }
 
-               if (!$this->tag) {
-                       common_user_error(_('No such tag.'));
-                       return false;
-               } else {
-                       return true;
-               }
-       }
+    function getNotices($limit=0)
+    {
+        $tag = $this->tag;
 
-       function get_notices($limit=0) {
-               $tag = $this->tag;
+        if (is_null($tag)) {
+            return null;
+        }
 
-               if (is_null($tag)) {
-                       return NULL;
-               }
+        $notice = Notice_tag::getStream($tag->tag, 0, ($limit == 0) ? NOTICES_PER_PAGE : $limit);
+        while ($notice->fetch()) {
+            $notices[] = clone($notice);
+        }
 
-               $notice = Notice_tag::getStream($tag->tag, 0, ($limit == 0) ? NOTICES_PER_PAGE : $limit);
+        return $notices;
+    }
 
-               while ($notice->fetch()) {
-                       $notices[] = clone($notice);
-               }
+    function getChannel()
+    {
+        $tagname = $this->tag->tag;
+        $c = array('url' => common_local_url('tagrss', array('tag' => $tagname)),
+               'title' => $tagname,
+               'link' => common_local_url('tagrss', array('tag' => $tagname)),
+               'description' => sprintf(_('Updates tagged with %1$s on %2$s!'),
+                                        $tagname, common_config('site', 'name')));
+        return $c;
+    }
 
-               return $notices;
-       }
-
-       function get_channel() {
-               $tag = $this->tag->tag;
-
-               $c = array('url' => common_local_url('tagrss', array('tag' => $tagname)),
-                          'title' => $tagname,
-                          'link' => common_local_url('tagrss', array('tag' => $tagname)),
-                          'description' => sprintf(_('Microblog tagged with %s'), $tagname));
-               return $c;
-       }
+    function isReadOnly($args)
+    {
+        return true;
+    }
 }