3 * StatusNet, the distributed open-source microblogging tool
5 * Action class to delete a user
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @copyright 2009 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
39 * @author Evan Prodromou <evan@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41 * @link http://status.net/
44 class DeleteuserAction extends ProfileFormAction
49 * Take arguments for running
51 * @param array $args $_REQUEST args
53 * @return boolean success flag
56 function prepare($args)
58 if (!parent::prepare($args)) {
62 $cur = common_current_user();
64 assert(!empty($cur)); // checked by parent
66 if (!$cur->hasRight(Right::DELETEUSER)) {
67 $this->clientError(_('You cannot delete users.'));
71 $this->user = User::staticGet('id', $this->profile->id);
73 if (empty($this->user)) {
74 $this->clientError(_('You can only delete local users.'));
84 * Shows a page with list of favorite notices
86 * @param array $args $_REQUEST args; handled in prepare()
91 function handle($args)
93 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
94 if ($this->arg('no')) {
95 $this->returnToPrevious();
96 } elseif ($this->arg('yes')) {
98 $this->returnToPrevious();
105 function showContent() {
106 $this->areYouSureForm();
110 return _('Delete user');
113 function showNoticeForm() {
120 * Shows a confirmation form.
124 function areYouSureForm()
126 $id = $this->profile->id;
127 $this->elementStart('form', array('id' => 'deleteuser-' . $id,
129 'class' => 'form_settings form_entity_block',
130 'action' => common_local_url('deleteuser')));
131 $this->elementStart('fieldset');
132 $this->hidden('token', common_session_token());
133 $this->element('legend', _('Delete user'));
134 if (Event::handle('StartDeleteUserForm', array($this, $this->user))) {
135 $this->element('p', null,
136 _('Are you sure you want to delete this user? '.
137 'This will clear all data about the user from the '.
138 'database, without a backup.'));
139 $this->element('input', array('id' => 'deleteuserto-' . $id,
140 'name' => 'profileid',
143 foreach ($this->args as $k => $v) {
144 if (substr($k, 0, 9) == 'returnto-') {
145 $this->hidden($k, $v);
148 Event::handle('EndDeleteUserForm', array($this, $this->user));
150 $this->submit('form_action-no',
151 // TRANS: Button label on the delete user form.
153 'submit form_action-primary',
155 // TRANS: Submit button title for 'No' when deleting a user.
156 _('Do not block this user'));
157 $this->submit('form_action-yes',
158 // TRANS: Button label on the delete user form.
160 'submit form_action-secondary',
162 // TRANS: Submit button title for 'Yes' when deleting a user.
163 _('Delete this user'));
164 $this->elementEnd('fieldset');
165 $this->elementEnd('form');
169 * Actually delete a user.
174 function handlePost()
176 if (Event::handle('StartDeleteUser', array($this, $this->user))) {
177 // Mark the account as deleted and shove low-level deletion tasks
178 // to background queues. Removing a lot of posts can take a while...
179 if (!$this->user->hasRole(Profile_role::DELETED)) {
180 $this->user->grantRole(Profile_role::DELETED);
183 $qm = QueueManager::get();
184 $qm->enqueue($this->user, 'deluser');
186 Event::handle('EndDeleteUser', array($this, $this->user));