]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/userrss.php
make tagother work with router
[quix0rs-gnu-social.git] / actions / userrss.php
index 6089718aebd0e66d4e8fb8fb34a2e6f6a20928d1..04855cccaded30a05ac67a0789647aae8b7e882f 100644 (file)
@@ -23,23 +23,27 @@ require_once(INSTALLDIR.'/lib/rssaction.php');
 
 // Formatting of RSS handled by Rss10Action
 
-class UserrssAction extends Rss10Action {
+class UserrssAction extends Rss10Action
+{
 
     var $user = null;
 
-    function init() {
+    function prepare($args)
+    {
+        parent::prepare($args);
         $nickname = $this->trimmed('nickname');
         $this->user = User::staticGet('nickname', $nickname);
 
         if (!$this->user) {
-            common_user_error(_('No such user.'));
+            $this->clientError(_('No such user.'));
             return false;
         } else {
             return true;
         }
     }
 
-    function get_notices($limit=0) {
+    function getNotices($limit=0)
+    {
 
         $user = $this->user;
         
@@ -56,7 +60,8 @@ class UserrssAction extends Rss10Action {
         return $notices;
     }
 
-    function get_channel() {
+    function getChannel()
+    {
         $user = $this->user;
         $profile = $user->getProfile();
         $c = array('url' => common_local_url('userrss',
@@ -68,12 +73,13 @@ class UserrssAction extends Rss10Action {
         return $c;
     }
 
-    function get_image() {
+    function getImage()
+    {
         $user = $this->user;
         $profile = $user->getProfile();
         if (!$profile) {
             common_log_db_error($user, 'SELECT', __FILE__);
-            $this->server_error(_('User without matching profile'));
+            $this->serverError(_('User without matching profile'));
             return null;
         }
         $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
@@ -82,9 +88,16 @@ class UserrssAction extends Rss10Action {
 
     # override parent to add X-SUP-ID URL
     
-    function init_rss($limit=0) {
+    function initRss($limit=0)
+    {
         $url = common_local_url('sup', null, $this->user->id);
         header('X-SUP-ID: '.$url);
-        parent::init_rss($limit);
+        parent::initRss($limit);
     }
-}
\ No newline at end of file
+
+    function isReadOnly()
+    {
+        return true;
+    }
+}
+