summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessio Caiazza <acaiazza@gitlab.com>2019-12-09 10:03:58 +0000
committerAlessio Caiazza <acaiazza@gitlab.com>2019-12-09 10:03:58 +0000
commit9d5d298714cb0e136c0bb8672a074a4a033befc2 (patch)
tree6571d31a2646fb822995912ff8911d38919cd847
parentaa10b541b6a3fbc7fa712abcc59d073fc8dc620a (diff)
parent47a4357018b79c834971be02fb549206150121c9 (diff)
downloadgitlab-ce-9d5d298714cb0e136c0bb8672a074a4a033befc2.tar.gz
Merge branch 'security-37766-transfer-group-reindex-ce' into 'master'
Trigger Elasticsearch indexing when public group moved to private See merge request gitlab/gitlabhq!3576
-rw-r--r--app/services/groups/transfer_service.rb15
1 files changed, 14 insertions, 1 deletions
diff --git a/app/services/groups/transfer_service.rb b/app/services/groups/transfer_service.rb
index 24813f6ddf9..4e7875e0491 100644
--- a/app/services/groups/transfer_service.rb
+++ b/app/services/groups/transfer_service.rb
@@ -39,9 +39,15 @@ module Groups
ensure_ownership
end
+ post_update_hooks(@updated_project_ids)
+
true
end
+ # Overridden in EE
+ def post_update_hooks(updated_project_ids)
+ end
+
def ensure_allowed_transfer
raise_transfer_error(:group_is_already_root) if group_is_already_root?
raise_transfer_error(:same_parent_as_current) if same_parent?
@@ -96,9 +102,16 @@ module Groups
.where(id: descendants.select(:id))
.update_all(visibility_level: @new_parent_group.visibility_level)
- @group
+ projects_to_update = @group
.all_projects
.where("visibility_level > ?", @new_parent_group.visibility_level)
+
+ # Used in post_update_hooks in EE. Must use pluck (and not select)
+ # here as after we perform the update below we won't be able to find
+ # these records again.
+ @updated_project_ids = projects_to_update.pluck(:id)
+
+ projects_to_update
.update_all(visibility_level: @new_parent_group.visibility_level)
end
# rubocop: enable CodeReuse/ActiveRecord