]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/stream.php
b2f57fab3efbee83ea751013b47c23f4df000d64
[quix0rs-gnu-social.git] / lib / stream.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 define('NOTICES_PER_PAGE', 20);
23
24 class StreamAction extends Action {
25
26         function handle($args) {
27                 parent::handle($args);
28         }
29
30         function views_menu() {
31
32                 $user = NULL;
33                 $action = $this->trimmed('action');
34                 $nickname = $this->trimmed('nickname');
35
36                 if ($nickname) {
37                         $user = User::staticGet('nickname', $nickname);
38                 }
39
40                 common_element_start('ul', array('id' => 'nav_views'));
41
42                 common_menu_item(common_local_url('all', array('nickname' =>
43                                                                                                            $nickname)),
44                                                  _t('Personal'),
45                                                  (($user && $user->fullname) ? $user->fullname : $nickname) . _t(' and friends'),
46                                                  $action == 'all');
47                 common_menu_item(common_local_url('showstream', array('nickname' =>
48                                                                                                                           $nickname)),
49                                                  _t('Profile'),
50                                                  ($user && $user->fullname) ? $user->fullname : $nickname,
51                                                  $action == 'showstream');
52                 common_element_end('ul');
53         }
54
55         function show_notice($notice) {
56                 global $config;
57                 $profile = $notice->getProfile();
58                 # XXX: RDFa
59                 common_element_start('li', array('class' => 'notice_single',
60                                                                                   'id' => 'notice-' . $notice->id));
61                 $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
62                 common_element_start('a', array('href' => $profile->profileurl));
63                 common_element('img', array('src' => ($avatar) ? $avatar->url : common_default_avatar(AVATAR_STREAM_SIZE),
64                                                                         'class' => 'avatar stream',
65                                                                         'width' => AVATAR_STREAM_SIZE,
66                                                                         'height' => AVATAR_STREAM_SIZE,
67                                                                         'alt' =>
68                                                                         ($profile->fullname) ? $profile->fullname :
69                                                                         $profile->nickname));
70                 common_element_end('a');
71                 common_element('a', array('href' => $profile->profileurl,
72                                                                   'class' => 'nickname'),
73                                            $profile->nickname);
74                 # FIXME: URL, image, video, audio
75                 common_element_start('p', array('class' => 'content'));
76                 common_raw(common_render_content($notice->content, $notice));
77                 common_element_end('p');
78                 $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
79                 common_element_start('p', 'time');
80                 common_element('a', array('class' => 'notice',
81                                                                   'href' => $noticeurl,
82                                                                   'title' => common_exact_date($notice->created)),
83                                            common_date_string($notice->created));
84                 common_element_end('p');
85                 common_element_end('li');
86         }
87 }