]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/replies.php
explode WHAT, again?
[quix0rs-gnu-social.git] / actions / replies.php
index 14f19cd765c72138a8d830449865680bdfa4b785..ecf737eb1280e5fefe0bcc87ed800e33c6a0fea6 100644 (file)
@@ -38,42 +38,50 @@ class RepliesAction extends StreamAction {
                $profile = $user->getProfile();
 
                if (!$profile) {
-                       common_server_error(_t('User record exists without profile.'));
+                       common_server_error(_('User has no profile.'));
                        return;
                }
 
                # Looks like we're good; show the header
 
-               common_show_header($profile->nickname . _t(" and friends"),
+               common_show_header(sprintf(_("Replies to %s"), $profile->nickname),
                                                   array($this, 'show_header'), $user,
                                                   array($this, 'show_top'));
-               
+
                $this->show_replies($profile);
-               
+
                common_show_footer();
        }
-       
+
+       function no_such_user() {
+               common_user_error(_('No such user.'));
+       }
+
        function show_header($user) {
                common_element('link', array('rel' => 'alternate',
-                                                                        'href' => common_local_url('allrss', array('nickname' =>
-                                                                                                                                                          $user->nickname)),
+                                                                        'href' => common_local_url('repliesrss', array('nickname' =>
+                                                                                                                                                                       $user->nickname)),
                                                                         'type' => 'application/rss+xml',
-                                                                        'title' => _t('Feed for friends of ') . $user->nickname));
+                                                                        'title' => sprintf(_('Feed for replies to %s'), $user->nickname)));
        }
 
        function show_top($user) {
                $cur = common_current_user();
-               
+
+               if ($cur && $cur->id == $user->id) {
+                       common_notice_form('replies');
+               }
+
                $this->views_menu();
        }
-       
+
        function show_replies($profile) {
 
-               $reply = DB_DataObject::factory('reply');
+               $reply = new Reply();
 
-                $reply->user_id = $profile->id;
+               $reply->profile_id = $profile->id;
 
-               $reply->orderBy('created DESC');
+               $reply->orderBy('modified DESC');
 
                $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
 
@@ -82,13 +90,16 @@ class RepliesAction extends StreamAction {
                $cnt = $reply->find();
 
                if ($cnt > 0) {
-                       common_element_start('ul', array('id' => 'replies'));
-                       for ($i = 0; $i < min($cnt, REPLIES_PER_PAGE); $i++) {
+                       common_element_start('ul', array('id' => 'notices'));
+                       for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) {
                                if ($reply->fetch()) {
-                                        $notice = DB_DataObject::factory('notice');
-                                        $notice->id = $reply->notice_id;
-                                        $notice->find(1);
-                                       $this->show_reply($notice, $reply->replied_id);
+                                       $notice = new Notice();
+                                       $notice->id = $reply->notice_id;
+                                       $result = $notice->find(true);
+                                       if (!$result) {
+                                               continue;
+                                       }
+                                       $this->show_notice($notice);
                                } else {
                                        // shouldn't happen!
                                        break;
@@ -96,8 +107,8 @@ class RepliesAction extends StreamAction {
                        }
                        common_element_end('ul');
                }
-               
-               common_pagination($page > 1, $cnt > REPLIES_PER_PAGE,
-                                                 $page, 'all', array('nickname' => $profile->nickname));
+
+               common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
+                                                 $page, 'replies', array('nickname' => $profile->nickname));
        }
 }