debian-mirror-gitlab/lib/gitlab/api_authentication/token_locator.rb

47 lines
1.1 KiB
Ruby
Raw Normal View History

2021-03-08 18:12:59 +05:30
# frozen_string_literal: true
module Gitlab
module APIAuthentication
class TokenLocator
UsernameAndPassword = Struct.new(:username, :password)
include ActiveModel::Validations
include ActionController::HttpAuthentication::Basic
attr_reader :location
2021-03-11 19:13:27 +05:30
validates :location, inclusion: { in: %i[http_basic_auth http_token] }
2021-03-08 18:12:59 +05:30
def initialize(location)
@location = location
validate!
end
def extract(request)
case @location
when :http_basic_auth
extract_from_http_basic_auth request
2021-03-11 19:13:27 +05:30
when :http_token
extract_from_http_token request
2021-03-08 18:12:59 +05:30
end
end
private
def extract_from_http_basic_auth(request)
username, password = user_name_and_password(request)
return unless username.present? && password.present?
UsernameAndPassword.new(username, password)
end
2021-03-11 19:13:27 +05:30
def extract_from_http_token(request)
password = request.headers['Authorization']
return unless password.present?
UsernameAndPassword.new(nil, password)
end
2021-03-08 18:12:59 +05:30
end
end
end