2008-06-19 02:13:13 +09:00
|
|
|
<?php
|
2009-01-23 01:19:27 +09:00
|
|
|
/**
|
2009-08-26 07:12:20 +09:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2008-06-19 02:13:13 +09:00
|
|
|
*
|
2009-01-23 01:19:27 +09:00
|
|
|
* List a user's subscribers
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-06-19 02:13:13 +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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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 01:19:27 +09:00
|
|
|
*
|
|
|
|
* @category Social
|
2009-08-26 07:12:20 +09:00
|
|
|
* @package StatusNet
|
2009-08-26 07:19:04 +09:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2009-08-26 07:12:20 +09:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-01-23 01:19:27 +09:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-26 07:16:46 +09:00
|
|
|
* @link http://status.net/
|
2008-06-19 02:13:13 +09:00
|
|
|
*/
|
|
|
|
|
2009-08-26 23:41:36 +09:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-23 01:19:27 +09:00
|
|
|
exit(1);
|
|
|
|
}
|
2008-06-19 02:13:13 +09:00
|
|
|
|
2009-01-23 01:19:27 +09:00
|
|
|
/**
|
|
|
|
* List a user's subscribers
|
|
|
|
*
|
|
|
|
* @category Social
|
2009-08-26 07:12:20 +09:00
|
|
|
* @package StatusNet
|
2009-08-26 07:19:04 +09:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-01-23 01:19:27 +09:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-26 07:16:46 +09:00
|
|
|
* @link http://status.net/
|
2009-01-23 01:19:27 +09:00
|
|
|
*/
|
2008-06-19 02:13:13 +09:00
|
|
|
|
2008-12-24 04:49:23 +09:00
|
|
|
class SubscribersAction extends GalleryAction
|
|
|
|
{
|
2009-01-23 01:19:27 +09:00
|
|
|
function title()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-01-23 01:19:27 +09:00
|
|
|
if ($this->page == 1) {
|
|
|
|
return sprintf(_('%s subscribers'), $this->user->nickname);
|
|
|
|
} else {
|
2010-01-10 09:45:58 +09:00
|
|
|
return sprintf(_('%1$s subscribers, page %2$d'),
|
2009-01-23 01:19:27 +09:00
|
|
|
$this->user->nickname,
|
|
|
|
$this->page);
|
|
|
|
}
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
|
|
|
|
2009-01-23 01:19:27 +09:00
|
|
|
function showPageNotice()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-12-03 02:47:02 +09:00
|
|
|
$user = common_current_user();
|
2009-01-23 01:19:27 +09:00
|
|
|
if ($user && ($user->id == $this->profile->id)) {
|
|
|
|
$this->element('p', null,
|
|
|
|
_('These are the people who listen to '.
|
|
|
|
'your notices.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
} else {
|
2009-01-23 01:19:27 +09:00
|
|
|
$this->element('p', null,
|
|
|
|
sprintf(_('These are the people who '.
|
|
|
|
'listen to %s\'s notices.'),
|
|
|
|
$this->profile->nickname));
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-23 01:19:27 +09:00
|
|
|
function showContent()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-01-29 22:37:40 +09:00
|
|
|
parent::showContent();
|
|
|
|
|
2009-01-23 01:19:27 +09:00
|
|
|
$offset = ($this->page-1) * PROFILES_PER_PAGE;
|
|
|
|
$limit = PROFILES_PER_PAGE + 1;
|
2008-12-24 04:19:07 +09:00
|
|
|
|
2009-01-29 22:37:40 +09:00
|
|
|
$cnt = 0;
|
|
|
|
|
2009-01-23 07:38:10 +09:00
|
|
|
if ($this->tag) {
|
|
|
|
$subscribers = $this->user->getTaggedSubscribers($this->tag, $offset, $limit);
|
|
|
|
} else {
|
|
|
|
$subscribers = $this->user->getSubscribers($offset, $limit);
|
|
|
|
}
|
2008-12-24 04:19:07 +09:00
|
|
|
|
2009-01-23 01:19:27 +09:00
|
|
|
if ($subscribers) {
|
|
|
|
$subscribers_list = new SubscribersList($subscribers, $this->user, $this);
|
2009-01-29 22:37:40 +09:00
|
|
|
$cnt = $subscribers_list->show();
|
2009-04-08 10:12:43 +09:00
|
|
|
if (0 == $cnt) {
|
|
|
|
$this->showEmptyListMessage();
|
|
|
|
}
|
2009-01-23 01:19:27 +09:00
|
|
|
}
|
2008-12-08 14:55:11 +09:00
|
|
|
|
2009-01-23 01:19:27 +09:00
|
|
|
$subscribers->free();
|
|
|
|
|
|
|
|
$this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
|
|
|
|
$this->page, 'subscribers',
|
|
|
|
array('nickname' => $this->user->nickname));
|
2008-12-08 14:55:11 +09:00
|
|
|
}
|
2009-04-08 10:12:43 +09:00
|
|
|
|
|
|
|
function showEmptyListMessage()
|
|
|
|
{
|
|
|
|
if (common_logged_in()) {
|
|
|
|
$current_user = common_current_user();
|
|
|
|
if ($this->user->id === $current_user->id) {
|
|
|
|
$message = _('You have no subscribers. Try subscribing to people you know and they might return the favor');
|
|
|
|
} else {
|
|
|
|
$message = sprintf(_('%s has no subscribers. Want to be the first?'), $this->user->nickname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2009-08-22 05:45:42 +09:00
|
|
|
$message = sprintf(_('%s has no subscribers. Why not [register an account](%%%%action.register%%%%) and be the first?'), $this->user->nickname);
|
2009-04-08 10:12:43 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->elementStart('div', 'guide');
|
|
|
|
$this->raw(common_markup_to_html($message));
|
|
|
|
$this->elementEnd('div');
|
|
|
|
}
|
2009-04-19 04:08:33 +09:00
|
|
|
|
|
|
|
function showSections()
|
|
|
|
{
|
|
|
|
parent::showSections();
|
|
|
|
$cloud = new SubscribersPeopleTagCloudSection($this);
|
|
|
|
$cloud->show();
|
|
|
|
|
|
|
|
$cloud2 = new SubscribersPeopleSelfTagCloudSection($this);
|
|
|
|
$cloud2->show();
|
|
|
|
}
|
2008-12-08 14:55:11 +09:00
|
|
|
}
|
|
|
|
|
2009-06-15 06:52:26 +09:00
|
|
|
class SubscribersList extends SubscriptionList
|
2008-12-24 04:49:23 +09:00
|
|
|
{
|
2009-06-15 06:52:26 +09:00
|
|
|
function newListItem($profile)
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-06-15 06:52:26 +09:00
|
|
|
return new SubscribersListItem($profile, $this->owner, $this->action);
|
2008-12-08 14:55:11 +09:00
|
|
|
}
|
2009-06-15 06:52:26 +09:00
|
|
|
}
|
2009-01-23 18:15:15 +09:00
|
|
|
|
2009-06-15 06:52:26 +09:00
|
|
|
class SubscribersListItem extends SubscriptionListItem
|
|
|
|
{
|
|
|
|
function showActions()
|
2009-01-23 18:15:15 +09:00
|
|
|
{
|
2009-06-15 06:52:26 +09:00
|
|
|
$this->startActions();
|
2010-03-04 05:09:07 +09:00
|
|
|
if (Event::handle('StartProfileListItemActionElements', array($this))) {
|
|
|
|
$this->showSubscribeButton();
|
|
|
|
// Relevant code!
|
|
|
|
$this->showBlockForm();
|
|
|
|
Event::handle('EndProfileListItemActionElements', array($this));
|
|
|
|
}
|
2009-06-15 06:52:26 +09:00
|
|
|
$this->endActions();
|
|
|
|
}
|
|
|
|
|
|
|
|
function showBlockForm()
|
|
|
|
{
|
|
|
|
$user = common_current_user();
|
|
|
|
|
|
|
|
if (!empty($user) && $this->owner->id == $user->id) {
|
2010-04-09 11:06:55 +09:00
|
|
|
$returnto = array('action' => 'subscribers',
|
|
|
|
'nickname' => $this->owner->nickname);
|
|
|
|
$page = $this->out->arg('page');
|
|
|
|
if ($page) {
|
|
|
|
$returnto['param-page'] = $page;
|
|
|
|
}
|
|
|
|
$bf = new BlockForm($this->out, $this->profile, $returnto);
|
2009-06-15 06:52:26 +09:00
|
|
|
$bf->show();
|
|
|
|
}
|
2009-01-23 18:15:15 +09:00
|
|
|
}
|
2010-04-06 00:18:03 +09:00
|
|
|
|
|
|
|
function linkAttributes()
|
|
|
|
{
|
|
|
|
$aAttrs = parent::linkAttributes();
|
|
|
|
|
|
|
|
if (common_config('nofollow', 'subscribers')) {
|
|
|
|
$aAttrs['rel'] .= ' nofollow';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $aAttrs;
|
|
|
|
}
|
|
|
|
|
|
|
|
function homepageAttributes()
|
|
|
|
{
|
2010-04-10 03:11:18 +09:00
|
|
|
$aAttrs = parent::linkAttributes();
|
|
|
|
|
2010-04-06 00:18:03 +09:00
|
|
|
if (common_config('nofollow', 'subscribers')) {
|
|
|
|
$aAttrs['rel'] = 'nofollow';
|
|
|
|
}
|
2010-04-10 03:11:18 +09:00
|
|
|
|
|
|
|
return $aAttrs;
|
2010-04-06 00:18:03 +09:00
|
|
|
}
|
2008-12-08 14:55:11 +09:00
|
|
|
}
|