2020-03-26 05:07:52 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class UpdateHighestRoleWorker
|
|
|
|
include ApplicationWorker
|
|
|
|
|
|
|
|
feature_category :authentication_and_authorization
|
|
|
|
urgency :high
|
|
|
|
weight 2
|
|
|
|
|
|
|
|
idempotent!
|
|
|
|
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
|
|
def perform(user_id)
|
2020-04-01 11:07:45 -04:00
|
|
|
user = User.find_by(id: user_id)
|
2020-03-26 05:07:52 -04:00
|
|
|
|
2020-04-01 11:07:45 -04:00
|
|
|
return unless user.present?
|
|
|
|
|
|
|
|
if user.active? && user.user_type.nil? && !user.internal?
|
|
|
|
Users::UpdateHighestMemberRoleService.new(user).execute
|
|
|
|
else
|
|
|
|
UserHighestRole.where(user_id: user_id).delete_all
|
|
|
|
end
|
2020-03-26 05:07:52 -04:00
|
|
|
end
|
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
|
|
end
|