3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2011, StatusNet, Inc.
6 * Profile block to show for an account
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * @author Evan Prodromou <evan@status.net>
26 * @copyright 2011 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28 * @link http://status.net/
31 if (!defined('GNUSOCIAL')) { exit(1); }
34 * Profile block to show for an account
38 * @author Evan Prodromou <evan@status.net>
39 * @copyright 2011 StatusNet, Inc.
40 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
41 * @link http://status.net/
43 class AccountProfileBlock extends ProfileBlock
45 protected $profile = null;
46 protected $user = null;
48 function __construct(Action $out, Profile $profile)
50 parent::__construct($out);
51 $this->profile = $profile;
53 $this->user = $this->profile->getUser();
54 } catch (NoSuchUserException $e) {
55 // The profile presented is non-local
56 assert(!$this->profile->isLocal());
62 return $this->profile->getBestName();
67 return $this->profile->profileurl;
72 return $this->profile->location;
77 return $this->profile->homepage;
80 function description()
82 return $this->profile->bio;
85 function otherProfiles()
89 Event::handle('OtherAccountProfiles', array($this->profile, &$others));
96 $cur = common_current_user();
98 $self_tags = new SelftagsWidget($this->out, $this->profile, $this->profile);
102 // don't show self-tags again
103 if ($cur->id != $this->profile->id && $cur->getProfile()->canTag($this->profile)) {
104 $tags = new PeopletagsWidget($this->out, $cur, $this->profile);
110 function showActions()
112 if (Event::handle('StartProfilePageActionsSection', array($this->out, $this->profile))) {
114 if ($this->profile->hasRole(Profile_role::DELETED)) {
115 $this->out->elementStart('div', 'entity_actions');
116 // TRANS: H2 for user actions in a profile.
117 $this->out->element('h2', null, _('User actions'));
118 $this->out->elementStart('ul');
119 $this->out->elementStart('p', array('class' => 'profile_deleted'));
120 // TRANS: Text shown in user profile of not yet compeltely deleted users.
121 $this->out->text(_('User deletion in progress...'));
122 $this->out->elementEnd('p');
123 $this->out->elementEnd('ul');
124 $this->out->elementEnd('div');
128 $cur = common_current_user();
130 $this->out->elementStart('div', 'entity_actions');
131 // TRANS: H2 for entity actions in a profile.
132 $this->out->element('h2', null, _('User actions'));
133 $this->out->elementStart('ul');
135 if (Event::handle('StartProfilePageActionsElements', array($this->out, $this->profile))) {
136 if (empty($cur)) { // not logged in
137 if (Event::handle('StartProfileRemoteSubscribe', array($this->out, $this->profile))) {
138 Event::handle('EndProfileRemoteSubscribe', array($this->out, $this->profile));
141 if ($cur->id == $this->profile->id) { // your own page
142 $this->out->elementStart('li', 'entity_edit');
143 $this->out->element('a', array('href' => common_local_url('profilesettings'),
144 // TRANS: Link title for link on user profile.
145 'title' => _('Edit profile settings.')),
146 // TRANS: Link text for link on user profile.
147 _m('BUTTON','Edit'));
148 $this->out->elementEnd('li');
149 } else { // someone else's page
151 // subscribe/unsubscribe button
153 $this->out->elementStart('li', 'entity_subscribe');
155 if ($cur->isSubscribed($this->profile)) {
156 $usf = new UnsubscribeForm($this->out, $this->profile);
158 } else if ($cur->hasPendingSubscription($this->profile)) {
159 $sf = new CancelSubscriptionForm($this->out, $this->profile);
162 $sf = new SubscribeForm($this->out, $this->profile);
165 $this->out->elementEnd('li');
167 if ($this->profile->isLocal() && $cur->mutuallySubscribed($this->profile)) {
170 if ($this->user->email && $this->user->emailnotifynudge) {
171 $this->out->elementStart('li', 'entity_nudge');
172 $nf = new NudgeForm($this->out, $this->user);
174 $this->out->elementEnd('li');
178 // return-to args, so we don't have to keep re-writing them
180 list($action, $r2args) = $this->out->returnToArgs();
182 // push the action into the list
184 $r2args['action'] = $action;
188 $blocked = $cur->hasBlocked($this->profile);
189 $this->out->elementStart('li', 'entity_block');
191 $ubf = new UnblockForm($this->out, $this->profile, $r2args);
194 $bf = new BlockForm($this->out, $this->profile, $r2args);
197 $this->out->elementEnd('li');
199 // Some actions won't be applicable to non-local users.
200 $isLocal = !empty($this->user);
202 if ($cur->hasRight(Right::SANDBOXUSER) ||
203 $cur->hasRight(Right::SILENCEUSER) ||
204 $cur->hasRight(Right::DELETEUSER)) {
205 $this->out->elementStart('li', 'entity_moderation');
206 // TRANS: Label text on user profile to select a user role.
207 $this->out->element('p', null, _('Moderate'));
208 $this->out->elementStart('ul');
209 if ($cur->hasRight(Right::SANDBOXUSER)) {
210 $this->out->elementStart('li', 'entity_sandbox');
211 if ($this->profile->isSandboxed()) {
212 $usf = new UnSandboxForm($this->out, $this->profile, $r2args);
215 $sf = new SandboxForm($this->out, $this->profile, $r2args);
218 $this->out->elementEnd('li');
221 if ($cur->hasRight(Right::SILENCEUSER)) {
222 $this->out->elementStart('li', 'entity_silence');
223 if ($this->profile->isSilenced()) {
224 $usf = new UnSilenceForm($this->out, $this->profile, $r2args);
227 $sf = new SilenceForm($this->out, $this->profile, $r2args);
230 $this->out->elementEnd('li');
233 if ($isLocal && $cur->hasRight(Right::DELETEUSER)) {
234 $this->out->elementStart('li', 'entity_delete');
235 $df = new DeleteUserForm($this->out, $this->profile, $r2args);
237 $this->out->elementEnd('li');
239 $this->out->elementEnd('ul');
240 $this->out->elementEnd('li');
243 if ($isLocal && $cur->hasRight(Right::GRANTROLE)) {
244 $this->out->elementStart('li', 'entity_role');
245 // TRANS: Label text on user profile to select a user role.
246 $this->out->element('p', null, _('User role'));
247 $this->out->elementStart('ul');
248 // TRANS: Role that can be set for a user profile.
249 $this->roleButton('administrator', _m('role', 'Administrator'));
250 // TRANS: Role that can be set for a user profile.
251 $this->roleButton('moderator', _m('role', 'Moderator'));
252 $this->out->elementEnd('ul');
253 $this->out->elementEnd('li');
258 Event::handle('EndProfilePageActionsElements', array($this->out, $this->profile));
261 $this->out->elementEnd('ul');
262 $this->out->elementEnd('div');
264 Event::handle('EndProfilePageActionsSection', array($this->out, $this->profile));
268 function roleButton($role, $label)
270 list($action, $r2args) = $this->out->returnToArgs();
271 $r2args['action'] = $action;
273 $this->out->elementStart('li', "entity_role_$role");
274 if ($this->profile->hasRole($role)) {
275 $rf = new RevokeRoleForm($role, $label, $this->out, $this->profile, $r2args);
278 $rf = new GrantRoleForm($role, $label, $this->out, $this->profile, $r2args);
281 $this->out->elementEnd('li');
286 $this->out->elementStart('div', 'profile_block account_profile_block section');
287 if (Event::handle('StartShowAccountProfileBlock', array($this->out, $this->profile))) {
289 Event::handle('EndShowAccountProfileBlock', array($this->out, $this->profile));
291 $this->out->elementEnd('div');