2018-10-11 16:12:21 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-08 09:07:55 -04:00
|
|
|
module Gitlab
|
|
|
|
module Auth
|
|
|
|
class UserAccessDeniedReason
|
|
|
|
def initialize(user)
|
|
|
|
@user = user
|
|
|
|
end
|
|
|
|
|
|
|
|
def rejection_message
|
|
|
|
case rejection_type
|
|
|
|
when :internal
|
2018-05-24 03:46:30 -04:00
|
|
|
"This action cannot be performed by internal users"
|
2018-05-08 09:07:55 -04:00
|
|
|
when :terms_not_accepted
|
2018-05-24 03:46:30 -04:00
|
|
|
"You (#{@user.to_reference}) must accept the Terms of Service in order to perform this action. "\
|
|
|
|
"Please access GitLab from a web browser to accept these terms."
|
2019-10-09 20:06:44 -04:00
|
|
|
when :deactivated
|
|
|
|
"Your account has been deactivated by your administrator. "\
|
|
|
|
"Please log back in from a web browser to reactivate your account at #{Gitlab.config.gitlab.url}"
|
2018-05-08 09:07:55 -04:00
|
|
|
else
|
2018-05-24 03:46:30 -04:00
|
|
|
"Your account has been blocked."
|
2018-05-08 09:07:55 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def rejection_type
|
|
|
|
if @user.internal?
|
|
|
|
:internal
|
|
|
|
elsif @user.required_terms_not_accepted?
|
|
|
|
:terms_not_accepted
|
2019-10-09 20:06:44 -04:00
|
|
|
elsif @user.deactivated?
|
|
|
|
:deactivated
|
2018-05-08 09:07:55 -04:00
|
|
|
else
|
|
|
|
:blocked
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|