summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-10-13 15:18:32 -0400
committerEvan Prodromou <evan@status.net>2010-10-13 15:18:32 -0400
commitddb60a8191de23fc11f6711954575ac7b6f49998 (patch)
tree46532e67a29fdd46a1877a80c253445c09e98a67 /classes
parentf11c1c77cab7d7310ec0d2c17bc6f35c491f2871 (diff)
parent6c77d86b7f39c35eac0fcc3f13c0beba3e694318 (diff)
Merge remote branch 'gitorious/0.9.x' into 0.9.x
Diffstat (limited to 'classes')
-rw-r--r--classes/Profile.php1
-rw-r--r--classes/User_group.php42
2 files changed, 43 insertions, 0 deletions
diff --git a/classes/Profile.php b/classes/Profile.php
index 3844077e6..12ce5d9b6 100644
--- a/classes/Profile.php
+++ b/classes/Profile.php
@@ -854,6 +854,7 @@ class Profile extends Memcached_DataObject
case Right::SANDBOXUSER:
case Right::SILENCEUSER:
case Right::DELETEUSER:
+ case Right::DELETEGROUP:
$result = $this->hasRole(Profile_role::MODERATOR);
break;
case Right::CONFIGURESITE:
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();
+ }
}