gnu-social/lib/accountprofileblock.php

294 lines
12 KiB
PHP
Raw Normal View History

2009-11-04 13:11:17 +00:00
<?php
/**
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2011, StatusNet, Inc.
2009-11-04 13:11:17 +00:00
*
* Profile block to show for an account
2009-11-04 13:11:17 +00:00
*
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
2009-11-04 13:11:17 +00: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/>.
*
* @category Widget
2009-11-04 13:11:17 +00:00
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @copyright 2011 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
2009-11-04 13:11:17 +00:00
* @link http://status.net/
*/
if (!defined('GNUSOCIAL')) { exit(1); }
2009-11-04 13:11:17 +00:00
/**
* Profile block to show for an account
2009-11-04 13:11:17 +00:00
*
* @category Widget
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @copyright 2011 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
2009-11-04 13:11:17 +00:00
*/
class AccountProfileBlock extends ProfileBlock
2009-11-04 13:11:17 +00:00
{
protected $profile = null;
protected $user = null;
2009-11-04 13:11:17 +00:00
function __construct(Action $out, Profile $profile)
2009-11-04 13:11:17 +00:00
{
parent::__construct($out);
2009-11-04 13:11:17 +00:00
$this->profile = $profile;
try {
$this->user = $this->profile->getUser();
} catch (NoSuchUserException $e) {
// The profile presented is non-local
assert(!$this->profile->isLocal());
}
2009-11-04 13:11:17 +00:00
}
function name()
2009-11-04 13:11:17 +00:00
{
return $this->profile->getBestName();
2009-11-04 13:11:17 +00:00
}
function url()
2009-11-04 13:11:17 +00:00
{
return $this->profile->profileurl;
2009-11-04 13:11:17 +00:00
}
function location()
2009-11-04 13:11:17 +00:00
{
return $this->profile->location;
2009-11-04 13:11:17 +00:00
}
function homepage()
2009-11-04 13:11:17 +00:00
{
return $this->profile->homepage;
2009-11-04 13:11:17 +00:00
}
function description()
2009-11-04 13:11:17 +00:00
{
return $this->profile->bio;
2009-11-04 13:11:17 +00:00
}
Squashed commit of the following: commit 7ef19ab918cc9805abb8d01e8220ae4ed63155d7 Author: Evan Prodromou <evan@status.net> Date: Mon Jul 9 12:53:29 2012 -0400 Show link to facebook account on profile block If you've logged in with Facebook, show a link to that account on the profile block. commit b56967479c009d702150791944dbd80746ee3ba1 Author: Evan Prodromou <evan@status.net> Date: Mon Jul 9 12:28:34 2012 -0400 Add profile link from profile block to Twitter account Add a profile link to Twitter for accounts that are linked via Twitter login. commit 181e441fd03c6034e737f6a3dae115557aa3e1aa Author: Evan Prodromou <evan@status.net> Date: Mon Jul 9 11:57:56 2012 -0400 OpenID shows other account links commit ef7357883dad9e34af2746e1c6a41ea826d7c992 Author: Evan Prodromou <evan@status.net> Date: Mon Jul 9 11:53:12 2012 -0400 Add a profile link for OpenIDs OpenID plugin now adds a profile link for each OpenID on the account. commit 093d26b95bc453686d24c42f5a8f4739cb338fd2 Author: Evan Prodromou <evan@status.net> Date: Mon Jul 9 11:15:18 2012 -0400 Better array access commit 49d47257efdcae2101b589a1f825872bdd70667c Author: Evan Prodromou <evan@status.net> Date: Mon Jul 9 10:57:16 2012 -0400 Show list of other accounts in profile block We add a group of "rel-me" links to other user accounts on the Web. This is mostly useful for when you've used OpenID, Twitter, or Facebook login to associate a remote account. There's an extension to the profileblock recipe to show the links as little icons; there's a new hook in accountprofileblock to get such links from plugins. There's a modification to the base theme to show the icons correctly (I think).
2012-07-09 17:55:05 +01:00
function otherProfiles()
{
$others = array();
Event::handle('OtherAccountProfiles', array($this->profile, &$others));
return $others;
}
function showTags()
{
$cur = common_current_user();
$self_tags = new SelftagsWidget($this->out, $this->profile, $this->profile);
$self_tags->show();
if ($cur) {
// don't show self-tags again
if ($cur->id != $this->profile->id && $cur->getProfile()->canTag($this->profile)) {
$tags = new PeopletagsWidget($this->out, $cur, $this->profile);
$tags->show();
}
}
}
function showActions()
2009-11-04 13:11:17 +00:00
{
if (Event::handle('StartProfilePageActionsSection', array($this->out, $this->profile))) {
2011-03-06 19:09:24 +00:00
if ($this->profile->hasRole(Profile_role::DELETED)) {
$this->out->elementStart('div', 'entity_actions');
// TRANS: H2 for user actions in a profile.
$this->out->element('h2', null, _('User actions'));
$this->out->elementStart('ul');
$this->out->elementStart('p', array('class' => 'profile_deleted'));
// TRANS: Text shown in user profile of not yet compeltely deleted users.
$this->out->text(_('User deletion in progress...'));
$this->out->elementEnd('p');
$this->out->elementEnd('ul');
$this->out->elementEnd('div');
return;
2009-11-04 13:11:17 +00:00
}
$cur = common_current_user();
$this->out->elementStart('div', 'entity_actions');
// TRANS: H2 for entity actions in a profile.
2009-11-04 13:11:17 +00:00
$this->out->element('h2', null, _('User actions'));
$this->out->elementStart('ul');
if (Event::handle('StartProfilePageActionsElements', array($this->out, $this->profile))) {
2009-11-04 13:11:17 +00:00
if (empty($cur)) { // not logged in
if (Event::handle('StartProfileRemoteSubscribe', array($this->out, $this->profile))) {
Event::handle('EndProfileRemoteSubscribe', array($this->out, $this->profile));
}
2009-11-04 13:11:17 +00:00
} else {
if ($cur->id == $this->profile->id) { // your own page
$this->out->elementStart('li', 'entity_edit');
$this->out->element('a', array('href' => common_local_url('profilesettings'),
// TRANS: Link title for link on user profile.
'title' => _('Edit profile settings.')),
// TRANS: Link text for link on user profile.
_m('BUTTON','Edit'));
2009-11-04 13:11:17 +00:00
$this->out->elementEnd('li');
} else { // someone else's page
// subscribe/unsubscribe button
$this->out->elementStart('li', 'entity_subscribe');
if ($cur->isSubscribed($this->profile)) {
$usf = new UnsubscribeForm($this->out, $this->profile);
$usf->show();
} else if ($cur->hasPendingSubscription($this->profile)) {
$sf = new CancelSubscriptionForm($this->out, $this->profile);
$sf->show();
2009-11-04 13:11:17 +00:00
} else {
$sf = new SubscribeForm($this->out, $this->profile);
$sf->show();
}
$this->out->elementEnd('li');
if ($this->profile->isLocal() && $cur->mutuallySubscribed($this->profile)) {
2009-11-04 13:11:17 +00:00
// nudge
if ($this->user->email && $this->user->emailnotifynudge) {
2009-11-04 13:11:17 +00:00
$this->out->elementStart('li', 'entity_nudge');
$nf = new NudgeForm($this->out, $this->user);
$nf->show();
$this->out->elementEnd('li');
}
}
// return-to args, so we don't have to keep re-writing them
list($action, $r2args) = $this->out->returnToArgs();
// push the action into the list
$r2args['action'] = $action;
2009-11-04 13:11:17 +00:00
// block/unblock
$blocked = $cur->hasBlocked($this->profile);
$this->out->elementStart('li', 'entity_block');
if ($blocked) {
$ubf = new UnblockForm($this->out, $this->profile, $r2args);
2009-11-04 13:11:17 +00:00
$ubf->show();
} else {
$bf = new BlockForm($this->out, $this->profile, $r2args);
2009-11-04 13:11:17 +00:00
$bf->show();
}
$this->out->elementEnd('li');
// Some actions won't be applicable to non-local users.
$isLocal = !empty($this->user);
if ($cur->hasRight(Right::SANDBOXUSER) ||
$cur->hasRight(Right::SILENCEUSER) ||
$cur->hasRight(Right::DELETEUSER)) {
$this->out->elementStart('li', 'entity_moderation');
// TRANS: Label text on user profile to select a user role.
$this->out->element('p', null, _('Moderate'));
$this->out->elementStart('ul');
if ($cur->hasRight(Right::SANDBOXUSER)) {
$this->out->elementStart('li', 'entity_sandbox');
if ($this->profile->isSandboxed()) {
$usf = new UnSandboxForm($this->out, $this->profile, $r2args);
$usf->show();
} else {
$sf = new SandboxForm($this->out, $this->profile, $r2args);
$sf->show();
}
$this->out->elementEnd('li');
}
if ($cur->hasRight(Right::SILENCEUSER)) {
$this->out->elementStart('li', 'entity_silence');
if ($this->profile->isSilenced()) {
$usf = new UnSilenceForm($this->out, $this->profile, $r2args);
$usf->show();
} else {
$sf = new SilenceForm($this->out, $this->profile, $r2args);
$sf->show();
}
$this->out->elementEnd('li');
}
if ($isLocal && $cur->hasRight(Right::DELETEUSER)) {
$this->out->elementStart('li', 'entity_delete');
$df = new DeleteUserForm($this->out, $this->profile, $r2args);
$df->show();
$this->out->elementEnd('li');
}
$this->out->elementEnd('ul');
$this->out->elementEnd('li');
}
if ($isLocal && $cur->hasRight(Right::GRANTROLE)) {
$this->out->elementStart('li', 'entity_role');
// TRANS: Label text on user profile to select a user role.
$this->out->element('p', null, _('User role'));
$this->out->elementStart('ul');
// TRANS: Role that can be set for a user profile.
$this->roleButton('administrator', _m('role', 'Administrator'));
// TRANS: Role that can be set for a user profile.
$this->roleButton('moderator', _m('role', 'Moderator'));
$this->out->elementEnd('ul');
$this->out->elementEnd('li');
}
2009-11-04 13:11:17 +00:00
}
}
Event::handle('EndProfilePageActionsElements', array($this->out, $this->profile));
2009-11-04 13:11:17 +00:00
}
$this->out->elementEnd('ul');
$this->out->elementEnd('div');
Event::handle('EndProfilePageActionsSection', array($this->out, $this->profile));
2009-11-04 13:11:17 +00:00
}
}
function roleButton($role, $label)
{
list($action, $r2args) = $this->out->returnToArgs();
$r2args['action'] = $action;
$this->out->elementStart('li', "entity_role_$role");
if ($this->profile->hasRole($role)) {
$rf = new RevokeRoleForm($role, $label, $this->out, $this->profile, $r2args);
$rf->show();
} else {
$rf = new GrantRoleForm($role, $label, $this->out, $this->profile, $r2args);
$rf->show();
}
$this->out->elementEnd('li');
}
function show()
{
$this->out->elementStart('div', 'profile_block account_profile_block section');
if (Event::handle('StartShowAccountProfileBlock', array($this->out, $this->profile))) {
parent::show();
Event::handle('EndShowAccountProfileBlock', array($this->out, $this->profile));
}
$this->out->elementEnd('div');
}
2009-11-04 13:11:17 +00:00
}