3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, Controlez-Vous, Inc.
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.
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.
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/>.
20 if (!defined('LACONICA')) { exit(1); }
22 require_once(INSTALLDIR.'/lib/stream.php');
24 define('SUBSCRIPTIONS_PER_ROW', 5);
25 define('SUBSCRIPTIONS', 80);
27 class ShowstreamAction extends StreamAction {
29 function handle($args) {
31 parent::handle($args);
33 $nickname = common_canonical_nickname($this->arg('nickname'));
34 $user = User::staticGet('nickname', $nickname);
37 $this->no_such_user();
41 $profile = $user->getProfile();
44 common_server_error(_t('User record exists without profile.'));
48 # Looks like we're good; show the header
50 common_show_header($profile->nickname);
52 $cur = common_current_user();
54 if ($cur && $profile->id == $cur->id) {
58 $this->show_notices($profile);
60 common_element_start('div', 'sidebar width33 floatRight greenBg');
62 $this->show_profile($profile);
64 $this->show_last_notice($profile);
66 if ($cur && $cur->id != $profile->id) {
67 if ($cur->isSubscribed($profile)) {
68 $this->show_unsubscribe_form($profile);
70 $this->show_subscribe_form($profile);
74 $this->show_statistics($profile);
76 $this->show_subscriptions($profile);
78 common_element_end('div');
83 function no_such_user() {
84 common_user_error('No such user');
87 function notice_form() {
88 common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
89 'action' => common_local_url('newnotice')));
90 common_element('textarea', array('rows' => 3, 'cols' => 60,
94 common_submit('submit', _t('Send'));
95 common_element_end('form');
98 function show_profile($profile) {
99 common_element_start('div', 'profile');
101 common_element('h2', 'nickname', $profile->nickname);
103 $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
105 common_element('img', array('src' => $avatar->url,
106 'class' => 'avatar profile',
107 'width' => AVATAR_PROFILE_SIZE,
108 'height' => AVATAR_PROFILE_SIZE,
109 'alt' => $profile->nickname));
111 if ($profile->fullname) {
112 if ($profile->homepage) {
113 common_element('a', array('href' => $profile->homepage,
114 'class' => 'fullname'),
117 common_element('span', 'fullname', $profile->fullname);
120 if ($profile->location) {
121 common_element('span', 'location', $profile->location);
124 common_element('div', 'bio', $profile->bio);
126 common_element_end('div');
129 function show_subscribe_form($profile) {
130 common_element_start('form', array('id' => 'subscribe', 'method' => 'POST',
131 'action' => common_local_url('subscribe')));
132 common_element('input', array('id' => 'subscribeto',
133 'name' => 'subscribeto',
135 'value' => $profile->nickname));
136 common_element('input', array('type' => 'submit', 'value' => _t('Subscribe')));
137 common_element_end('form');
140 function show_unsubscribe_form($profile) {
141 common_element_start('form', array('id' => 'unsubscribe', 'method' => 'POST',
142 'action' => common_local_url('unsubscribe')));
143 common_element('input', array('id' => 'unsubscribeto',
144 'name' => 'unsubscribeto',
146 'value' => $profile->nickname));
147 common_element('input', array('type' => 'submit'), _t('Unsubscribe'));
148 common_element_end('form');
151 function show_subscriptions($profile) {
154 $subs = $profile->getLink('id', 'subscription', 'subscriber');
156 common_element_start('div', 'subscriptions');
158 common_element('h2', 'subscriptions', _t('Subscriptions'));
163 while ($subs->fetch()) {
165 if ($cnt % SUBSCRIPTIONS_PER_ROW == 1) {
166 common_element_start('div', 'row');
169 common_element_start('a', array('title' => ($subs->fullname) ?
172 'href' => $subs->profileurl,
173 'class' => 'subscription'));
174 $avatar = $subs->getAvatar(AVATAR_MINI_SIZE);
175 common_element('img', array('src' => (($avatar) ? $avatar->url : DEFAULT_MINI_AVATAR),
176 'width' => AVATAR_MINI_SIZE,
177 'height' => AVATAR_MINI_SIZE,
178 'class' => 'avatar mini',
179 'alt' => ($subs->fullname) ?
182 common_element_end('a');
184 if ($cnt % SUBSCRIPTIONS_PER_ROW == 0) {
185 common_element_end('div');
188 if ($cnt == SUBSCRIPTIONS) {
194 common_element('a', array('href' => common_local_url('subscriptions',
195 array('nickname' => $profile->nickname)),
196 'class' => 'moresubscriptions'),
197 _t('All subscriptions'));
199 common_element_end('div');
202 function show_statistics($profile) {
204 // XXX: WORM cache this
205 $subs = DB_DataObject::factory('subscription');
206 $subs->subscriber = $profile->id;
207 $subs_count = $subs->count();
213 $subbed = DB_DataObject::factory('subscription');
214 $subbed->subscribed = $profile->id;
215 $subbed_count = $subbed->count();
217 if (!$subbed_count) {
221 $notices = DB_DataObject::factory('notice');
222 $notices->profile_id = $profile->id;
223 $notice_count = $notices->count();
225 if (!$notice_count) {
229 common_element_start('div', 'statistics');
230 common_element('h2', 'statistics', _t('Statistics'));
233 common_element_start('dl', 'statistics');
234 common_element('dt', 'subscriptions', _t('Subscriptions'));
235 common_element('dd', 'subscriptions', $subs_count);
236 common_element('dt', 'subscribers', _t('Subscribers'));
237 common_element('dd', 'subscribers', $subbed_count);
238 common_element('dt', 'notices', _t('Notices'));
239 common_element('dd', 'notices', $notice_count);
240 common_element_end('dl');
242 common_element_end('div');
245 function show_notices($profile) {
247 $notice = DB_DataObject::factory('notice');
248 $notice->profile_id = $profile->id;
250 $notice->orderBy('created DESC');
252 $page = $this->arg('page') || 1;
254 $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE);
258 common_element_start('div', 'notices width66 floatLeft');
259 common_element('h2', 'notices', _t('Notices'));
261 while ($notice->fetch()) {
262 $this->show_notice($notice);
264 # XXX: show a link for the next page
265 common_element_end('div');
268 function show_last_notice($profile) {
270 common_element_start('div', 'lastnotice');
271 common_element('h2', 'lastnotice', _t('Currently'));
273 $notice = DB_DataObject::factory('notice');
274 $notice->profile_id = $profile->id;
275 $notice->orderBy('created DESC');
276 $notice->limit(0, 1);
278 if ($notice->find(true)) {
279 # FIXME: URL, image, video, audio
280 common_element('span', array('class' => 'content'),
282 common_element('span', array('class' => 'date'),
283 common_date_string($notice->created));
286 common_element_end('div');