]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/showstream.php
CSRF protection in imsettings.php
[quix0rs-gnu-social.git] / actions / showstream.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once(INSTALLDIR.'/lib/stream.php');
23
24 define('SUBSCRIPTIONS_PER_ROW', 4);
25 define('SUBSCRIPTIONS', 80);
26
27 class ShowstreamAction extends StreamAction {
28
29         function handle($args) {
30
31                 parent::handle($args);
32
33                 $nickname = common_canonical_nickname($this->arg('nickname'));
34                 $user = User::staticGet('nickname', $nickname);
35
36                 if (!$user) {
37                         $this->no_such_user();
38                         return;
39                 }
40
41                 $profile = $user->getProfile();
42
43                 if (!$profile) {
44                         common_server_error(_('User has no profile.'));
45                         return;
46                 }
47
48                 # Looks like we're good; start output
49
50                 # For YADIS discovery, we also have a <meta> tag
51
52                 header('X-XRDS-Location: '. common_local_url('xrds', array('nickname' =>
53                                                                                                                                    $user->nickname)));
54
55                 common_show_header($profile->nickname,
56                                                    array($this, 'show_header'), $user,
57                                                    array($this, 'show_top'));
58
59                 $this->show_profile($profile);
60
61                 $this->show_notices($profile);
62
63                 common_show_footer();
64         }
65
66         function show_top($user) {
67
68                 $cur = common_current_user();
69
70                 if ($cur && $cur->id == $user->id) {
71                         common_notice_form('showstream');
72                 }
73
74                 $this->views_menu();
75         }
76
77         function show_header($user) {
78                 common_element('link', array('rel' => 'alternate',
79                                                                          'href' => common_local_url('userrss', array('nickname' =>
80                                                                                                                                                            $user->nickname)),
81                                                                          'type' => 'application/rss+xml',
82                                                                          'title' => sprintf(_('Notice feed for %s'), $user->nickname)));
83                 common_element('link', array('rel' => 'meta',
84                                                                          'href' => common_local_url('foaf', array('nickname' =>
85                                                                                                                                                           $user->nickname)),
86                                                                          'type' => 'application/rdf+xml',
87                                                                          'title' => 'FOAF'));
88                 # for remote subscriptions etc.
89                 common_element('meta', array('http-equiv' => 'X-XRDS-Location',
90                                                                          'content' => common_local_url('xrds', array('nickname' =>
91                                                                                                                                                            $user->nickname))));
92                 $profile = $user->getProfile();
93                 if ($profile->bio) {
94                         common_element('meta', array('name' => 'description',
95                                                                                  'content' => $profile->bio));
96                 }
97
98                 if ($user->emailmicroid && $user->email && $profile->profileurl) {
99                         common_element('meta', array('name' => 'microid',
100                                                                                  'content' => "mailto+http:sha1:" . sha1(sha1('mailto:' . $user->email) . sha1($profile->profileurl))));
101                 }
102                 if ($user->jabbermicroid && $user->jabber && $profile->profileurl) {
103                         common_element('meta', array('name' => 'microid',
104                                                                                  'content' => "xmpp+http:sha1:" . sha1(sha1('xmpp:' . $user->jabber) . sha1($profile->profileurl))));
105                 }
106
107         }
108
109         function no_such_user() {
110                 $this->client_error(_('No such user.'), 404);
111         }
112
113         function show_profile($profile) {
114
115                 common_element_start('div', array('id' => 'profile'));
116
117                 $this->show_personal($profile);
118
119                 $this->show_last_notice($profile);
120
121                 $cur = common_current_user();
122
123                 $this->show_subscriptions($profile);
124
125                 common_element_end('div');
126         }
127
128         function show_personal($profile) {
129
130                 $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
131                 common_element_start('div', array('id' => 'profile_avatar'));
132                 common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_PROFILE_SIZE),
133                                                                         'class' => 'avatar profile',
134                                                                         'width' => AVATAR_PROFILE_SIZE,
135                                                                         'height' => AVATAR_PROFILE_SIZE,
136                                                                         'alt' => $profile->nickname));
137                 $cur = common_current_user();
138                 if ($cur) {
139                         if ($cur->id != $profile->id) {
140                                 if ($cur->isSubscribed($profile)) {
141                                         $this->show_unsubscribe_form($profile);
142                                 } else {
143                                         $this->show_subscribe_form($profile);
144                                 }
145                         }
146                 } else {
147                         $this->show_remote_subscribe_link($profile);
148                 }
149                 common_element_end('div');
150
151                 common_element_start('div', array('id' => 'profile_information'));
152
153                 if ($profile->fullname) {
154                         common_element('h1', NULL, $profile->fullname . ' (' . $profile->nickname . ')');
155                 } else {
156                         common_element('h1', NULL, $profile->nickname);
157                 }
158
159
160                 if ($profile->location) {
161                         common_element('p', 'location', $profile->location);
162                 }
163                 if ($profile->bio) {
164                         common_element('p', 'description', $profile->bio);
165                 }
166                 if ($profile->homepage) {
167                         common_element_start('p', 'website');
168                         common_element('a', array('href' => $profile->homepage,
169                                                                           'rel' => 'me'),
170                                                    $profile->homepage);
171                         common_element_end('p');
172                 }
173
174                 $this->show_statistics($profile);
175
176                 common_element_end('div');
177         }
178
179         function show_subscribe_form($profile) {
180                 common_element_start('form', array('id' => 'subscribe', 'method' => 'post',
181                                                                                    'action' => common_local_url('subscribe')));
182                 common_element('input', array('id' => 'subscribeto',
183                                                                           'name' => 'subscribeto',
184                                                                           'type' => 'hidden',
185                                                                           'value' => $profile->nickname));
186                 common_element('input', array('type' => 'submit',
187                                                                           'class' => 'submit',
188                                                                           'value' => _('Subscribe')));
189                 common_element_end('form');
190         }
191
192         function show_remote_subscribe_link($profile) {
193                 $url = common_local_url('remotesubscribe',
194                                         array('nickname' => $profile->nickname));
195                 common_element('a', array('href' => $url,
196                                                                   'id' => 'remotesubscribe'),
197                                            _('Subscribe'));
198         }
199
200         function show_unsubscribe_form($profile) {
201                 common_element_start('form', array('id' => 'unsubscribe', 'method' => 'post',
202                                                                                    'action' => common_local_url('unsubscribe')));
203                 common_element('input', array('id' => 'unsubscribeto',
204                                                                           'name' => 'unsubscribeto',
205                                                                           'type' => 'hidden',
206                                                                           'value' => $profile->nickname));
207                 common_element('input', array('type' => 'submit',
208                                                                           'class' => 'submit',
209                                                                           'value' => _('Unsubscribe')));
210                 common_element_end('form');
211         }
212
213         function show_subscriptions($profile) {
214                 global $config;
215
216                 $subs = DB_DataObject::factory('subscription');
217                 $subs->subscriber = $profile->id;
218                 $subs->whereAdd('subscribed != ' . $profile->id);
219                 
220                 $subs->orderBy('created DESC');
221
222                 # We ask for an extra one to know if we need to do another page
223
224                 $subs->limit(0, SUBSCRIPTIONS + 1);
225
226                 $subs_count = $subs->find();
227
228                 common_element_start('div', array('id' => 'subscriptions'));
229
230                 common_element('h2', NULL, _('Subscriptions'));
231
232                 if ($subs_count > 0) {
233
234                         common_element_start('ul', array('id' => 'subscriptions_avatars'));
235
236                         for ($i = 0; $i < min($subs_count, SUBSCRIPTIONS); $i++) {
237
238                                 if (!$subs->fetch()) {
239                                         common_debug('Weirdly, broke out of subscriptions loop early', __FILE__);
240                                         break;
241                                 }
242
243                                 $other = Profile::staticGet($subs->subscribed);
244
245                                 common_element_start('li');
246                                 common_element_start('a', array('title' => ($other->fullname) ?
247                                                                                                 $other->fullname :
248                                                                                                 $other->nickname,
249                                                                                                 'href' => $other->profileurl,
250                                                                                                 'rel' => 'contact',
251                                                                                                 'class' => 'subscription'));
252                                 $avatar = $other->getAvatar(AVATAR_MINI_SIZE);
253                                 common_element('img', array('src' => (($avatar) ? common_avatar_display_url($avatar) :  common_default_avatar(AVATAR_MINI_SIZE)),
254                                                                                         'width' => AVATAR_MINI_SIZE,
255                                                                                         'height' => AVATAR_MINI_SIZE,
256                                                                                         'class' => 'avatar mini',
257                                                                                         'alt' =>  ($other->fullname) ?
258                                                                                         $other->fullname :
259                                                                                         $other->nickname));
260                                 common_element_end('a');
261                                 common_element_end('li');
262                         }
263
264                         common_element_end('ul');
265                 }
266
267                 if ($subs_count > SUBSCRIPTIONS) {
268                         common_element_start('p', array('id' => 'subscriptions_viewall'));
269
270                         common_element('a', array('href' => common_local_url('subscriptions',
271                                                                                                                                  array('nickname' => $profile->nickname)),
272                                                                           'class' => 'moresubscriptions'),
273                                                    _('All subscriptions'));
274                         common_element_end('p');
275                 }
276
277                 common_element_end('div');
278         }
279
280         function show_statistics($profile) {
281
282                 // XXX: WORM cache this
283                 $subs = DB_DataObject::factory('subscription');
284                 $subs->subscriber = $profile->id;
285                 $subs_count = (int) $subs->count() - 1;
286
287                 $subbed = DB_DataObject::factory('subscription');
288                 $subbed->subscribed = $profile->id;
289                 $subbed_count = (int) $subbed->count() - 1;
290
291                 $notices = DB_DataObject::factory('notice');
292                 $notices->profile_id = $profile->id;
293                 $notice_count = (int) $notices->count();
294
295                 common_element_start('div', 'statistics');
296                 common_element('h2', 'statistics', _('Statistics'));
297
298                 # Other stats...?
299                 common_element_start('dl', 'statistics');
300                 common_element('dt', 'membersince', _('Member since'));
301                 common_element('dd', 'membersince', date('j M Y',
302                                                                                                  strtotime($profile->created)));
303
304                 common_element_start('dt', 'subscriptions');
305                 common_element('a', array('href' => common_local_url('subscriptions',
306                                                                                                                          array('nickname' => $profile->nickname))),
307                                            _('Subscriptions'));
308                 common_element_end('dt');
309                 common_element('dd', 'subscriptions', (is_int($subs_count)) ? $subs_count : '0');
310                 common_element_start('dt', 'subscribers');
311                 common_element('a', array('href' => common_local_url('subscribers',
312                                                                                                                          array('nickname' => $profile->nickname))),
313                                            _('Subscribers'));
314                 common_element_end('dt');
315                 common_element('dd', 'subscribers', (is_int($subbed_count)) ? $subbed_count : '0');
316                 common_element('dt', 'notices', _('Notices'));
317                 common_element('dd', 'notices', (is_int($notice_count)) ? $notice_count : '0');
318                 common_element_end('dl');
319
320                 common_element_end('div');
321         }
322
323         function show_notices($profile) {
324
325                 $notice = DB_DataObject::factory('notice');
326                 $notice->profile_id = $profile->id;
327
328                 $notice->orderBy('created DESC, notice.id DESC');
329
330                 $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
331
332                 $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
333
334                 $cnt = $notice->find();
335
336                 if ($cnt > 0) {
337                         common_element_start('ul', array('id' => 'notices'));
338
339                         for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) {
340                                 if ($notice->fetch()) {
341                                         $this->show_notice($notice);
342                                 } else {
343                                         // shouldn't happen!
344                                         break;
345                                 }
346                         }
347
348                         common_element_end('ul');
349                 }
350                 common_pagination($page>1, $cnt>NOTICES_PER_PAGE, $page,
351                                                   'showstream', array('nickname' => $profile->nickname));
352         }
353
354         function show_last_notice($profile) {
355
356                 common_element('h2', NULL, _('Currently'));
357
358                 $notice = $profile->getCurrentNotice();
359
360                 if ($notice) {
361                         # FIXME: URL, image, video, audio
362                         common_element_start('p', array('class' => 'notice_current'));
363                         if ($notice->rendered) {
364                                 common_raw($notice->rendered);
365                         } else {
366                                 # XXX: may be some uncooked notices in the DB,
367                                 # we cook them right now. This can probably disappear in future
368                                 # versions (>> 0.4.x)
369                                 common_raw(common_render_content($notice->content, $notice));
370                         }
371                         common_element_end('p');
372                 }
373         }
374
375         function show_notice($notice) {
376                 $profile = $notice->getProfile();
377                 $user = common_current_user();
378
379                 # XXX: RDFa
380                 common_element_start('li', array('class' => 'notice_single',
381                                                                                  'id' => 'notice-' . $notice->id));
382                 $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
383                 # FIXME: URL, image, video, audio
384                 common_element_start('p');
385                 if ($notice->rendered) {
386                         common_raw($notice->rendered);
387                 } else {
388                         # XXX: may be some uncooked notices in the DB,
389                         # we cook them right now. This can probably disappear in future
390                         # versions (>> 0.4.x)
391                         common_raw(common_render_content($notice->content, $notice));
392                 }
393                 common_element_end('p');
394                 common_element_start('p', array('class' => 'time'));
395                 common_element('a', array('class' => 'permalink',
396                                                                   'href' => $noticeurl,
397                                                                   'title' => common_exact_date($notice->created)),
398                                            common_date_string($notice->created));
399                 if ($notice->source) {
400                         common_text(_(' from '));
401                         $this->source_link($notice->source);
402                 }
403                 if ($notice->reply_to) {
404                         $replyurl = common_local_url('shownotice', array('notice' => $notice->reply_to));
405                         common_text(' (');
406                         common_element('a', array('class' => 'inreplyto',
407                                                                           'href' => $replyurl),
408                                                    _('in reply to...'));
409                         common_text(')');
410                 }
411                 common_element_start('a',
412                                                          array('href' => common_local_url('newnotice',
413                                                                                                                           array('replyto' => $profile->nickname)),
414                                                                    'onclick' => 'doreply("'.$profile->nickname.'"); return false',
415                                                                    'title' => _('reply'),
416                                                                    'class' => 'replybutton'));
417                 common_raw('&rarr;');
418                 common_element_end('a');
419                 if ($user && $notice->profile_id == $user->id) {
420                         $deleteurl = common_local_url('deletenotice', array('notice' => $notice->id));
421                         common_element_start('a', array('class' => 'deletenotice',
422                                                                                         'href' => $deleteurl,
423                                                                                         'title' => _('delete')));
424                         common_raw('&times;');
425                         common_element_end('a');
426                 }
427                 common_element_end('p');
428                 common_element_end('li');
429         }
430 }