2008-05-09 11:16:04 +09:00
|
|
|
<?php
|
2009-01-23 00:12:00 +09:00
|
|
|
/**
|
|
|
|
* Laconica, the distributed open-source microblogging tool
|
2008-05-21 04:14:12 +09:00
|
|
|
*
|
2009-01-23 00:12:00 +09:00
|
|
|
* User profile page
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-05-15 04:26:48 +09:00
|
|
|
* 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-21 04:14:12 +09:00
|
|
|
*
|
2008-05-15 04:26:48 +09: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-21 04:14:12 +09:00
|
|
|
*
|
2008-05-15 04:26:48 +09: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/>.
|
2009-01-23 00:12:00 +09:00
|
|
|
*
|
|
|
|
* @category Personal
|
|
|
|
* @package Laconica
|
|
|
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
|
|
|
* @author Sarven Capadisli <csarven@controlyourself.ca>
|
|
|
|
* @copyright 2008-2009 Control Yourself, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://laconi.ca/
|
2008-05-15 04:26:48 +09:00
|
|
|
*/
|
|
|
|
|
2009-01-23 00:12:00 +09:00
|
|
|
if (!defined('LACONICA')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once INSTALLDIR.'/lib/subsgroupnav.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* User profile page
|
|
|
|
*
|
|
|
|
* When I created this page, "show stream" seemed like the best name for it.
|
|
|
|
* Now, it seems like a really bad name.
|
|
|
|
*
|
|
|
|
* It shows a stream of the user's posts, plus lots of profile info, links
|
|
|
|
* to subscriptions and stuff, etc.
|
|
|
|
*
|
|
|
|
* @category Personal
|
|
|
|
* @package Laconica
|
|
|
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://laconi.ca/
|
|
|
|
*/
|
2008-05-09 11:16:04 +09:00
|
|
|
|
2009-01-23 00:12:00 +09:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-22 04:29:12 +09:00
|
|
|
|
2009-01-23 00:12:00 +09:00
|
|
|
class SubscriptionsAction extends Action
|
2008-12-24 04:49:23 +09:00
|
|
|
{
|
2009-01-23 00:12:00 +09:00
|
|
|
var $profile = null;
|
|
|
|
var $user = null;
|
|
|
|
var $page = null;
|
2008-05-22 04:29:12 +09:00
|
|
|
|
2009-01-23 00:12:00 +09:00
|
|
|
function prepare($args)
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-01-23 00:12:00 +09:00
|
|
|
parent::prepare($args);
|
|
|
|
|
|
|
|
// FIXME very similar code below
|
|
|
|
|
|
|
|
$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('subscriptions', $args), 301);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->user = User::staticGet('nickname', $nickname);
|
|
|
|
|
|
|
|
if (!$this->user) {
|
|
|
|
$this->clientError(_('No such user.'), 404);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->profile = $this->user->getProfile();
|
|
|
|
|
|
|
|
if (!$this->profile) {
|
|
|
|
$this->serverError(_('User has no profile.'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
|
|
|
|
|
|
|
return true;
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-05-21 04:14:12 +09:00
|
|
|
|
2009-01-23 00:12:00 +09:00
|
|
|
function isReadOnly()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-01-23 00:12:00 +09:00
|
|
|
return true;
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-05-09 11:16:04 +09:00
|
|
|
|
2009-01-23 00:12:00 +09:00
|
|
|
function handle($args)
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-01-23 00:12:00 +09:00
|
|
|
parent::handle($args);
|
|
|
|
$this->showPage();
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-07-08 18:45:31 +09:00
|
|
|
|
2009-01-23 00:12:00 +09:00
|
|
|
function title()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-01-23 00:12:00 +09:00
|
|
|
if ($this->page == 1) {
|
|
|
|
return sprintf(_('%s subscriptions'), $this->user->nickname);
|
|
|
|
} else {
|
|
|
|
return sprintf(_('%s subscriptions, page %d'),
|
|
|
|
$this->user->nickname,
|
|
|
|
$this->page);
|
|
|
|
}
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-07-08 18:45:31 +09:00
|
|
|
|
2009-01-23 00:12:00 +09:00
|
|
|
function showPageNotice()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-01-23 00:12:00 +09:00
|
|
|
$user =& common_current_user();
|
|
|
|
if ($user && ($user->id == $this->profile->id)) {
|
|
|
|
$this->element('p', null,
|
|
|
|
_('These are the people whose notices '.
|
|
|
|
'you listen to.'));
|
|
|
|
} else {
|
|
|
|
$this->element('p', null,
|
|
|
|
sprintf(_('These are the people whose '.
|
|
|
|
'notices %s listens to.'),
|
|
|
|
$this->profile->nickname));
|
|
|
|
}
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-12-08 14:55:11 +09:00
|
|
|
|
2009-01-23 00:12:00 +09:00
|
|
|
function showLocalNav()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-01-23 00:12:00 +09:00
|
|
|
$nav = new SubGroupNav($this, $this->user);
|
|
|
|
$nav->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
function showContent()
|
|
|
|
{
|
|
|
|
$offset = ($this->page-1) * PROFILES_PER_PAGE;
|
|
|
|
$limit = PROFILES_PER_PAGE + 1;
|
|
|
|
|
|
|
|
$subscriptions = $this->user->getSubscriptions($offset, $limit);
|
|
|
|
|
|
|
|
if ($subs) {
|
|
|
|
$subscriptions_list = new SubscriptionsList($subscriptions, null, $this);
|
|
|
|
$subscriptions_list->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
$subscriptions->free();
|
|
|
|
|
|
|
|
$this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
|
|
|
|
$this->page, 'subscriptions',
|
|
|
|
array('nickname' => $this->user->nickname));
|
2008-12-08 14:55:11 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-24 04:49:23 +09:00
|
|
|
class SubscriptionsList extends ProfileList
|
|
|
|
{
|
2009-01-23 00:12:00 +09:00
|
|
|
function showOwnerControls($profile)
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
$sub = Subscription::pkeyGet(array('subscriber' => $this->owner->id,
|
|
|
|
'subscribed' => $profile->id));
|
2008-12-12 14:57:13 +09:00
|
|
|
if (!$sub) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->elementStart('form', array('id' => 'subedit-' . $profile->id,
|
2009-01-23 00:12:00 +09:00
|
|
|
'method' => 'post',
|
|
|
|
'class' => 'subedit',
|
|
|
|
'action' => common_local_url('subedit')));
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->hidden('token', common_session_token());
|
|
|
|
$this->hidden('profile', $profile->id);
|
|
|
|
$this->checkbox('jabber', _('Jabber'), $sub->jabber);
|
|
|
|
$this->checkbox('sms', _('SMS'), $sub->sms);
|
|
|
|
$this->submit('save', _('Save'));
|
|
|
|
$this->elementEnd('form');
|
2008-12-08 14:55:11 +09:00
|
|
|
return;
|
|
|
|
}
|
2008-11-20 20:38:39 +09:00
|
|
|
}
|