]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/stream.php
HTML output in RSS 2.0 and Atom
[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 require_once(INSTALLDIR.'/lib/personal.php');
23
24 class StreamAction extends PersonalAction {
25
26
27         function public_views_menu() {
28
29                 $action = $this->trimmed('action');
30
31                 common_debug("action = $action");
32
33                 common_element_start('ul', array('id' => 'nav_views'));
34
35                 common_menu_item(common_local_url('public'), _('Public'),
36                         _('Public timeline'), $action == 'public');
37
38                 common_menu_item(common_local_url('tag'), _('Recent tags'),
39                         _('Recent tags'), $action == 'tag');
40
41                 if (count(common_config('nickname', 'featured')) > 0) {
42                         common_menu_item(common_local_url('featured'), _('Featured'),
43                                 _('Notices from featured Users'), $action == 'featured');
44                 }
45
46                 common_menu_item(common_local_url('favorited'), _('Favorited'),
47                         _("Most favorited notices"), $action == 'favorited');
48
49                 common_element_end('ul');
50
51         }
52
53         function show_notice($notice) {
54                 global $config;
55                 $profile = $notice->getProfile();
56                 $user = common_current_user();
57
58                 # XXX: RDFa
59                 common_element_start('li', array('class' => 'notice_single',
60                                                                                   'id' => 'notice-' . $notice->id));
61                 if ($user) {
62                         if ($user->hasFave($notice)) {
63                                 common_disfavor_form($notice);
64                         } else {
65                                 common_favor_form($notice);
66                         }
67                 }
68                 $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
69                 common_element_start('a', array('href' => $profile->profileurl));
70                 common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
71                                                                         'class' => 'avatar stream',
72                                                                         'width' => AVATAR_STREAM_SIZE,
73                                                                         'height' => AVATAR_STREAM_SIZE,
74                                                                         'alt' =>
75                                                                         ($profile->fullname) ? $profile->fullname :
76                                                                         $profile->nickname));
77                 common_element_end('a');
78                 common_element('a', array('href' => $profile->profileurl,
79                                                                   'class' => 'nickname'),
80                                            $profile->nickname);
81                 # FIXME: URL, image, video, audio
82                 common_element_start('p', array('class' => 'content'));
83                 if ($notice->rendered) {
84                         common_raw($notice->rendered);
85                 } else {
86                         # XXX: may be some uncooked notices in the DB,
87                         # we cook them right now. This should probably disappear in future
88                         # versions (>> 0.4.x)
89                         common_raw(common_render_content($notice->content, $notice));
90                 }
91                 common_element_end('p');
92                 $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
93                 # XXX: we need to figure this out better. Is this right?
94                 if (strcmp($notice->uri, $noticeurl) != 0 && preg_match('/^http/', $notice->uri)) {
95                         $noticeurl = $notice->uri;
96                 }
97                 common_element_start('p', 'time');
98                 common_element('a', array('class' => 'permalink',
99                                                                   'href' => $noticeurl,
100                                                                   'title' => common_exact_date($notice->created)),
101                                            common_date_string($notice->created));
102                 if ($notice->source) {
103                         common_text(_(' from '));
104                         $this->source_link($notice->source);
105                 }
106                 if ($notice->reply_to) {
107                         $replyurl = common_local_url('shownotice', array('notice' => $notice->reply_to));
108                         common_text(' (');
109                         common_element('a', array('class' => 'inreplyto',
110                                                                           'href' => $replyurl),
111                                                    _('in reply to...'));
112                         common_text(')');
113                 }
114                 common_element_start('a',
115                                                          array('href' => common_local_url('newnotice',
116                                                                                                                           array('replyto' => $profile->nickname)),
117                                                                    'onclick' => 'return doreply("'.$profile->nickname.'", '.$notice->id.');',
118                                                                    'title' => _('reply'),
119                                                                    'class' => 'replybutton'));
120                 common_raw('&rarr;');
121                 common_element_end('a');
122                 if ($user && $notice->profile_id == $user->id) {
123                         $deleteurl = common_local_url('deletenotice', array('notice' => $notice->id));
124                         common_element_start('a', array('class' => 'deletenotice',
125                                                                                         'href' => $deleteurl,
126                                                                                         'title' => _('delete')));
127                         common_raw('&times;');
128                         common_element_end('a');
129                 }
130                 common_element_end('p');
131                 common_element_end('li');
132         }
133 }