2018-04-03 21:27:10 +00:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2018 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC 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 Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
// usage: delete_user.php ID
|
|
|
|
// effectively delete the user with given ID
|
|
|
|
// USE THIS WITH EXTREME CAUTION. CAN'T UNDO.
|
|
|
|
|
2018-04-30 22:10:12 +00:00
|
|
|
require_once("../inc/delete_account.inc");
|
2018-04-03 21:27:10 +00:00
|
|
|
require_once("../inc/boinc_db.inc");
|
|
|
|
|
|
|
|
die("Delete this line first\n");
|
2018-05-16 21:08:19 +00:00
|
|
|
$config = get_config();
|
|
|
|
if ( !parse_bool($config, "enable_delete_account") ) {
|
|
|
|
die(tra("This feature is disabled. Please enable it in the config.xml."));
|
|
|
|
}
|
2018-04-03 21:27:10 +00:00
|
|
|
|
|
|
|
$id = (int) $argv[1];
|
|
|
|
|
|
|
|
$user = BoincUser::lookup_id($id);
|
|
|
|
if (!$user) die("no such user\n");
|
|
|
|
|
2018-05-16 21:08:19 +00:00
|
|
|
$retval = delete_account($user);
|
|
|
|
if ( $retval ) {
|
|
|
|
echo tra("User deleted");
|
|
|
|
} else {
|
|
|
|
echo tra("Failed to delete user");
|
|
|
|
}
|
2018-04-03 21:27:10 +00:00
|
|
|
|
|
|
|
?>
|