summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-09-23 17:39:14 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-09-23 17:39:14 +0200
commit68b005ca3d4e8ac1184197c7b9c397ce9ee2853a (patch)
tree5c40865f53245e0cb956b557e9115767887fc9ce /bin
parent91a449138eaf4d029775479dd0df02d8ad94cdf2 (diff)
Improve user deletion script by using DB transactions and a transaction-like protocol of plugin hook calls
Diffstat (limited to 'bin')
-rwxr-xr-xbin/deluser.sh28
1 files changed, 25 insertions, 3 deletions
diff --git a/bin/deluser.sh b/bin/deluser.sh
index 9504d5b43..0489f4da4 100755
--- a/bin/deluser.sh
+++ b/bin/deluser.sh
@@ -69,6 +69,7 @@ if (empty($args['host'])) {
// connect to DB
$db = $rcmail->get_dbh();
$db->db_connect('w');
+$transaction = false;
if (!$db->is_connected() || $db->is_error()) {
_die("No DB connection\n" . $db->is_error());
@@ -81,23 +82,44 @@ if (!$user) {
die("User not found.\n");
}
+// inform plugins about approaching user deletion
+$plugin = $rcmail->plugins->exec_hook('user_delete_prepare', array('user' => $user, 'username' => $username, 'host' => $args['host']));
+
// let plugins cleanup their own user-related data
-$plugin = $rcmail->plugins->exec_hook('user_delete', array('user' => $user, 'username' => $username, 'host' => $args['host']));
+if (!$plugin['abort']) {
+ $transaction = $db->startTransaction();
+ $plugin = $rcmail->plugins->exec_hook('user_delete', $plugin);
+}
if ($plugin['abort']) {
+ if ($transaction) {
+ $db->rollbackTransaction();
+ }
_die("User deletion aborted by plugin");
}
// deleting the user record should be sufficient due to ON DELETE CASCADE foreign key references
// but not all database backends actually support this so let's do it by hand
-foreach (array('identities','contacts','contactgroups','dictionaries','cache','cache_index','cache_messages','cache_thread','searches','users') as $table) {
+foreach (array('identities','contacts','contactgroups','dictionary','cache','cache_index','cache_messages','cache_thread','searches','users') as $table) {
$db->query('DELETE FROM ' . $db->table_name($table, true) . ' WHERE `user_id` = ?', $user->ID);
}
if ($db->is_error()) {
+ $rcmail->plugins->exec_hook('user_delete_rollback', $plugin);
_die("DB error occurred: " . $db->is_error());
}
else {
- echo "Successfully deleted user $user->ID\n";
+ // inform plugins about executed user deletion
+ $plugin = $rcmail->plugins->exec_hook('user_delete_commit', $plugin);
+
+ if ($plugin['abort']) {
+ unset($plugin['abort']);
+ $db->rollbackTransaction();
+ $rcmail->plugins->exec_hook('user_delete_rollback', $plugin);
+ }
+ else {
+ $db->endTransaction();
+ echo "Successfully deleted user $user->ID\n";
+ }
}