Merged stuff from upstream/master
[quix0rs-gnu-social.git] / actions / replies.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * List of replies
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Personal
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2008-2011 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('GNUSOCIAL')) { exit(1); }
31
32 /**
33  * List of replies
34  *
35  * @category Personal
36  * @package  StatusNet
37  * @author   Evan Prodromou <evan@status.net>
38  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
39  * @link     http://status.net/
40  */
41 class RepliesAction extends ShowstreamAction
42 {
43     public function getStream()
44     {
45         return new ReplyNoticeStream($this->target->getID(), $this->scoped);
46     }
47
48     /**
49      * Title of the page
50      *
51      * Includes name of user and page number.
52      *
53      * @return string title of page
54      */
55     function title()
56     {
57         if ($this->page == 1) {
58             // TRANS: Title for first page of replies for a user.
59             // TRANS: %s is a user nickname.
60             return sprintf(_("Replies to %s"), $this->target->getNickname());
61         } else {
62             // TRANS: Title for all but the first page of replies for a user.
63             // TRANS: %1$s is a user nickname, %2$d is a page number.
64             return sprintf(_('Replies to %1$s, page %2$d'),
65                            $this->target->getNickname(),
66                            $this->page);
67         }
68     }
69
70     /**
71      * Feeds for the <head> section
72      *
73      * @return void
74      */
75     function getFeeds()
76     {
77         return array(new Feed(Feed::JSON,
78                               common_local_url('ApiTimelineMentions',
79                                                array(
80                                                     'id' => $this->target->getNickname(),
81                                                     'format' => 'as')),
82                               // TRANS: Link for feed with replies for a user.
83                               // TRANS: %s is a user nickname.
84                               sprintf(_('Replies feed for %s (Activity Streams JSON)'),
85                                       $this->target->getNickname())),
86                      new Feed(Feed::RSS1,
87                               common_local_url('repliesrss',
88                                                array('nickname' => $this->target->getNickname())),
89                               // TRANS: Link for feed with replies for a user.
90                               // TRANS: %s is a user nickname.
91                               sprintf(_('Replies feed for %s (RSS 1.0)'),
92                                       $this->target->getNickname())),
93                      new Feed(Feed::RSS2,
94                               common_local_url('ApiTimelineMentions',
95                                                array(
96                                                     'id' => $this->target->getNickname(),
97                                                     'format' => 'rss')),
98                               // TRANS: Link for feed with replies for a user.
99                               // TRANS: %s is a user nickname.
100                               sprintf(_('Replies feed for %s (RSS 2.0)'),
101                                       $this->target->getNickname())),
102                      new Feed(Feed::ATOM,
103                               common_local_url('ApiTimelineMentions',
104                                                array(
105                                                     'id' => $this->target->getNickname(),
106                                                     'format' => 'atom')),
107                               // TRANS: Link for feed with replies for a user.
108                               // TRANS: %s is a user nickname.
109                               sprintf(_('Replies feed for %s (Atom)'),
110                                     $this->target->getNickname())));
111     }
112
113     function showContent()
114     {
115         $nl = new PrimaryNoticeList($this->notice, $this, array('show_n'=>NOTICES_PER_PAGE));
116
117         $cnt = $nl->show();
118         if (0 === $cnt) {
119             $this->showEmptyListMessage();
120         }
121
122         $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
123                           $this->page, 'replies',
124                           array('nickname' => $this->target->getNickname()));
125     }
126
127     function showEmptyListMessage()
128     {
129         // TRANS: Empty list message for page with replies for a user.
130         // TRANS: %1$s is the user nickname.
131         $message = sprintf(_('This is the timeline showing replies to %1$s but no notices have arrived yet.'), $this->target->getNickname());
132         $message .= ' ';    // Spacing between this sentence and the next.
133
134         if (common_logged_in()) {
135             if ($this->target->getID() === $this->scoped->getID()) {
136                 // TRANS: Empty list message for page with replies for a user for the logged in user.
137                 // TRANS: This message contains a Markdown link in the form [link text](link).
138                 $message .= _('You can engage other users in a conversation, subscribe to more people or [join groups](%%action.groups%%).');
139             } else {
140                 // TRANS: Empty list message for page with replies for a user for all logged in users but the user themselves.
141                 // TRANS: %1$s is a user nickname and %2$s is the same but with a prepended '@' character. This message contains a Markdown link in the form [link text](link).
142                 $message .= sprintf(_('You can try to [nudge %1$s](../%1$s) or [post something to them](%%%%action.newnotice%%%%?content=%2$s).'), $this->target->getNickname(), '@' . $this->target->getNickname());
143             }
144         } else {
145             // TRANS: Empty list message for page with replies for a user for not logged in users.
146             // TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link).
147             $message .= sprintf(_('Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to them.'), $this->target->getNickname());
148         }
149
150         $this->elementStart('div', 'guide');
151         $this->raw(common_markup_to_html($message));
152         $this->elementEnd('div');
153     }
154
155     public function isReadOnly(array $args=array())
156     {
157         return true;
158     }
159 }