]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/showstream.php
Merge branch 'master' into nightly
[quix0rs-gnu-social.git] / actions / showstream.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * User profile page
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  * @author    Sarven Capadisli <csarven@status.net>
26  * @copyright 2008-2009 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('GNUSOCIAL')) { exit(1); }
32
33 /**
34  * User profile page
35  *
36  * When I created this page, "show stream" seemed like the best name for it.
37  * Now, it seems like a really bad name.
38  *
39  * It shows a stream of the user's posts, plus lots of profile info, links
40  * to subscriptions and stuff, etc.
41  *
42  * @category Personal
43  * @package  StatusNet
44  * @author   Evan Prodromou <evan@status.net>
45  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
46  * @link     http://status.net/
47  */
48 class ShowstreamAction extends NoticestreamAction
49 {
50     public function getStream()
51     {
52         if (empty($this->tag)) {
53             $stream = new ProfileNoticeStream($this->target, $this->scoped);
54         } else {
55             $stream = new TaggedProfileNoticeStream($this->target, $this->tag, $this->scoped);
56         }
57
58         return $stream;
59     }
60
61     function title()
62     {
63         $base = $this->target->getFancyName();
64         if (!empty($this->tag)) {
65             if ($this->page == 1) {
66                 // TRANS: Page title showing tagged notices in one user's timeline.
67                 // TRANS: %1$s is the username, %2$s is the hash tag.
68                 return sprintf(_('Notices by %1$s tagged %2$s'), $base, $this->tag);
69             } else {
70                 // TRANS: Page title showing tagged notices in one user's timeline.
71                 // TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
72                 return sprintf(_('Notices by %1$s tagged %2$s, page %3$d'), $base, $this->tag, $this->page);
73             }
74         } else {
75             if ($this->page == 1) {
76                 return sprintf(_('Notices by %s'), $base);
77             } else {
78                 // TRANS: Extended page title showing tagged notices in one user's timeline.
79                 // TRANS: %1$s is the username, %2$d is the page number.
80                 return sprintf(_('Notices by %1$s, page %2$d'),
81                                $base,
82                                $this->page);
83             }
84         }
85     }
86
87     protected function showContent()
88     {
89         $this->showNotices();
90     }
91
92     function showProfileBlock()
93     {
94         $block = new AccountProfileBlock($this, $this->target);
95         $block->show();
96     }
97
98     function showPageNoticeBlock()
99     {
100         return;
101     }
102
103     function getFeeds()
104     {
105         if (!empty($this->tag)) {
106             return array(new Feed(Feed::RSS1,
107                                   common_local_url('userrss',
108                                                    array('nickname' => $this->target->getNickname(),
109                                                          'tag' => $this->tag)),
110                                   // TRANS: Title for link to notice feed.
111                                   // TRANS: %1$s is a user nickname, %2$s is a hashtag.
112                                   sprintf(_('Notice feed for %1$s tagged %2$s (RSS 1.0)'),
113                                           $this->target->getNickname(), $this->tag)));
114         }
115
116         return array(new Feed(Feed::JSON,
117                               common_local_url('ApiTimelineUser',
118                                                array(
119                                                     'id' => $this->target->getID(),
120                                                     'format' => 'as')),
121                               // TRANS: Title for link to notice feed.
122                               // TRANS: %s is a user nickname.
123                               sprintf(_('Notice feed for %s (Activity Streams JSON)'),
124                                       $this->target->getNickname())),
125                      new Feed(Feed::RSS1,
126                               common_local_url('userrss',
127                                                array('nickname' => $this->target->getNickname())),
128                               // TRANS: Title for link to notice feed.
129                               // TRANS: %s is a user nickname.
130                               sprintf(_('Notice feed for %s (RSS 1.0)'),
131                                       $this->target->getNickname())),
132                      new Feed(Feed::RSS2,
133                               common_local_url('ApiTimelineUser',
134                                                array(
135                                                     'id' => $this->target->getID(),
136                                                     'format' => 'rss')),
137                               // TRANS: Title for link to notice feed.
138                               // TRANS: %s is a user nickname.
139                               sprintf(_('Notice feed for %s (RSS 2.0)'),
140                                       $this->target->getNickname())),
141                      new Feed(Feed::ATOM,
142                               common_local_url('ApiTimelineUser',
143                                                array(
144                                                     'id' => $this->target->getID(),
145                                                     'format' => 'atom')),
146                               // TRANS: Title for link to notice feed.
147                               // TRANS: %s is a user nickname.
148                               sprintf(_('Notice feed for %s (Atom)'),
149                                       $this->target->getNickname())),
150                      new Feed(Feed::FOAF,
151                               common_local_url('foaf', array('nickname' =>
152                                                              $this->target->getNickname())),
153                               // TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend.
154                               // TRANS: More information at http://www.foaf-project.org. %s is a user nickname.
155                               sprintf(_('FOAF for %s'), $this->target->getNickname())));
156     }
157
158     function extraHead()
159     {
160         if ($this->target->bio) {
161             $this->element('meta', array('name' => 'description',
162                                          'content' => $this->target->getDescription()));
163         }
164
165         // See https://wiki.mozilla.org/Microsummaries
166
167         $this->element('link', array('rel' => 'microsummary',
168                                      'href' => common_local_url('microsummary',
169                                                                 array('nickname' => $this->target->getNickname()))));
170
171         $rsd = common_local_url('rsd',
172                                 array('nickname' => $this->target->getNickname()));
173
174         // RSD, http://tales.phrasewise.com/rfc/rsd
175         $this->element('link', array('rel' => 'EditURI',
176                                      'type' => 'application/rsd+xml',
177                                      'href' => $rsd));
178
179         if ($this->page != 1) {
180             $this->element('link', array('rel' => 'canonical',
181                                          'href' => $this->target->getUrl()));
182         }
183     }
184
185     function showEmptyListMessage()
186     {
187         // TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname.
188         $message = sprintf(_('This is the timeline for %1$s, but %1$s hasn\'t posted anything yet.'), $this->target->getNickname()) . ' ';
189
190         if ($this->scoped instanceof Profile) {
191             if ($this->target->getID() === $this->scoped->getID()) {
192                 // TRANS: Second sentence of empty list message for a stream for the user themselves.
193                 $message .= _('Seen anything interesting recently? You haven\'t posted any notices yet, now would be a good time to start :)');
194             } else {
195                 // TRANS: Second sentence of empty  list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL.
196                 // TRANS: This message contains a Markdown link. Keep "](" together.
197                 $message .= sprintf(_('You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%%?status_textarea=%2$s).'), $this->target->getNickname(), '@' . $this->target->getNickname());
198             }
199         }
200         else {
201             // TRANS: Second sentence of empty message for anonymous users. %s is a user nickname.
202             // TRANS: This message contains a Markdown link. Keep "](" together.
203             $message .= sprintf(_('Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to them.'), $this->target->getNickname());
204         }
205
206         $this->elementStart('div', 'guide');
207         $this->raw(common_markup_to_html($message));
208         $this->elementEnd('div');
209     }
210
211     function showNotices()
212     {
213         $pnl = new NoticeList($this->notice, $this);
214         $cnt = $pnl->show();
215         if (0 == $cnt) {
216             $this->showEmptyListMessage();
217         }
218
219         $args = array('nickname' => $this->target->getNickname());
220         if (!empty($this->tag))
221         {
222             $args['tag'] = $this->tag;
223         }
224         $this->pagination($this->page>1, $cnt>NOTICES_PER_PAGE, $this->page,
225                           'showstream', $args);
226     }
227
228     function showAnonymousMessage()
229     {
230         if (!(common_config('site','closed') || common_config('site','inviteonly'))) {
231             // TRANS: Announcement for anonymous users showing a timeline if site registrations are open.
232             // TRANS: This message contains a Markdown link. Keep "](" together.
233             $m = sprintf(_('**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
234                            'based on the Free Software [StatusNet](http://status.net/) tool. ' .
235                            '[Join now](%%%%action.register%%%%) to follow **%s**\'s notices and many more! ([Read more](%%%%doc.help%%%%))'),
236                          $this->target->getNickname(), $this->target->getNickname());
237         } else {
238             // TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only.
239             // TRANS: This message contains a Markdown link. Keep "](" together.
240             $m = sprintf(_('**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
241                            'based on the Free Software [StatusNet](http://status.net/) tool.'),
242                          $this->target->getNickname(), $this->target->getNickname());
243         }
244         $this->elementStart('div', array('id' => 'anon_notice'));
245         $this->raw(common_markup_to_html($m));
246         $this->elementEnd('div');
247     }
248
249     function showSections()
250     {
251         parent::showSections();
252         if (!common_config('performance', 'high')) {
253             $cloud = new PersonalTagCloudSection($this->target, $this);
254             $cloud->show();
255         }
256     }
257
258     function noticeFormOptions()
259     {
260         $options = parent::noticeFormOptions();
261
262         if (!$this->scoped instanceof Profile || !$this->scoped->sameAs($this->target)) {
263             $options['to_profile'] =  $this->target;
264         }
265
266         return $options;
267     }
268 }