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_profile($profile);
60 $this->show_last_notice($profile);
62 if ($cur && $cur->id != $profile->id) {
63 if ($cur->isSubscribed($profile)) {
64 $this->show_unsubscribe_form($profile);
66 $this->show_subscribe_form($profile);
70 $this->show_statistics($profile);
72 $this->show_subscriptions($profile);
74 $this->show_notices($profile);
79 function no_such_user() {
80 common_user_error('No such user');
83 function notice_form() {
84 common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
85 'action' => common_local_url('newnotice')));
86 common_element('textarea', array('rows' => 4, 'cols' => 80,
89 common_element('input', array('type' => 'submit', 'value' => 'Send'));
90 common_element_end('form');
93 function show_profile($profile) {
94 common_element_start('div', 'profile');
95 $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
97 common_element('img', array('src' => $avatar->url,
98 'class' => 'avatar profile',
99 'width' => AVATAR_PROFILE_SIZE,
100 'height' => AVATAR_PROFILE_SIZE,
101 'title' => $profile->nickname));
103 common_element('span', 'nickname', $profile->nickname);
104 if ($profile->fullname) {
105 if ($profile->homepage) {
106 common_element('a', array('href' => $profile->homepage,
107 'class' => 'fullname'),
110 common_element('span', 'fullname', $profile->fullname);
113 if ($profile->location) {
114 common_element('span', 'location', $profile->location);
117 common_element('div', 'bio', $profile->bio);
121 function show_subscribe_form($profile) {
122 common_element_start('form', array('id' => 'subscribe', 'method' => 'POST',
123 'action' => common_local_url('subscribe')));
124 common_element('input', array('id' => 'subscribeto',
125 'name' => 'subscribeto',
127 'value' => $profile->nickname));
128 common_element('input', array('type' => 'submit', 'value' => _t('Subscribe')));
129 common_element_end('form');
132 function show_unsubscribe_form($profile) {
133 common_element_start('form', array('id' => 'unsubscribe', 'method' => 'POST',
134 'action' => common_local_url('unsubscribe')));
135 common_element('input', array('id' => 'unsubscribeto',
136 'name' => 'unsubscribeto',
138 'value' => $profile->nickname));
139 common_element('input', array('type' => 'submit'), _t('unsubscribe'));
140 common_element_end('form');
143 function show_subscriptions($profile) {
146 $subs = $profile->getLink('id', 'subscription', 'subscriber');
148 common_element_start('div', 'subscriptions');
153 while ($subs->fetch()) {
155 if ($cnt % SUBSCRIPTIONS_PER_ROW == 1) {
156 common_element_start('div', 'row');
159 common_element_start('a', array('title' => $subs->fullname ||
161 'href' => $subs->profileurl,
162 'class' => 'subscription'));
163 $avatar = $subs->getAvatar(AVATAR_MINI_SIZE);
164 common_element('img', array('src' => (($avatar) ? $avatar->url : DEFAULT_MINI_AVATAR),
165 'width' => AVATAR_MINI_SIZE,
166 'height' => AVATAR_MINI_SIZE,
167 'class' => 'avatar mini'));
168 common_element_end('a');
170 if ($cnt % SUBSCRIPTIONS_PER_ROW == 0) {
171 common_element_end('div');
174 if ($cnt == SUBSCRIPTIONS) {
180 common_element('a', array('href' => common_local_url('subscriptions',
181 array('nickname' => $profile->nickname)),
182 'class' => 'moresubscriptions'),
183 _t('All subscriptions'));
185 common_element_end('div');
188 function show_statistics($profile) {
190 // XXX: WORM cache this
191 $subs = DB_DataObject::factory('subscription');
192 $subs->subscriber = $profile->id;
193 $subs_count = $subs->count();
195 $subbed = DB_DataObject::factory('subscription');
196 $subbed->subscribed = $profile->id;
197 $subbed_count = $subbed->count();
199 $notices = DB_DataObject::factory('notice');
200 $notices->profile_id = $profile->id;
201 $notice_count = $notices->count();
204 common_element_start('dl', 'statistics');
205 common_element('dt', _t('Subscriptions'));
206 common_element('dd', $subs_count);
207 common_element('dt', _t('Subscribers'));
208 common_element('dd', $subbed_count);
209 common_element('dt', _t('Notices'));
210 common_element('dd', $notice_count);
211 common_element_end('dl');
214 function show_notices($profile) {
216 $notice = DB_DataObject::factory('notice');
217 $notice->profile_id = $profile->id;
219 $notice->orderBy('created DESC');
221 $page = $this->arg('page') || 1;
223 $notice->limit((($page-1)*NOTICES_PER_PAGE) + 1, NOTICES_PER_PAGE);
227 common_element_start('div', 'notices');
229 while ($notice->fetch()) {
230 $this->show_notice($notice);
233 common_element_end('div');
236 function show_last_notice($profile) {
237 $notice = DB_DataObject::factory('notice');
238 $notice->profile_id = $profile->id;
239 $notice->orderBy('created DESC');
240 $notice->limit(1, 1);
243 while ($notice->fetch()) {
244 # FIXME: URL, image, video, audio
245 common_element('span', array('class' => 'content'),
247 common_element('span', array('class' => 'date'),
248 common_date_string($notice->created));