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

24 lines
533 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-10-21 15:10:03 -04:00
@request = ensure_action_dispatch_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
2017-11-07 13:17:41 -05:00
find_user_from_access_token || find_user_by_rss_token
2017-10-13 20:05:18 -04:00
end
end
end
end