2008-05-07 17:48:07 +01:00
|
|
|
<?php
|
2008-05-17 20:24:47 +01:00
|
|
|
/*
|
2008-05-14 20:26:48 +01:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2008-05-17 20:24:47 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2008-05-17 20:24:47 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2008-05-17 20:24:47 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-17 16:47:01 +01:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-07 17:48:07 +01:00
|
|
|
|
2008-05-17 20:10:34 +01:00
|
|
|
require_once(INSTALLDIR.'/lib/stream.php');
|
|
|
|
|
2008-05-29 20:21:12 +01:00
|
|
|
define('SUBSCRIPTIONS_PER_ROW', 4);
|
2008-05-09 03:16:04 +01:00
|
|
|
define('SUBSCRIPTIONS', 80);
|
|
|
|
|
|
|
|
class ShowstreamAction extends StreamAction {
|
|
|
|
|
|
|
|
function handle($args) {
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
parent::handle($args);
|
|
|
|
|
2008-12-03 17:46:46 +00:00
|
|
|
$nickname_arg = $this->arg('nickname');
|
|
|
|
$nickname = common_canonical_nickname($nickname_arg);
|
|
|
|
|
|
|
|
# Permanent redirect on non-canonical nickname
|
|
|
|
|
|
|
|
if ($nickname_arg != $nickname) {
|
|
|
|
$args = array('nickname' => $nickname);
|
|
|
|
if ($this->arg('page') && $this->arg('page') != 1) {
|
|
|
|
$args['page'] = $this->arg['page'];
|
|
|
|
}
|
|
|
|
common_redirect(common_local_url('showstream', $args), 301);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
$user = User::staticGet('nickname', $nickname);
|
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
if (!$user) {
|
|
|
|
$this->no_such_user();
|
2008-05-17 20:54:49 +01:00
|
|
|
return;
|
2008-05-17 20:24:47 +01:00
|
|
|
}
|
2008-05-14 15:54:36 +01:00
|
|
|
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
|
|
|
|
if (!$profile) {
|
2008-07-13 06:37:48 +01:00
|
|
|
common_server_error(_('User has no profile.'));
|
2008-05-19 15:13:51 +01:00
|
|
|
return;
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-30 19:35:28 +01:00
|
|
|
# Looks like we're good; start output
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-30 19:35:28 +01:00
|
|
|
# For YADIS discovery, we also have a <meta> tag
|
|
|
|
|
|
|
|
header('X-XRDS-Location: '. common_local_url('xrds', array('nickname' =>
|
|
|
|
$user->nickname)));
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-06-30 20:50:32 +01:00
|
|
|
common_show_header($profile->nickname,
|
2008-06-11 19:36:34 +01:00
|
|
|
array($this, 'show_header'), $user,
|
|
|
|
array($this, 'show_top'));
|
2008-06-11 19:13:34 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
$this->show_profile($profile);
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-09-28 13:06:16 +01:00
|
|
|
$this->show_notices($user);
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-20 21:11:20 +01:00
|
|
|
common_show_footer();
|
|
|
|
}
|
|
|
|
|
2008-06-11 19:36:34 +01:00
|
|
|
function show_top($user) {
|
|
|
|
$cur = common_current_user();
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 19:36:34 +01:00
|
|
|
if ($cur && $cur->id == $user->id) {
|
2008-06-19 17:18:14 +01:00
|
|
|
common_notice_form('showstream');
|
2008-06-11 19:36:34 +01:00
|
|
|
}
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 19:36:34 +01:00
|
|
|
$this->views_menu();
|
2008-11-14 21:05:06 +00:00
|
|
|
|
2008-12-03 03:59:47 +00:00
|
|
|
$this->show_feeds_list(array(0=>array('href'=>common_local_url('userrss', array('nickname' => $user->nickname)),
|
2008-11-14 21:05:06 +00:00
|
|
|
'type' => 'rss',
|
|
|
|
'version' => 'RSS 1.0',
|
|
|
|
'item' => 'notices'),
|
2008-12-03 03:59:47 +00:00
|
|
|
1=>array('href'=>common_local_url('usertimeline', array('nickname' => $user->nickname)),
|
2008-11-14 21:05:06 +00:00
|
|
|
'type' => 'atom',
|
|
|
|
'version' => 'Atom 1.0',
|
|
|
|
'item' => 'usertimeline'),
|
|
|
|
|
|
|
|
2=>array('href'=>common_local_url('foaf',array('nickname' => $user->nickname)),
|
|
|
|
'type' => 'rdf',
|
|
|
|
'version' => 'FOAF',
|
|
|
|
'item' => 'foaf')));
|
2008-06-11 19:36:34 +01:00
|
|
|
}
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-05-21 16:24:04 +01:00
|
|
|
function show_header($user) {
|
2008-10-23 22:26:59 +01:00
|
|
|
# Feeds
|
|
|
|
common_element('link', array('rel' => 'alternate',
|
2008-12-03 03:59:47 +00:00
|
|
|
'href' => common_local_url('api',
|
2008-10-23 22:26:59 +01:00
|
|
|
array('apiaction' => 'statuses',
|
|
|
|
'method' => 'user_timeline.rss',
|
|
|
|
'argument' => $user->nickname)),
|
|
|
|
'type' => 'application/rss+xml',
|
|
|
|
'title' => sprintf(_('Notice feed for %s'), $user->nickname)));
|
|
|
|
common_element('link', array('rel' => 'alternate feed',
|
2008-12-03 03:59:47 +00:00
|
|
|
'href' => common_local_url('api',
|
2008-10-23 22:26:59 +01:00
|
|
|
array('apiaction' => 'statuses',
|
|
|
|
'method' => 'user_timeline.atom',
|
|
|
|
'argument' => $user->nickname)),
|
|
|
|
'type' => 'application/atom+xml',
|
|
|
|
'title' => sprintf(_('Notice feed for %s'), $user->nickname)));
|
2008-05-21 16:24:04 +01:00
|
|
|
common_element('link', array('rel' => 'alternate',
|
2008-05-22 12:29:54 +01:00
|
|
|
'href' => common_local_url('userrss', array('nickname' =>
|
2008-05-21 16:24:04 +01:00
|
|
|
$user->nickname)),
|
2008-10-23 22:26:59 +01:00
|
|
|
'type' => 'application/rdf+xml',
|
2008-07-08 10:45:31 +01:00
|
|
|
'title' => sprintf(_('Notice feed for %s'), $user->nickname)));
|
2008-10-23 22:26:59 +01:00
|
|
|
# FOAF
|
2008-06-10 15:44:20 +01:00
|
|
|
common_element('link', array('rel' => 'meta',
|
|
|
|
'href' => common_local_url('foaf', array('nickname' =>
|
|
|
|
$user->nickname)),
|
2008-06-10 15:46:06 +01:00
|
|
|
'type' => 'application/rdf+xml',
|
|
|
|
'title' => 'FOAF'));
|
2008-05-27 12:42:19 +01:00
|
|
|
# for remote subscriptions etc.
|
|
|
|
common_element('meta', array('http-equiv' => 'X-XRDS-Location',
|
|
|
|
'content' => common_local_url('xrds', array('nickname' =>
|
|
|
|
$user->nickname))));
|
2008-07-17 13:47:19 +01:00
|
|
|
$profile = $user->getProfile();
|
|
|
|
if ($profile->bio) {
|
|
|
|
common_element('meta', array('name' => 'description',
|
|
|
|
'content' => $profile->bio));
|
|
|
|
}
|
2008-07-21 13:00:36 +01:00
|
|
|
|
|
|
|
if ($user->emailmicroid && $user->email && $profile->profileurl) {
|
|
|
|
common_element('meta', array('name' => 'microid',
|
|
|
|
'content' => "mailto+http:sha1:" . sha1(sha1('mailto:' . $user->email) . sha1($profile->profileurl))));
|
|
|
|
}
|
|
|
|
if ($user->jabbermicroid && $user->jabber && $profile->profileurl) {
|
|
|
|
common_element('meta', array('name' => 'microid',
|
|
|
|
'content' => "xmpp+http:sha1:" . sha1(sha1('xmpp:' . $user->jabber) . sha1($profile->profileurl))));
|
|
|
|
}
|
|
|
|
|
2008-11-24 22:35:33 +00:00
|
|
|
# See https://wiki.mozilla.org/Microsummaries
|
2008-12-03 03:59:47 +00:00
|
|
|
|
2008-11-24 22:35:33 +00:00
|
|
|
common_element('link', array('rel' => 'microsummary',
|
|
|
|
'href' => common_local_url('microsummary',
|
|
|
|
array('nickname' => $profile->nickname))));
|
2008-05-21 16:24:04 +01:00
|
|
|
}
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-20 21:11:20 +01:00
|
|
|
function no_such_user() {
|
2008-08-04 14:20:01 +01:00
|
|
|
$this->client_error(_('No such user.'), 404);
|
2008-05-20 21:11:20 +01:00
|
|
|
}
|
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
function show_profile($profile) {
|
2008-05-20 21:11:20 +01:00
|
|
|
|
2008-12-03 03:59:47 +00:00
|
|
|
common_element_start('div', array('id' => 'profile', 'class' => 'vcard'));
|
2008-05-20 20:36:36 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
$this->show_personal($profile);
|
2008-05-08 17:21:45 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
$this->show_last_notice($profile);
|
2008-05-14 15:54:36 +01:00
|
|
|
|
2008-05-21 19:36:45 +01:00
|
|
|
$cur = common_current_user();
|
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
$this->show_subscriptions($profile);
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-20 20:36:36 +01:00
|
|
|
common_element_end('div');
|
2008-05-08 17:21:45 +01:00
|
|
|
}
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
function show_personal($profile) {
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-05-15 17:28:44 +01:00
|
|
|
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
|
2008-06-15 02:47:42 +01:00
|
|
|
common_element_start('div', array('id' => 'profile_avatar'));
|
2008-07-03 18:03:47 +01:00
|
|
|
common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_PROFILE_SIZE),
|
2008-12-03 03:59:47 +00:00
|
|
|
'class' => 'avatar profile photo',
|
2008-06-15 02:47:42 +01:00
|
|
|
'width' => AVATAR_PROFILE_SIZE,
|
|
|
|
'height' => AVATAR_PROFILE_SIZE,
|
|
|
|
'alt' => $profile->nickname));
|
2008-11-16 02:27:35 +00:00
|
|
|
|
|
|
|
common_element_start('ul', array('id' => 'profile_actions'));
|
|
|
|
|
|
|
|
common_element_start('li', array('id' => 'profile_subscribe'));
|
2008-06-15 02:47:42 +01:00
|
|
|
$cur = common_current_user();
|
|
|
|
if ($cur) {
|
|
|
|
if ($cur->id != $profile->id) {
|
|
|
|
if ($cur->isSubscribed($profile)) {
|
2008-11-20 23:26:55 +00:00
|
|
|
common_unsubscribe_form($profile);
|
2008-06-15 02:47:42 +01:00
|
|
|
} else {
|
2008-11-20 23:26:55 +00:00
|
|
|
common_subscribe_form($profile);
|
2008-06-11 03:29:00 +01:00
|
|
|
}
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-06-15 02:47:42 +01:00
|
|
|
} else {
|
2008-06-30 20:50:32 +01:00
|
|
|
$this->show_remote_subscribe_link($profile);
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-11-16 02:27:35 +00:00
|
|
|
common_element_end('li');
|
2008-12-03 03:59:47 +00:00
|
|
|
|
2008-09-17 18:53:56 +01:00
|
|
|
$user = User::staticGet('id', $profile->id);
|
2008-11-20 23:26:55 +00:00
|
|
|
common_profile_new_message_nudge($cur, $user, $profile);
|
2008-12-03 03:59:47 +00:00
|
|
|
|
2008-12-12 05:18:30 +00:00
|
|
|
if ($cur && $cur->id != $profile->id) {
|
2008-12-08 17:09:31 +00:00
|
|
|
$blocked = $cur->hasBlocked($profile);
|
2008-12-12 04:32:40 +00:00
|
|
|
common_element_start('li', array('id' => 'profile_block'));
|
2008-12-08 17:09:31 +00:00
|
|
|
if ($blocked) {
|
2008-12-08 17:37:22 +00:00
|
|
|
common_unblock_form($profile, array('action' => 'showstream',
|
|
|
|
'nickname' => $profile->nickname));
|
2008-12-08 17:09:31 +00:00
|
|
|
} else {
|
|
|
|
common_block_form($profile, array('action' => 'showstream',
|
|
|
|
'nickname' => $profile->nickname));
|
|
|
|
}
|
2008-12-08 05:55:11 +00:00
|
|
|
common_element_end('li');
|
|
|
|
}
|
|
|
|
|
2008-11-20 23:26:55 +00:00
|
|
|
common_element_end('ul');
|
2008-12-03 03:59:47 +00:00
|
|
|
|
2008-06-15 02:47:42 +01:00
|
|
|
common_element_end('div');
|
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('div', array('id' => 'profile_information'));
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
if ($profile->fullname) {
|
2008-12-03 03:59:47 +00:00
|
|
|
common_element('h1', array('class' => 'fn'), $profile->fullname . ' (' . $profile->nickname . ')');
|
2008-07-05 07:43:03 +01:00
|
|
|
} else {
|
2008-12-03 03:59:47 +00:00
|
|
|
common_element('h1', array('class' => 'fn nickname'), $profile->nickname);
|
2008-06-11 03:29:00 +01:00
|
|
|
}
|
2008-07-05 07:43:03 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
if ($profile->location) {
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element('p', 'location', $profile->location);
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
|
|
|
if ($profile->bio) {
|
2008-12-03 03:59:47 +00:00
|
|
|
common_element('p', 'description note', $profile->bio);
|
2008-06-11 03:29:00 +01:00
|
|
|
}
|
|
|
|
if ($profile->homepage) {
|
2008-06-12 18:44:53 +01:00
|
|
|
common_element_start('p', 'website');
|
2008-07-17 17:32:11 +01:00
|
|
|
common_element('a', array('href' => $profile->homepage,
|
2008-12-03 03:59:47 +00:00
|
|
|
'rel' => 'me', 'class' => 'url'),
|
2008-06-12 18:44:53 +01:00
|
|
|
$profile->homepage);
|
|
|
|
common_element_end('p');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
$this->show_statistics($profile);
|
|
|
|
|
2008-05-20 20:40:08 +01:00
|
|
|
common_element_end('div');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-05-14 15:54:36 +01:00
|
|
|
|
2008-06-30 20:50:32 +01:00
|
|
|
function show_remote_subscribe_link($profile) {
|
|
|
|
$url = common_local_url('remotesubscribe',
|
2008-06-30 20:51:39 +01:00
|
|
|
array('nickname' => $profile->nickname));
|
2008-07-01 16:54:42 +01:00
|
|
|
common_element('a', array('href' => $url,
|
2008-07-01 16:56:51 +01:00
|
|
|
'id' => 'remotesubscribe'),
|
2008-07-08 10:45:31 +01:00
|
|
|
_('Subscribe'));
|
2008-05-30 18:43:10 +01:00
|
|
|
}
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function show_unsubscribe_form($profile) {
|
2008-07-02 14:15:07 +01:00
|
|
|
common_element_start('form', array('id' => 'unsubscribe', 'method' => 'post',
|
2008-05-14 15:54:36 +01:00
|
|
|
'action' => common_local_url('unsubscribe')));
|
2008-08-29 06:11:04 +01:00
|
|
|
common_hidden('token', common_session_token());
|
2008-05-14 15:54:36 +01:00
|
|
|
common_element('input', array('id' => 'unsubscribeto',
|
|
|
|
'name' => 'unsubscribeto',
|
|
|
|
'type' => 'hidden',
|
|
|
|
'value' => $profile->nickname));
|
2008-05-21 19:56:02 +01:00
|
|
|
common_element('input', array('type' => 'submit',
|
2008-06-18 17:35:16 +01:00
|
|
|
'class' => 'submit',
|
2008-07-08 10:45:31 +01:00
|
|
|
'value' => _('Unsubscribe')));
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_end('form');
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
function show_subscriptions($profile) {
|
2008-05-21 12:57:27 +01:00
|
|
|
global $config;
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-21 20:06:40 +01:00
|
|
|
$subs = DB_DataObject::factory('subscription');
|
|
|
|
$subs->subscriber = $profile->id;
|
2008-07-22 15:41:54 +01:00
|
|
|
$subs->whereAdd('subscribed != ' . $profile->id);
|
2008-12-03 03:59:47 +00:00
|
|
|
|
2008-06-18 18:24:44 +01:00
|
|
|
$subs->orderBy('created DESC');
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-05-21 20:06:40 +01:00
|
|
|
# We ask for an extra one to know if we need to do another page
|
|
|
|
|
2008-06-12 20:26:50 +01:00
|
|
|
$subs->limit(0, SUBSCRIPTIONS + 1);
|
2008-05-21 20:06:40 +01:00
|
|
|
|
|
|
|
$subs_count = $subs->find();
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('div', array('id' => 'subscriptions'));
|
|
|
|
|
2008-07-08 10:45:31 +01:00
|
|
|
common_element('h2', NULL, _('Subscriptions'));
|
2008-06-11 03:29:00 +01:00
|
|
|
|
|
|
|
if ($subs_count > 0) {
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('ul', array('id' => 'subscriptions_avatars'));
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-12 20:26:50 +01:00
|
|
|
for ($i = 0; $i < min($subs_count, SUBSCRIPTIONS); $i++) {
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-12 20:26:50 +01:00
|
|
|
if (!$subs->fetch()) {
|
|
|
|
common_debug('Weirdly, broke out of subscriptions loop early', __FILE__);
|
|
|
|
break;
|
|
|
|
}
|
2008-06-11 03:29:00 +01:00
|
|
|
|
|
|
|
$other = Profile::staticGet($subs->subscribed);
|
|
|
|
|
2008-09-26 15:50:08 +01:00
|
|
|
if (!$other) {
|
|
|
|
common_log_db_error($subs, 'SELECT', __FILE__);
|
|
|
|
continue;
|
|
|
|
}
|
2008-12-03 03:59:47 +00:00
|
|
|
|
|
|
|
common_element_start('li', 'vcard');
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('a', array('title' => ($other->fullname) ?
|
|
|
|
$other->fullname :
|
|
|
|
$other->nickname,
|
|
|
|
'href' => $other->profileurl,
|
2008-07-20 11:19:47 +01:00
|
|
|
'rel' => 'contact',
|
2008-12-03 03:59:47 +00:00
|
|
|
'class' => 'subscription fn url'));
|
2008-06-11 03:29:00 +01:00
|
|
|
$avatar = $other->getAvatar(AVATAR_MINI_SIZE);
|
2008-07-03 18:03:47 +01:00
|
|
|
common_element('img', array('src' => (($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_MINI_SIZE)),
|
2008-06-11 03:29:00 +01:00
|
|
|
'width' => AVATAR_MINI_SIZE,
|
|
|
|
'height' => AVATAR_MINI_SIZE,
|
2008-12-03 03:59:47 +00:00
|
|
|
'class' => 'avatar mini photo',
|
2008-06-11 03:29:00 +01:00
|
|
|
'alt' => ($other->fullname) ?
|
2008-05-21 20:20:48 +01:00
|
|
|
$other->fullname :
|
2008-06-11 03:29:00 +01:00
|
|
|
$other->nickname));
|
|
|
|
common_element_end('a');
|
|
|
|
common_element_end('li');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_end('ul');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
|
|
|
|
2008-06-12 20:26:50 +01:00
|
|
|
if ($subs_count > SUBSCRIPTIONS) {
|
|
|
|
common_element_start('p', array('id' => 'subscriptions_viewall'));
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-12 20:26:50 +01:00
|
|
|
common_element('a', array('href' => common_local_url('subscriptions',
|
|
|
|
array('nickname' => $profile->nickname)),
|
|
|
|
'class' => 'moresubscriptions'),
|
2008-07-08 10:45:31 +01:00
|
|
|
_('All subscriptions'));
|
2008-06-12 20:26:50 +01:00
|
|
|
common_element_end('p');
|
|
|
|
}
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_end('div');
|
2008-05-08 17:21:45 +01:00
|
|
|
}
|
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
function show_statistics($profile) {
|
2008-05-08 17:21:45 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
// XXX: WORM cache this
|
|
|
|
$subs = DB_DataObject::factory('subscription');
|
|
|
|
$subs->subscriber = $profile->id;
|
2008-07-22 17:35:11 +01:00
|
|
|
$subs_count = (int) $subs->count() - 1;
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
$subbed = DB_DataObject::factory('subscription');
|
|
|
|
$subbed->subscribed = $profile->id;
|
2008-07-22 17:35:11 +01:00
|
|
|
$subbed_count = (int) $subbed->count() - 1;
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
$notices = DB_DataObject::factory('notice');
|
2008-05-17 20:21:51 +01:00
|
|
|
$notices->profile_id = $profile->id;
|
2008-05-21 20:20:48 +01:00
|
|
|
$notice_count = (int) $notices->count();
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-19 15:12:19 +01:00
|
|
|
common_element_start('div', 'statistics');
|
2008-07-08 10:45:31 +01:00
|
|
|
common_element('h2', 'statistics', _('Statistics'));
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
# Other stats...?
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_start('dl', 'statistics');
|
2008-07-08 10:45:31 +01:00
|
|
|
common_element('dt', 'membersince', _('Member since'));
|
|
|
|
common_element('dd', 'membersince', date('j M Y',
|
2008-07-05 07:46:18 +01:00
|
|
|
strtotime($profile->created)));
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2008-06-12 21:04:24 +01:00
|
|
|
common_element_start('dt', 'subscriptions');
|
|
|
|
common_element('a', array('href' => common_local_url('subscriptions',
|
|
|
|
array('nickname' => $profile->nickname))),
|
2008-07-08 10:45:31 +01:00
|
|
|
_('Subscriptions'));
|
2008-06-12 21:04:24 +01:00
|
|
|
common_element_end('dt');
|
2008-07-13 01:39:32 +01:00
|
|
|
common_element('dd', 'subscriptions', (is_int($subs_count)) ? $subs_count : '0');
|
2008-06-12 21:04:24 +01:00
|
|
|
common_element_start('dt', 'subscribers');
|
2008-06-18 18:16:22 +01:00
|
|
|
common_element('a', array('href' => common_local_url('subscribers',
|
2008-06-12 21:04:24 +01:00
|
|
|
array('nickname' => $profile->nickname))),
|
2008-07-08 10:45:31 +01:00
|
|
|
_('Subscribers'));
|
2008-06-12 21:04:24 +01:00
|
|
|
common_element_end('dt');
|
2008-07-13 01:39:32 +01:00
|
|
|
common_element('dd', 'subscribers', (is_int($subbed_count)) ? $subbed_count : '0');
|
2008-07-08 10:45:31 +01:00
|
|
|
common_element('dt', 'notices', _('Notices'));
|
2008-07-13 01:39:32 +01:00
|
|
|
common_element('dd', 'notices', (is_int($notice_count)) ? $notice_count : '0');
|
2008-11-20 21:57:51 +00:00
|
|
|
# XXX: link these to something
|
|
|
|
common_element('dt', 'tags', _('Tags'));
|
2008-11-20 22:51:37 +00:00
|
|
|
common_element_start('dd', 'tags');
|
|
|
|
$tags = Profile_tag::getTags($profile->id, $profile->id);
|
2008-11-21 02:38:27 +00:00
|
|
|
|
|
|
|
common_element_start('ul', 'tags xoxo');
|
2008-11-20 22:51:37 +00:00
|
|
|
foreach ($tags as $tag) {
|
2008-11-21 02:38:27 +00:00
|
|
|
common_element_start('li');
|
|
|
|
common_element('a', array('rel' => 'bookmark tag',
|
2008-11-20 22:51:37 +00:00
|
|
|
'href' => common_local_url('peopletag',
|
|
|
|
array('tag' => $tag))),
|
|
|
|
$tag);
|
2008-11-21 02:38:27 +00:00
|
|
|
common_element_end('li');
|
2008-11-20 22:51:37 +00:00
|
|
|
}
|
2008-11-21 02:38:27 +00:00
|
|
|
common_element_end('ul');
|
2008-11-20 22:51:37 +00:00
|
|
|
common_element_end('dd');
|
2008-12-03 03:59:47 +00:00
|
|
|
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_end('dl');
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-05-19 15:12:19 +01:00
|
|
|
common_element_end('div');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-09-28 13:06:16 +01:00
|
|
|
function show_notices($user) {
|
2008-05-07 17:48:07 +01:00
|
|
|
|
2008-05-28 18:34:17 +01:00
|
|
|
$page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
2008-05-17 20:24:47 +01:00
|
|
|
|
single function for important streams, with memcached support
I moved the 4 streams for a user (with friends, faves, replies,
personal) into functions on the User object. Added a helper function
in Notice for making notice streams. Also, will fetch notice streams
out of the memcached server, if possible. Made the API, RSS, and HTML
output all use the same streams (hopefully cached).
Added some code to Notice to blow the cache when a notice is posted.
Also, added code to favor and disfavor actions to blow the faves
cache, too.
darcs-hash:20080928120119-5ed1f-ead542348bcd3cf315be6f42934353154402eb16.gz
2008-09-28 13:01:19 +01:00
|
|
|
$notice = $user->getNotices(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
|
2008-12-03 03:59:47 +00:00
|
|
|
|
2008-12-11 23:12:52 +00:00
|
|
|
$pnl = new ProfileNoticeList($notice);
|
|
|
|
$cnt = $pnl->show();
|
2008-12-03 03:59:47 +00:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_pagination($page>1, $cnt>NOTICES_PER_PAGE, $page,
|
2008-09-28 13:06:16 +01:00
|
|
|
'showstream', array('nickname' => $user->nickname));
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
function show_last_notice($profile) {
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-07-08 10:45:31 +01:00
|
|
|
common_element('h2', NULL, _('Currently'));
|
2008-05-19 15:12:19 +01:00
|
|
|
|
2008-07-09 21:38:31 +01:00
|
|
|
$notice = $profile->getCurrentNotice();
|
2008-07-10 05:51:26 +01:00
|
|
|
|
2008-07-09 21:38:31 +01:00
|
|
|
if ($notice) {
|
2008-05-09 03:16:04 +01:00
|
|
|
# FIXME: URL, image, video, audio
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('p', array('class' => 'notice_current'));
|
2008-07-09 20:52:38 +01:00
|
|
|
if ($notice->rendered) {
|
|
|
|
common_raw($notice->rendered);
|
|
|
|
} else {
|
|
|
|
# XXX: may be some uncooked notices in the DB,
|
|
|
|
# we cook them right now. This can probably disappear in future
|
|
|
|
# versions (>> 0.4.x)
|
|
|
|
common_raw(common_render_content($notice->content, $notice));
|
|
|
|
}
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_end('p');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
|
|
|
}
|
2008-12-11 23:12:52 +00:00
|
|
|
}
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-12-11 23:12:52 +00:00
|
|
|
# We don't show the author for a profile, since we already know who it is!
|
2008-07-30 04:39:39 +01:00
|
|
|
|
2008-12-11 23:12:52 +00:00
|
|
|
class ProfileNoticeList extends NoticeList {
|
2008-12-23 19:08:51 +00:00
|
|
|
function newListItem($notice) {
|
2008-12-11 23:12:52 +00:00
|
|
|
return new ProfileNoticeListItem($notice);
|
|
|
|
}
|
|
|
|
}
|
2008-12-03 03:59:47 +00:00
|
|
|
|
2008-12-11 23:12:52 +00:00
|
|
|
class ProfileNoticeListItem extends NoticeListItem {
|
2008-12-23 19:08:51 +00:00
|
|
|
function showAuthor() {
|
2008-12-11 23:12:52 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-11-16 02:27:35 +00:00
|
|
|
}
|