]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/stream.php
431580b13662cd2d2d4c3cee0dba3c5ac3d21f00
[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('replies', array('nickname' =>
48                                                                                                                           $nickname)),
49                                                  _t('Replies'),  
50                                                  _t('Replies to ') . (($user && $user->fullname) ? $user->fullname : $nickname),
51                                                  $action == 'replies');
52                 common_menu_item(common_local_url('showstream', array('nickname' =>
53                                                                                                                           $nickname)),
54                                                  _t('Profile'),
55                                                  ($user && $user->fullname) ? $user->fullname : $nickname,
56                                                  $action == 'showstream');
57                 common_element_end('ul');
58         }
59
60         function show_notice($notice, $replied_id=NULL) {
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                 common_raw(common_render_content($notice->content, $notice));
82                 common_element_end('p');
83                 $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
84                 common_element_start('p', 'time');
85                 common_element('a', array('class' => 'permalink',
86                                                                   'href' => $noticeurl,
87                                                                   'title' => common_exact_date($notice->created)),
88                                            common_date_string($notice->created));
89                 if ($replied_id) {
90                         $replyurl = common_local_url('shownotice', array('notice' => $replied_id));
91                         common_text('(');
92                         common_element('a', array('class' => 'inreplyto',
93                                                                           'href' => $replyurl),
94                                                    _t(' in reply to...'));
95                         common_text(')');
96                 }
97                 common_element_start('a', 
98                                                          array('href' => common_local_url('newnotice',
99                                                                                                                           array('replyto' => $profile->nickname)),
100                                                                    'onclick' => 'doreply("'.$profile->nickname.'"); return false',
101                                                                    'title' => _t('reply'),
102                                                                    'class' => 'replybutton'));
103                 common_raw('&rarr;');
104                 common_element_end('a');
105                 common_element_end('p');
106                 common_element_end('li');
107         }
108 }