]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/accountprofileblock.php
Merge remote branch 'gitorious/1.0.x' into 1.0.x
[quix0rs-gnu-social.git] / lib / accountprofileblock.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Profile block to show for an account
7  *
8  * PHP version 5
9  *
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.
14  *
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.
19  *
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/>.
22  *
23  * @category  Widget
24  * @package   StatusNet
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/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Profile block to show for an account
39  *
40  * @category  Widget
41  * @package   StatusNet
42  * @author    Evan Prodromou <evan@status.net>
43  * @copyright 2011 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45  * @link      http://status.net/
46  */
47
48 class AccountProfileBlock extends ProfileBlock
49 {
50     protected $profile = null;
51     protected $user    = null;
52
53     function __construct($out, $profile)
54     {
55         parent::__construct($out);
56         $this->profile = $profile;
57         $this->user    = User::staticGet('id', $profile->id);
58     }
59
60     function avatar()
61     {
62         $avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE);
63         if (empty($avatar)) {
64             $avatar = $this->profile->getAvatar(73);
65         }
66         return (!empty($avatar)) ?
67             $avatar->displayUrl() :
68             Avatar::defaultImage(AVATAR_PROFILE_SIZE);
69     }
70
71     function name()
72     {
73         return $this->profile->getBestName();
74     }
75
76     function url()
77     {
78         return $this->profile->profileurl;
79     }
80
81     function location()
82     {
83         return $this->profile->location;
84     }
85
86     function homepage()
87     {
88         return $this->profile->homepage;
89     }
90
91     function description()
92     {
93         return $this->profile->bio;
94     }
95
96     function showActions()
97     {
98         if (Event::handle('StartProfilePageActionsSection', array($this->out, $this->profile))) {
99
100             if ($this->profile->hasRole(Profile_role::DELETED)) {
101                 $this->out->elementStart('div', 'entity_actions');
102                 // TRANS: H2 for user actions in a profile.
103                 $this->out->element('h2', null, _('User actions'));
104                 $this->out->elementStart('ul');
105                 $this->out->elementStart('p', array('class' => 'profile_deleted'));
106                 // TRANS: Text shown in user profile of not yet compeltely deleted users.
107                 $this->out->text(_('User deletion in progress...'));
108                 $this->out->elementEnd('p');
109                 $this->out->elementEnd('ul');
110                 $this->out->elementEnd('div');
111                 return;
112             }
113
114             $cur = common_current_user();
115
116             $this->out->elementStart('div', 'entity_actions');
117             // TRANS: H2 for entity actions in a profile.
118             $this->out->element('h2', null, _('User actions'));
119             $this->out->elementStart('ul');
120
121             if (Event::handle('StartProfilePageActionsElements', array($this->out, $this->profile))) {
122                 if (empty($cur)) { // not logged in
123                     if (Event::handle('StartProfileRemoteSubscribe', array($this->out, $this->profile))) {
124                         $this->out->elementStart('li', 'entity_subscribe');
125                         $this->showRemoteSubscribeLink();
126                         $this->out->elementEnd('li');
127                         Event::handle('EndProfileRemoteSubscribe', array($this->out, $this->profile));
128                     }
129                 } else {
130                     if ($cur->id == $this->profile->id) { // your own page
131                         $this->out->elementStart('li', 'entity_edit');
132                         $this->out->element('a', array('href' => common_local_url('profilesettings'),
133                                                   // TRANS: Link title for link on user profile.
134                                                   'title' => _('Edit profile settings')),
135                                        // TRANS: Link text for link on user profile.
136                                        _('Edit'));
137                         $this->out->elementEnd('li');
138                     } else { // someone else's page
139
140                         // subscribe/unsubscribe button
141
142                         $this->out->elementStart('li', 'entity_subscribe');
143
144                         if ($cur->isSubscribed($this->profile)) {
145                             $usf = new UnsubscribeForm($this->out, $this->profile);
146                             $usf->show();
147                         } else if ($cur->hasPendingSubscription($this->profile)) {
148                             $sf = new CancelSubscriptionForm($this->out, $this->profile);
149                             $sf->show();
150                         } else {
151                             $sf = new SubscribeForm($this->out, $this->profile);
152                             $sf->show();
153                         }
154                         $this->out->elementEnd('li');
155
156                         if ($cur->mutuallySubscribed($this->profile)) {
157
158                             // message
159
160                             $this->out->elementStart('li', 'entity_send-a-message');
161                             $this->out->element('a', array('href' => common_local_url('newmessage', array('to' => $this->user->id)),
162                                                       // TRANS: Link title for link on user profile.
163                                                       'title' => _('Send a direct message to this user')),
164                                            // TRANS: Link text for link on user profile.
165                                            _('Message'));
166                             $this->out->elementEnd('li');
167
168                             // nudge
169
170                             if ($this->user && $this->user->email && $this->user->emailnotifynudge) {
171                                 $this->out->elementStart('li', 'entity_nudge');
172                                 $nf = new NudgeForm($this->out, $this->user);
173                                 $nf->show();
174                                 $this->out->elementEnd('li');
175                             }
176                         }
177
178                         // return-to args, so we don't have to keep re-writing them
179
180                         list($action, $r2args) = $this->out->returnToArgs();
181
182                         // push the action into the list
183
184                         $r2args['action'] = $action;
185
186                         // block/unblock
187
188                         $blocked = $cur->hasBlocked($this->profile);
189                         $this->out->elementStart('li', 'entity_block');
190                         if ($blocked) {
191                             $ubf = new UnblockForm($this->out, $this->profile, $r2args);
192                             $ubf->show();
193                         } else {
194                             $bf = new BlockForm($this->out, $this->profile, $r2args);
195                             $bf->show();
196                         }
197                         $this->out->elementEnd('li');
198
199                         // Some actions won't be applicable to non-local users.
200                         $isLocal = !empty($this->user);
201
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);
213                                     $usf->show();
214                                 } else {
215                                     $sf = new SandboxForm($this->out, $this->profile, $r2args);
216                                     $sf->show();
217                                 }
218                                 $this->out->elementEnd('li');
219                             }
220
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);
225                                     $usf->show();
226                                 } else {
227                                     $sf = new SilenceForm($this->out, $this->profile, $r2args);
228                                     $sf->show();
229                                 }
230                                 $this->out->elementEnd('li');
231                             }
232
233                             if ($isLocal && $cur->hasRight(Right::DELETEUSER)) {
234                                 $this->out->elementStart('li', 'entity_delete');
235                                 $df = new DeleteUserForm($this->out, $this->profile, $r2args);
236                                 $df->show();
237                                 $this->out->elementEnd('li');
238                             }
239                             $this->out->elementEnd('ul');
240                             $this->out->elementEnd('li');
241                         }
242
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');
254                         }
255                     }
256                 }
257
258                 Event::handle('EndProfilePageActionsElements', array($this->out, $this->profile));
259             }
260
261             $this->out->elementEnd('ul');
262             $this->out->elementEnd('div');
263
264             Event::handle('EndProfilePageActionsSection', array($this->out, $this->profile));
265         }
266     }
267
268     function roleButton($role, $label)
269     {
270         list($action, $r2args) = $this->out->returnToArgs();
271         $r2args['action'] = $action;
272
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);
276             $rf->show();
277         } else {
278             $rf = new GrantRoleForm($role, $label, $this->out, $this->profile, $r2args);
279             $rf->show();
280         }
281         $this->out->elementEnd('li');
282     }
283
284     function showRemoteSubscribeLink()
285     {
286         $url = common_local_url('remotesubscribe',
287                                 array('nickname' => $this->profile->nickname));
288         $this->out->element('a', array('href' => $url,
289                                   'class' => 'entity_remote_subscribe'),
290                        // TRANS: Link text for link that will subscribe to a remote profile.
291                        _('Subscribe'));
292     }
293 }