summaryrefslogtreecommitdiff
path: root/app/services/destroy_group_service.rb
blob: 2316c57bf1e0d81c7919d68ad5e054724333dcba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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