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

34 lines
738 B
Ruby
Raw Normal View History

2017-10-13 20:05:18 -04:00
# Use for authentication only, in particular for Rack::Attack.
# Does not perform authorization of scopes, etc.
module Gitlab
module Auth
class RequestAuthenticator
2017-11-07 04:52:05 -05:00
include UserAuthFinders
attr_reader :request
2017-10-13 20:05:18 -04:00
def initialize(request)
2017-11-08 13:41:07 -05:00
@request = request
2017-10-13 20:05:18 -04:00
end
def user
2017-11-07 13:17:41 -05:00
find_sessionless_user || find_user_from_warden
2017-10-13 20:05:18 -04:00
end
def find_sessionless_user
find_user_from_access_token || find_user_from_feed_token
rescue Gitlab::Auth::AuthenticationError
2017-11-08 13:41:07 -05:00
nil
2017-10-13 20:05:18 -04:00
end
def valid_access_token?(scopes: [])
validate_access_token!(scopes: scopes)
true
rescue Gitlab::Auth::AuthenticationError
false
end
2017-10-13 20:05:18 -04:00
end
end
end