83232be0e1
* add parent_id field to namespaces table to store relation with nested groups * create routes table to keep information about full path of every group and project * project/group lookup by full path from routes table Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
29 lines
904 B
Ruby
29 lines
904 B
Ruby
class DestroyGroupService
|
|
attr_accessor :group, :current_user
|
|
|
|
def initialize(group, user)
|
|
@group, @current_user = group, user
|
|
end
|
|
|
|
def async_execute
|
|
# Soft delete via paranoia gem
|
|
group.destroy
|
|
job_id = GroupDestroyWorker.perform_async(group.id, current_user.id)
|
|
Rails.logger.info("User #{current_user.id} scheduled a deletion of group ID #{group.id} with job ID #{job_id}")
|
|
end
|
|
|
|
def execute
|
|
group.projects.each do |project|
|
|
# Execute the destruction of the models immediately to ensure atomic cleanup.
|
|
# Skip repository removal because we remove directory with namespace
|
|
# that contain all these repositories
|
|
::Projects::DestroyService.new(project, current_user, skip_repo: true).execute
|
|
end
|
|
|
|
group.children.each do |group|
|
|
DestroyGroupService.new(group, current_user).async_execute
|
|
end
|
|
|
|
group.really_destroy!
|
|
end
|
|
end
|