2016-08-13 08:45:31 -04:00
|
|
|
module Users
|
|
|
|
class DestroyService
|
|
|
|
attr_accessor :current_user
|
|
|
|
|
|
|
|
def initialize(current_user)
|
|
|
|
@current_user = current_user
|
|
|
|
end
|
|
|
|
|
2017-06-02 09:18:24 -04:00
|
|
|
# Synchronously destroys +user+
|
|
|
|
#
|
|
|
|
# The operation will fail if the user is the sole owner of any groups. To
|
|
|
|
# force the groups to be destroyed, pass `delete_solo_owned_groups: true` in
|
|
|
|
# +options+.
|
|
|
|
#
|
|
|
|
# The user's contributions will be migrated to a global ghost user. To
|
|
|
|
# force the contributions to be destroyed, pass `hard_delete: true` in
|
|
|
|
# +options+.
|
|
|
|
#
|
|
|
|
# `hard_delete: true` implies `delete_solo_owned_groups: true`. To perform
|
|
|
|
# a hard deletion without destroying solo-owned groups, pass
|
|
|
|
# `delete_solo_owned_groups: false, hard_delete: true` in +options+.
|
2016-08-13 08:45:31 -04:00
|
|
|
def execute(user, options = {})
|
2017-06-02 09:18:24 -04:00
|
|
|
delete_solo_owned_groups = options.fetch(:delete_solo_owned_groups, options[:hard_delete])
|
|
|
|
|
2017-02-17 09:58:12 -05:00
|
|
|
unless Ability.allowed?(current_user, :destroy_user, user)
|
2017-02-04 03:14:17 -05:00
|
|
|
raise Gitlab::Access::AccessDeniedError, "#{current_user} tried to destroy user #{user}!"
|
|
|
|
end
|
|
|
|
|
2017-06-02 09:18:24 -04:00
|
|
|
if !delete_solo_owned_groups && user.solo_owned_groups.present?
|
2016-08-13 08:45:31 -04:00
|
|
|
user.errors[:base] << 'You must transfer ownership or delete groups before you can remove user'
|
|
|
|
return user
|
|
|
|
end
|
|
|
|
|
|
|
|
user.solo_owned_groups.each do |group|
|
|
|
|
Groups::DestroyService.new(group, current_user).execute
|
|
|
|
end
|
|
|
|
|
2017-06-15 08:06:49 -04:00
|
|
|
user.personal_projects.each do |project|
|
2016-08-13 08:45:31 -04:00
|
|
|
# Skip repository removal because we remove directory with namespace
|
|
|
|
# that contain all this repositories
|
2017-03-31 19:59:46 -04:00
|
|
|
::Projects::DestroyService.new(project, current_user, skip_repo: true).execute
|
2016-08-13 08:45:31 -04:00
|
|
|
end
|
|
|
|
|
2017-04-16 11:21:40 -04:00
|
|
|
MigrateToGhostUserService.new(user).execute unless options[:hard_delete]
|
2016-11-11 01:27:43 -05:00
|
|
|
|
2016-08-13 08:45:31 -04:00
|
|
|
# Destroy the namespace after destroying the user since certain methods may depend on the namespace existing
|
|
|
|
namespace = user.namespace
|
|
|
|
user_data = user.destroy
|
|
|
|
namespace.really_destroy!
|
|
|
|
|
|
|
|
user_data
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|