]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/showstream.php
8e4933d40367a8933c02e3bb8d3e5027a62bc107
[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(_t('User record exists without 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' => _t('Notice feed for ') . $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         }
93
94         function no_such_user() {
95                 common_user_error('No such user');
96         }
97
98         function show_profile($profile) {
99
100                 common_element_start('div', array('id' => 'profile'));
101
102                 $this->show_personal($profile);
103
104                 $this->show_last_notice($profile);
105
106                 $cur = common_current_user();
107
108                 $this->show_subscriptions($profile);
109
110                 common_element_end('div');
111         }
112
113         function show_personal($profile) {
114
115                 $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
116                 common_element_start('div', array('id' => 'profile_avatar'));
117                 common_element('img', array('src' => ($avatar) ? $avatar->url : common_default_avatar(AVATAR_PROFILE_SIZE),
118                                                                         'class' => 'avatar profile',
119                                                                         'width' => AVATAR_PROFILE_SIZE,
120                                                                         'height' => AVATAR_PROFILE_SIZE,
121                                                                         'alt' => $profile->nickname));
122                 $cur = common_current_user();
123                 if ($cur) {
124                         if ($cur->id != $profile->id) {
125                                 if ($cur->isSubscribed($profile)) {
126                                         $this->show_unsubscribe_form($profile);
127                                 } else {
128                                         $this->show_subscribe_form($profile);
129                                 }
130                         }
131                 } else {
132                         $this->show_remote_subscribe_link($profile);
133                 }
134                 common_element_end('div');
135
136                 common_element_start('div', array('id' => 'profile_information'));
137
138                 if ($profile->fullname) {
139                         common_element('h1', NULL, $profile->fullname);
140                 }
141                 if ($profile->location) {
142                         common_element('p', 'location', $profile->location);
143                 }
144                 if ($profile->bio) {
145                         common_element('p', 'description', htmlspecialchars($profile->bio));
146                 }
147                 if ($profile->homepage) {
148                         common_element_start('p', 'website');
149                         common_element('a', array('href' => $profile->homepage),
150                                                    $profile->homepage);
151                         common_element_end('p');
152                 }
153
154                 $this->show_statistics($profile);
155
156                 common_element_end('div');
157         }
158
159         function show_subscribe_form($profile) {
160                 common_element_start('form', array('id' => 'subscribe', 'method' => 'POST',
161                                                                                    'action' => common_local_url('subscribe')));
162                 common_element('input', array('id' => 'subscribeto',
163                                                                           'name' => 'subscribeto',
164                                                                           'type' => 'hidden',
165                                                                           'value' => $profile->nickname));
166                 common_element('input', array('type' => 'submit',
167                                                                           'class' => 'submit',
168                                                                           'value' => _t('Subscribe')));
169                 common_element_end('form');
170         }
171
172         function show_remote_subscribe_link($profile) {
173                 $url = common_local_url('remotesubscribe',
174                                         array('nickname' => $profile->nickname));
175                 common_element('a', array('href' => $url),
176                                            _t('Subscribe'));
177         }
178
179         function show_unsubscribe_form($profile) {
180                 common_element_start('form', array('id' => 'unsubscribe', 'method' => 'POST',
181                                                                                    'action' => common_local_url('unsubscribe')));
182                 common_element('input', array('id' => 'unsubscribeto',
183                                                                           'name' => 'unsubscribeto',
184                                                                           'type' => 'hidden',
185                                                                           'value' => $profile->nickname));
186                 common_element('input', array('type' => 'submit',
187                                                                           'class' => 'submit',
188                                                                           'value' => _t('Unsubscribe')));
189                 common_element_end('form');
190         }
191
192         function show_subscriptions($profile) {
193                 global $config;
194
195                 $subs = DB_DataObject::factory('subscription');
196                 $subs->subscriber = $profile->id;
197                 $subs->orderBy('created DESC');
198
199                 # We ask for an extra one to know if we need to do another page
200
201                 $subs->limit(0, SUBSCRIPTIONS + 1);
202
203                 $subs_count = $subs->find();
204
205                 common_element_start('div', array('id' => 'subscriptions'));
206
207                 common_element('h2', NULL, _t('Subscriptions'));
208
209                 if ($subs_count > 0) {
210
211                         common_element_start('ul', array('id' => 'subscriptions_avatars'));
212
213                         for ($i = 0; $i < min($subs_count, SUBSCRIPTIONS); $i++) {
214
215                                 if (!$subs->fetch()) {
216                                         common_debug('Weirdly, broke out of subscriptions loop early', __FILE__);
217                                         break;
218                                 }
219
220                                 $other = Profile::staticGet($subs->subscribed);
221
222                                 common_element_start('li');
223                                 common_element_start('a', array('title' => ($other->fullname) ?
224                                                                                                 $other->fullname :
225                                                                                                 $other->nickname,
226                                                                                                 'href' => $other->profileurl,
227                                                                                                 'class' => 'subscription'));
228                                 $avatar = $other->getAvatar(AVATAR_MINI_SIZE);
229                                 common_element('img', array('src' => (($avatar) ? $avatar->url :  common_default_avatar(AVATAR_MINI_SIZE)),
230                                                                                         'width' => AVATAR_MINI_SIZE,
231                                                                                         'height' => AVATAR_MINI_SIZE,
232                                                                                         'class' => 'avatar mini',
233                                                                                         'alt' =>  ($other->fullname) ?
234                                                                                         $other->fullname :
235                                                                                         $other->nickname));
236                                 common_element_end('a');
237                                 common_element_end('li');
238                         }
239
240                         common_element_end('ul');
241                 }
242
243                 if ($subs_count > SUBSCRIPTIONS) {
244                         common_element_start('p', array('id' => 'subscriptions_viewall'));
245
246                         common_element('a', array('href' => common_local_url('subscriptions',
247                                                                                                                                  array('nickname' => $profile->nickname)),
248                                                                           'class' => 'moresubscriptions'),
249                                                    _t('All subscriptions'));
250                         common_element_end('p');
251                 }
252
253                 common_element_end('div');
254         }
255
256         function show_statistics($profile) {
257
258                 // XXX: WORM cache this
259                 $subs = DB_DataObject::factory('subscription');
260                 $subs->subscriber = $profile->id;
261                 $subs_count = (int) $subs->count();
262
263                 $subbed = DB_DataObject::factory('subscription');
264                 $subbed->subscribed = $profile->id;
265                 $subbed_count = (int) $subbed->count();
266
267                 $notices = DB_DataObject::factory('notice');
268                 $notices->profile_id = $profile->id;
269                 $notice_count = (int) $notices->count();
270
271                 common_element_start('div', 'statistics');
272                 common_element('h2', 'statistics', _t('Statistics'));
273
274                 # Other stats...?
275                 common_element_start('dl', 'statistics');
276                 common_element_start('dt', 'subscriptions');
277                 common_element('a', array('href' => common_local_url('subscriptions',
278                                                                                                                          array('nickname' => $profile->nickname))),
279                                            _t('Subscriptions'));
280                 common_element_end('dt');
281                 common_element('dd', 'subscriptions', $subs_count);
282                 common_element_start('dt', 'subscribers');
283                 common_element('a', array('href' => common_local_url('subscribers',
284                                                                                                                          array('nickname' => $profile->nickname))),
285                                            _t('Subscribers'));
286                 common_element_end('dt');
287                 common_element('dd', 'subscribers', $subbed_count);
288                 common_element('dt', 'notices', _t('Notices'));
289                 common_element('dd', 'notices', $notice_count);
290                 common_element_end('dl');
291
292                 common_element_end('div');
293         }
294
295         function show_notices($profile) {
296
297                 $notice = DB_DataObject::factory('notice');
298                 $notice->profile_id = $profile->id;
299
300                 $notice->orderBy('created DESC');
301
302                 $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
303
304                 $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
305
306                 $cnt = $notice->find();
307
308                 if ($cnt > 0) {
309                         common_element_start('ul', array('id' => 'notices'));
310
311                         for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) {
312                                 if ($notice->fetch()) {
313                                         $this->show_notice($notice);
314                                 } else {
315                                         // shouldn't happen!
316                                         break;
317                                 }
318                         }
319
320                         common_element_end('ul');
321                 }
322                 common_pagination($page>1, $cnt>NOTICES_PER_PAGE, $page,
323                                                   'showstream', array('nickname' => $profile->nickname));
324         }
325
326         function show_last_notice($profile) {
327
328                 common_element('h2', NULL, _t('Currently'));
329
330                 $notice = DB_DataObject::factory('notice');
331                 $notice->profile_id = $profile->id;
332                 $notice->orderBy('created DESC');
333                 $notice->limit(0, 1);
334
335                 if ($notice->find(true)) {
336                         # FIXME: URL, image, video, audio
337                         common_element_start('p', array('class' => 'notice_current'));
338                         common_raw(common_render_content($notice->content, $notice));
339                         common_element_end('p');
340                 }
341         }
342
343         function show_notice($notice) {
344                 $profile = $notice->getProfile();
345                 # XXX: RDFa
346                 common_element_start('li', array('class' => 'notice_single',
347                                                                                  'id' => 'notice-' . $notice->id));
348                 $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
349                 # FIXME: URL, image, video, audio
350                 common_element_start('p');
351                 common_raw(common_render_content($notice->content, $notice));
352                 common_element_end('p');
353                 common_element_start('p', array('class' => 'time'));
354                 common_element('a', array('class' => 'notice',
355                                                                   'href' => $noticeurl),
356                                            common_date_string($notice->created));
357                 common_element_end('p');
358                 common_element_end('li');
359         }
360 }