gitlab-org--gitlab-foss/lib/api/api_guard.rb

181 lines
5.5 KiB
Ruby
Raw Normal View History

2014-12-19 14:15:29 +00:00
# Guard API with OAuth 2.0 Access Token
require 'rack/oauth2'
module API
module APIGuard
extend ActiveSupport::Concern
2014-12-19 14:15:29 +00:00
2017-02-21 23:32:18 +00:00
PRIVATE_TOKEN_HEADER = "HTTP_PRIVATE_TOKEN".freeze
PRIVATE_TOKEN_PARAM = :private_token
included do |base|
# OAuth2 Resource Server Authentication
use Rack::OAuth2::Server::Resource::Bearer, 'The API' do |request|
# The authenticator only fetches the raw token string
2014-12-19 14:15:29 +00:00
# Must yield access token to store it in the env
request.access_token
end
2014-12-19 14:15:29 +00:00
helpers HelperMethods
2014-12-19 14:15:29 +00:00
install_error_responders(base)
end
2014-12-19 14:15:29 +00:00
class_methods do
# Set the authorization scope(s) allowed for an API endpoint.
#
# A call to this method maps the given scope(s) to the current API
# endpoint class. If this method is called multiple times on the same class,
# the scopes are all aggregated.
def allow_access_with_scope(scopes, options = {})
Array(scopes).each do |scope|
allowed_scopes << OpenStruct.new(name: scope.to_sym, if: options[:if])
end
end
def allowed_scopes
@scopes ||= []
end
end
# Helper Methods for Grape Endpoint
module HelperMethods
# Invokes the doorkeeper guard.
#
# If token is presented and valid, then it sets @current_user.
#
# If the token does not have sufficient scopes to cover the requred scopes,
# then it raises InsufficientScopeError.
#
# If the token is expired, then it raises ExpiredError.
#
# If the token is revoked, then it raises RevokedError.
#
# If the token is not found (nil), then it returns nil
#
# Arguments:
#
# scopes: (optional) scopes required for this guard.
# Defaults to empty array.
#
def doorkeeper_guard(scopes: [])
access_token = find_access_token
return nil unless access_token
case AccessTokenValidationService.new(access_token, request: request).validate(scopes: scopes)
when AccessTokenValidationService::INSUFFICIENT_SCOPE
raise InsufficientScopeError.new(scopes)
when AccessTokenValidationService::EXPIRED
raise ExpiredError
when AccessTokenValidationService::REVOKED
raise RevokedError
when AccessTokenValidationService::VALID
@current_user = User.find(access_token.resource_owner_id)
end
end
2014-12-19 14:15:29 +00:00
def find_user_by_private_token(scopes: [])
token_string = (params[PRIVATE_TOKEN_PARAM] || env[PRIVATE_TOKEN_HEADER]).to_s
2014-12-19 14:15:29 +00:00
return nil unless token_string.present?
2014-12-19 14:15:29 +00:00
find_user_by_authentication_token(token_string) || find_user_by_personal_access_token(token_string, scopes)
2014-12-19 14:15:29 +00:00
end
def current_user
@current_user
end
2014-12-19 14:15:29 +00:00
private
2014-12-19 14:15:29 +00:00
def find_user_by_authentication_token(token_string)
User.find_by_authentication_token(token_string)
end
def find_user_by_personal_access_token(token_string, scopes)
access_token = PersonalAccessToken.active.find_by_token(token_string)
return unless access_token
if AccessTokenValidationService.new(access_token, request: request).include_any_scope?(scopes)
User.find(access_token.user_id)
end
end
def find_access_token
@access_token ||= Doorkeeper.authenticate(doorkeeper_request, Doorkeeper.configuration.access_token_methods)
end
2014-12-19 14:15:29 +00:00
def doorkeeper_request
@doorkeeper_request ||= ActionDispatch::Request.new(env)
end
2014-12-19 14:15:29 +00:00
end
module ClassMethods
private
2014-12-19 14:15:29 +00:00
def install_error_responders(base)
2017-02-21 23:33:53 +00:00
error_classes = [MissingTokenError, TokenNotFoundError,
2017-02-22 15:10:32 +00:00
ExpiredError, RevokedError, InsufficientScopeError]
2014-12-19 14:15:29 +00:00
base.send :rescue_from, *error_classes, oauth2_bearer_token_error_handler
end
def oauth2_bearer_token_error_handler
2017-03-31 15:11:28 +00:00
proc do |e|
response =
case e
when MissingTokenError
Rack::OAuth2::Server::Resource::Bearer::Unauthorized.new
when TokenNotFoundError
Rack::OAuth2::Server::Resource::Bearer::Unauthorized.new(
:invalid_token,
"Bad Access Token.")
when ExpiredError
Rack::OAuth2::Server::Resource::Bearer::Unauthorized.new(
:invalid_token,
"Token is expired. You can either do re-authorization or token refresh.")
when RevokedError
Rack::OAuth2::Server::Resource::Bearer::Unauthorized.new(
:invalid_token,
"Token was revoked. You have to re-authorize from the user.")
when InsufficientScopeError
# FIXME: ForbiddenError (inherited from Bearer::Forbidden of Rack::Oauth2)
# does not include WWW-Authenticate header, which breaks the standard.
Rack::OAuth2::Server::Resource::Bearer::Forbidden.new(
:insufficient_scope,
Rack::OAuth2::Server::Resource::ErrorMethods::DEFAULT_DESCRIPTION[:insufficient_scope],
{ scope: e.scopes })
end
response.finish
end
end
2014-12-19 14:15:29 +00:00
end
#
# Exceptions
#
2014-12-19 14:15:29 +00:00
MissingTokenError = Class.new(StandardError)
TokenNotFoundError = Class.new(StandardError)
ExpiredError = Class.new(StandardError)
RevokedError = Class.new(StandardError)
2014-12-19 14:15:29 +00:00
class InsufficientScopeError < StandardError
attr_reader :scopes
def initialize(scopes)
@scopes = scopes
end
2014-12-19 14:15:29 +00:00
end
end
2015-02-03 03:30:09 +00:00
end