diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-15 15:08:16 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-15 16:08:00 -0700 |
commit | 441e52718e4db4eb45bd5c76c5af446496f56f96 (patch) | |
tree | cc64045cb8368ecdf05ab8dcc87ef252965c3805 /lib/queuemanager.php | |
parent | 9ec24f59ca61bbbb45667b548a872e724f31ab3e (diff) |
Background deletion of user accounts. Notices are deleted in chunks, then the user itself when they're all gone.
While deletion is in progress, the account is locked with the 'deleted' role, which disables all actions with rights control.
Todo:
* Pretty up the notice on the profile page about the pending delete. Show status?
* Possibly more thorough account disabling, such as disallowing all use for login and access.
* Improve error recovery; worst case is that an account gets left locked in 'deleted' state but the queue jobs have gotten dropped out. This would leave the username in use and any undeleted notices in place.
Diffstat (limited to 'lib/queuemanager.php')
-rw-r--r-- | lib/queuemanager.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/queuemanager.php b/lib/queuemanager.php index 87bd356aa..0829c8a8b 100644 --- a/lib/queuemanager.php +++ b/lib/queuemanager.php @@ -264,6 +264,9 @@ abstract class QueueManager extends IoManager $this->connect('sms', 'SmsQueueHandler'); } + // Background user management tasks... + $this->connect('deluser', 'DelUserQueueHandler'); + // Broadcasting profile updates to OMB remote subscribers $this->connect('profile', 'ProfileQueueHandler'); |