]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/stream.php
allow doc and api calls from private
[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         function public_views_menu() {
27
28                 $action = $this->trimmed('action');
29
30                 common_element_start('ul', array('id' => 'nav_views'));
31
32                 common_menu_item(common_local_url('public'), _('Public'),
33                         _('Public timeline'), $action == 'public');
34
35                 common_menu_item(common_local_url('tag'), _('Recent tags'),
36                         _('Recent tags'), $action == 'tag');
37
38                 if (count(common_config('nickname', 'featured')) > 0) {
39                         common_menu_item(common_local_url('featured'), _('Featured'),
40                                 _('Notices from featured Users'), $action == 'featured');
41                 }
42
43                 common_menu_item(common_local_url('favorited'), _('Favorited'),
44                         _("Most favorited notices"), $action == 'favorited');
45
46                 common_element_end('ul');
47
48         }
49
50         function show_notice($notice) {
51                 global $config;
52                 $profile = $notice->getProfile();
53                 $user = common_current_user();
54
55                 # XXX: RDFa
56                 common_element_start('li', array('class' => 'notice_single hentry',
57                                                                                   'id' => 'notice-' . $notice->id));
58                 if ($user) {
59                         if ($user->hasFave($notice)) {
60                                 common_disfavor_form($notice);
61                         } else {
62                                 common_favor_form($notice);
63                         }
64                 }
65                 common_element_start('span', 'vcard author');
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 photo',
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 fn url'),
78                                            $profile->nickname);
79                 common_element_end('span');
80                 # FIXME: URL, image, video, audio
81                 common_element_start('p', array('class' => 'content entry-title entry-content'));
82                 if ($notice->rendered) {
83                         common_raw($notice->rendered);
84                 } else {
85                         # XXX: may be some uncooked notices in the DB,
86                         # we cook them right now. This should probably disappear in future
87                         # versions (>> 0.4.x)
88                         common_raw(common_render_content($notice->content, $notice));
89                 }
90                 common_element_end('p');
91                 $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
92                 # XXX: we need to figure this out better. Is this right?
93                 if (strcmp($notice->uri, $noticeurl) != 0 && preg_match('/^http/', $notice->uri)) {
94                         $noticeurl = $notice->uri;
95                 }
96                 common_element_start('p', 'time');
97                 common_element('a', array('class' => 'permalink published',
98                                                                   'rel' => 'bookmark',
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 }