gitlab-org--gitlab-foss/lib/gitlab/auth/user_auth_finders.rb

122 lines
3.8 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-11-07 09:52:05 +00:00
module Gitlab
module Auth
AuthenticationError = Class.new(StandardError)
MissingTokenError = Class.new(AuthenticationError)
TokenNotFoundError = Class.new(AuthenticationError)
ExpiredError = Class.new(AuthenticationError)
RevokedError = Class.new(AuthenticationError)
UnauthorizedError = Class.new(AuthenticationError)
class InsufficientScopeError < AuthenticationError
2017-11-16 16:03:19 +00:00
attr_reader :scopes
def initialize(scopes)
@scopes = scopes.map { |s| s.try(:name) || s }
end
end
2017-11-07 09:52:05 +00:00
module UserAuthFinders
2017-11-17 09:09:56 +00:00
include Gitlab::Utils::StrongMemoize
2017-11-08 18:41:07 +00:00
PRIVATE_TOKEN_HEADER = 'HTTP_PRIVATE_TOKEN'.freeze
PRIVATE_TOKEN_PARAM = :private_token
2017-11-07 09:52:05 +00:00
# Check the Rails session for valid authentication details
2017-11-07 18:17:41 +00:00
def find_user_from_warden
current_request.env['warden']&.authenticate if verified_request?
2017-11-07 09:52:05 +00:00
end
def find_user_from_feed_token
return unless rss_request? || ics_request?
2017-11-07 09:52:05 +00:00
# NOTE: feed_token was renamed from rss_token but both needs to be supported because
# users might have already added the feed to their RSS reader before the rename
token = current_request.params[:feed_token].presence || current_request.params[:rss_token].presence
2017-11-08 18:41:07 +00:00
return unless token
2017-11-07 09:52:05 +00:00
User.find_by_feed_token(token) || raise(UnauthorizedError)
2017-11-07 09:52:05 +00:00
end
2017-11-07 18:17:41 +00:00
def find_user_from_access_token
return unless access_token
2017-11-07 09:52:05 +00:00
2017-11-07 18:17:41 +00:00
validate_access_token!
2017-11-07 09:52:05 +00:00
2017-11-16 14:39:30 +00:00
access_token.user || raise(UnauthorizedError)
2017-11-07 18:17:41 +00:00
end
2017-11-07 09:52:05 +00:00
2017-11-07 18:17:41 +00:00
def validate_access_token!(scopes: [])
2017-11-08 18:41:07 +00:00
return unless access_token
case AccessTokenValidationService.new(access_token, request: request).validate(scopes: scopes)
when AccessTokenValidationService::INSUFFICIENT_SCOPE
2017-11-16 14:39:30 +00:00
raise InsufficientScopeError.new(scopes)
2017-11-08 18:41:07 +00:00
when AccessTokenValidationService::EXPIRED
2017-11-16 14:39:30 +00:00
raise ExpiredError
2017-11-08 18:41:07 +00:00
when AccessTokenValidationService::REVOKED
2017-11-16 14:39:30 +00:00
raise RevokedError
2017-11-08 18:41:07 +00:00
end
2017-11-07 09:52:05 +00:00
end
2017-11-07 18:17:41 +00:00
private
2017-11-07 09:52:05 +00:00
def route_authentication_setting
return {} unless respond_to?(:route_setting)
route_setting(:authentication) || {}
end
2017-11-07 18:17:41 +00:00
def access_token
2017-11-17 09:09:56 +00:00
strong_memoize(:access_token) do
find_oauth_access_token || find_personal_access_token
end
2017-11-07 18:17:41 +00:00
end
2017-11-10 10:41:33 +00:00
def find_personal_access_token
token =
current_request.params[PRIVATE_TOKEN_PARAM].presence ||
current_request.env[PRIVATE_TOKEN_HEADER].presence
2017-11-08 18:41:07 +00:00
return unless token
2017-11-07 18:17:41 +00:00
# Expiration, revocation and scopes are verified in `validate_access_token!`
PersonalAccessToken.find_by_token(token) || raise(UnauthorizedError)
end
2017-11-07 09:52:05 +00:00
def find_oauth_access_token
token = Doorkeeper::OAuth::Token.from_request(current_request, *Doorkeeper.configuration.access_token_methods)
2017-11-07 18:17:41 +00:00
return unless token
2017-11-07 09:52:05 +00:00
2017-11-07 18:17:41 +00:00
# Expiration, revocation and scopes are verified in `validate_access_token!`
2017-11-10 10:12:37 +00:00
oauth_token = OauthAccessToken.by_token(token)
2017-11-16 14:39:30 +00:00
raise UnauthorizedError unless oauth_token
2017-11-10 10:12:37 +00:00
oauth_token.revoke_previous_refresh_token!
oauth_token
2017-11-07 09:52:05 +00:00
end
# Check if the request is GET/HEAD, or if CSRF token is valid.
def verified_request?
Gitlab::RequestForgeryProtection.verified?(current_request.env)
2017-11-07 09:52:05 +00:00
end
def ensure_action_dispatch_request(request)
2018-01-15 09:09:21 +00:00
ActionDispatch::Request.new(request.env.dup)
2017-11-07 09:52:05 +00:00
end
def current_request
@current_request ||= ensure_action_dispatch_request(request)
end
def rss_request?
current_request.path.ends_with?('.atom') || current_request.format.atom?
end
def ics_request?
current_request.path.ends_with?('.ics') || current_request.format.ics?
end
2017-11-07 09:52:05 +00:00
end
end
end