diff options
author | Brion Vibber <brion@pobox.com> | 2010-10-12 16:33:36 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-10-12 16:33:36 -0700 |
commit | 5f81f6119be8ec0a100cefcaa6f886d16f3be5c5 (patch) | |
tree | a48949c9c2adb8bd8dac06ce633baa6e69f07147 /classes/User_group.php | |
parent | aa02f6020e16f722d5194ad97e66a57ab1d8c29c (diff) | |
parent | 112b6c40793a18262425ca039e4fe4a6eb68bce4 (diff) |
Merge branch '0.9.x' into 1.0.x
Diffstat (limited to 'classes/User_group.php')
-rw-r--r-- | classes/User_group.php | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/classes/User_group.php b/classes/User_group.php index cfdcef290..1f7005785 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -547,4 +547,46 @@ class User_group extends Memcached_DataObject $group->query('COMMIT'); return $group; } + + /** + * Handle cascading deletion, on the model of notice and profile. + * + * This should handle freeing up cached entries for the group's + * id, nickname, URI, and aliases. There may be other areas that + * are not de-cached in the UI, including the sidebar lists on + * GroupsAction + */ + function delete() + { + if ($this->id) { + // Safe to delete in bulk for now + $related = array('Group_inbox', + 'Group_block', + 'Group_member', + 'Related_group'); + Event::handle('UserGroupDeleteRelated', array($this, &$related)); + foreach ($related as $cls) { + $inst = new $cls(); + $inst->group_id = $this->id; + $inst->delete(); + } + + // And related groups in the other direction... + $inst = new Related_group(); + $inst->related_group_id = $this->id; + $inst->delete(); + + // Aliases and the local_group entry need to be cleared explicitly + // or we'll miss clearing some cache keys; that can make it hard + // to create a new group with one of those names or aliases. + $this->setAliases(array()); + $local = Local_group::staticGet('group_id', $this->id); + if ($local) { + $local->delete(); + } + } else { + common_log(LOG_WARN, "Ambiguous user_group->delete(); skipping related tables."); + } + parent::delete(); + } } |