]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/stream.php
b19bf7c0faeaa60214b2b4115dfd203e6deb4856
[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                 common_menu_item(common_local_url('featured'), _('Featured'),
42                         _('Notices from featured Users'), $action == 'featured');
43
44                 common_menu_item(common_local_url('favorited'), _('Favorited'),
45                         _("Most favorited notices"), $action == 'favorited');
46
47                 common_element_end('ul');
48
49         }
50
51         function show_notice($notice) {
52                 global $config;
53                 $profile = $notice->getProfile();
54                 $user = common_current_user();
55
56                 # XXX: RDFa
57                 common_element_start('li', array('class' => 'notice_single',
58                                                                                   'id' => 'notice-' . $notice->id));
59                 if ($user) {
60                         if ($user->hasFave($notice)) {
61                                 common_disfavor_form($notice);
62                         } else {
63                                 common_favor_form($notice);
64                         }
65                 }
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                 # XXX: we need to figure this out better. Is this right?
92                 if (strcmp($notice->uri, $noticeurl) != 0 && preg_match('/^http/', $notice->uri)) {
93                         $noticeurl = $notice->uri;
94                 }
95                 common_element_start('p', 'time');
96                 common_element('a', array('class' => 'permalink',
97                                                                   'href' => $noticeurl,
98                                                                   'title' => common_exact_date($notice->created)),
99                                            common_date_string($notice->created));
100                 if ($notice->source) {
101                         common_text(_(' from '));
102                         $this->source_link($notice->source);
103                 }
104                 if ($notice->reply_to) {
105                         $replyurl = common_local_url('shownotice', array('notice' => $notice->reply_to));
106                         common_text(' (');
107                         common_element('a', array('class' => 'inreplyto',
108                                                                           'href' => $replyurl),
109                                                    _('in reply to...'));
110                         common_text(')');
111                 }
112                 common_element_start('a',
113                                                          array('href' => common_local_url('newnotice',
114                                                                                                                           array('replyto' => $profile->nickname)),
115                                                                    'onclick' => 'return doreply("'.$profile->nickname.'", '.$notice->id.');',
116                                                                    'title' => _('reply'),
117                                                                    'class' => 'replybutton'));
118                 common_raw('&rarr;');
119                 common_element_end('a');
120                 if ($user && $notice->profile_id == $user->id) {
121                         $deleteurl = common_local_url('deletenotice', array('notice' => $notice->id));
122                         common_element_start('a', array('class' => 'deletenotice',
123                                                                                         'href' => $deleteurl,
124                                                                                         'title' => _('delete')));
125                         common_raw('&times;');
126                         common_element_end('a');
127                 }
128                 common_element_end('p');
129                 common_element_end('li');
130         }
131 }