debian-mirror-gitlab/app/workers/remove_expired_members_worker.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.1 KiB
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
class RemoveExpiredMembersWorker # rubocop:disable Scalability/IdempotentWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
2021-06-08 01:23:25 +05:30
2021-10-27 15:23:28 +05:30
data_consistency :always
2021-04-29 21:17:54 +05:30
include CronjobQueue
2016-09-13 17:45:13 +05:30
2019-12-21 20:55:43 +05:30
feature_category :authentication_and_authorization
2019-12-26 22:10:19 +05:30
worker_resource_boundary :cpu
2019-12-21 20:55:43 +05:30
2021-01-29 00:20:46 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2016-09-13 17:45:13 +05:30
def perform
2021-04-29 21:17:54 +05:30
Member.expired.preload(:user, :source).find_each do |member|
context = {
user: member.user,
# The ApplicationContext will reject type-mismatches. So a GroupMemeber will only populate `namespace`.
# while a `ProjectMember` will populate `project
project: member.source,
namespace: member.source
}
with_context(context) do
Members::DestroyService.new.execute(member, skip_authorization: true)
2021-01-29 00:20:46 +05:30
2021-04-29 21:17:54 +05:30
expired_user = member.user
2021-01-29 00:20:46 +05:30
2021-04-29 21:17:54 +05:30
if expired_user.project_bot?
Users::DestroyService.new(nil).execute(expired_user, skip_authorization: true)
end
2021-01-29 00:20:46 +05:30
end
2021-06-08 01:23:25 +05:30
rescue StandardError => ex
2019-07-07 11:18:12 +05:30
logger.error("Expired Member ID=#{member.id} cannot be removed - #{ex}")
2016-09-13 17:45:13 +05:30
end
end
2021-01-29 00:20:46 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-09-13 17:45:13 +05:30
end