]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/stream.php
a595958e44e27a8e806a49f205064b8917bdfd8f
[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 class StreamAction extends Action {
23
24         function handle($args) {
25                 parent::handle($args);
26         }
27
28         function views_menu() {
29
30                 $user = NULL;
31                 $action = $this->trimmed('action');
32                 $nickname = $this->trimmed('nickname');
33
34                 if ($nickname) {
35                         $user = User::staticGet('nickname', $nickname);
36                 }
37
38                 common_element_start('ul', array('id' => 'nav_views'));
39
40                 common_menu_item(common_local_url('all', array('nickname' =>
41                                                                                                            $nickname)),
42                                                  _('Personal'),
43                                                  sprintf(_('%s and friends'), (($user && $user->fullname) ? $user->fullname : $nickname)),
44                                                  $action == 'all');
45                 common_menu_item(common_local_url('replies', array('nickname' =>
46                                                                                                                           $nickname)),
47                                                  _('Replies'),
48                                                  sprintf(_('Replies to %s'), (($user && $user->fullname) ? $user->fullname : $nickname)),
49                                                  $action == 'replies');
50                 common_menu_item(common_local_url('showstream', array('nickname' =>
51                                                                                                                           $nickname)),
52                                                  _('Profile'),
53                                                  ($user && $user->fullname) ? $user->fullname : $nickname,
54                                                  $action == 'showstream');
55                 common_element_end('ul');
56         }
57
58         function show_notice($notice) {
59                 global $config;
60                 $profile = $notice->getProfile();
61                 # XXX: RDFa
62                 common_element_start('li', array('class' => 'notice_single',
63                                                                                   'id' => 'notice-' . $notice->id));
64                 $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
65                 common_element_start('a', array('href' => $profile->profileurl));
66                 common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
67                                                                         'class' => 'avatar stream',
68                                                                         'width' => AVATAR_STREAM_SIZE,
69                                                                         'height' => AVATAR_STREAM_SIZE,
70                                                                         'alt' =>
71                                                                         ($profile->fullname) ? $profile->fullname :
72                                                                         $profile->nickname));
73                 common_element_end('a');
74                 common_element('a', array('href' => $profile->profileurl,
75                                                                   'class' => 'nickname'),
76                                            $profile->nickname);
77                 # FIXME: URL, image, video, audio
78                 common_element_start('p', array('class' => 'content'));
79                 if ($notice->rendered) {
80                         common_raw($notice->rendered);
81                 } else {
82                         # XXX: may be some uncooked notices in the DB,
83                         # we cook them right now. This should probably disappear in future
84                         # versions (>> 0.4.x)
85                         common_raw(common_render_content($notice->content, $notice));
86                 }
87                 common_element_end('p');
88                 $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
89                 common_element_start('p', 'time');
90                 common_element('a', array('class' => 'permalink',
91                                                                   'href' => $noticeurl,
92                                                                   'title' => common_exact_date($notice->created)),
93                                            common_date_string($notice->created));
94                 if ($notice->reply_to) {
95                         $replyurl = common_local_url('shownotice', array('notice' => $notice->reply_to));
96                         common_text(' (');
97                         common_element('a', array('class' => 'inreplyto',
98                                                                           'href' => $replyurl),
99                                                    _('in reply to...'));
100                         common_text(')');
101                 }
102                 common_element_start('a',
103                                                          array('href' => common_local_url('newnotice',
104                                                                                                                           array('replyto' => $profile->nickname)),
105                                                                    'onclick' => 'doreply("'.$profile->nickname.'"); return false',
106                                                                    'title' => _('reply'),
107                                                                    'class' => 'replybutton'));
108                 common_raw('&rarr;');
109                 common_element_end('a');
110                 common_element_end('p');
111                 common_element_end('li');
112         }
113 }