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