2014-12-19 09:15:29 -05:00
|
|
|
# Guard API with OAuth 2.0 Access Token
|
|
|
|
|
|
|
|
require 'rack/oauth2'
|
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
module API
|
|
|
|
module APIGuard
|
|
|
|
extend ActiveSupport::Concern
|
2014-12-19 09:15:29 -05:00
|
|
|
|
2017-02-21 18:32:18 -05:00
|
|
|
PRIVATE_TOKEN_HEADER = "HTTP_PRIVATE_TOKEN".freeze
|
2016-11-22 04:04:23 -05:00
|
|
|
PRIVATE_TOKEN_PARAM = :private_token
|
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
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 09:15:29 -05:00
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
# Must yield access token to store it in the env
|
|
|
|
request.access_token
|
|
|
|
end
|
2014-12-19 09:15:29 -05:00
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
helpers HelperMethods
|
2014-12-19 09:15:29 -05:00
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
install_error_responders(base)
|
|
|
|
end
|
2014-12-19 09:15:29 -05:00
|
|
|
|
2017-06-20 03:40:24 -04:00
|
|
|
class_methods do
|
2017-06-20 08:00:57 -04:00
|
|
|
# Set the authorization scope(s) allowed for an API endpoint.
|
2017-06-20 03:40:24 -04:00
|
|
|
#
|
2017-06-20 08:00:57 -04:00
|
|
|
# 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.
|
2017-06-20 03:40:24 -04:00
|
|
|
def allow_access_with_scope(scopes, options = {})
|
2017-06-23 07:18:44 -04:00
|
|
|
Array(scopes).each do |scope|
|
2017-06-28 03:12:23 -04:00
|
|
|
allowed_scopes << Scope.new(scope, options)
|
2017-06-23 07:18:44 -04:00
|
|
|
end
|
2017-06-20 03:40:24 -04:00
|
|
|
end
|
|
|
|
|
2017-06-23 07:18:44 -04:00
|
|
|
def allowed_scopes
|
|
|
|
@scopes ||= []
|
2017-06-20 03:40:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
# Helper Methods for Grape Endpoint
|
|
|
|
module HelperMethods
|
2017-10-12 08:38:39 -04:00
|
|
|
def find_current_user!
|
|
|
|
user = find_user_from_access_token || find_user_from_warden
|
|
|
|
return unless user
|
2017-09-27 09:56:48 -04:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
forbidden!('User is blocked') unless Gitlab::UserAccess.new(user).allowed? && user.can?(:access_api)
|
2017-09-27 09:56:48 -04:00
|
|
|
|
|
|
|
user
|
|
|
|
end
|
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
def access_token
|
|
|
|
return @access_token if defined?(@access_token)
|
2017-09-27 09:56:48 -04:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
@access_token = find_oauth_access_token || find_personal_access_token
|
|
|
|
end
|
2017-09-27 09:56:48 -04:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
def validate_access_token!(scopes: [])
|
|
|
|
return unless access_token
|
2017-09-27 09:56:48 -04:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
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
|
|
|
|
end
|
2017-09-27 09:56:48 -04:00
|
|
|
end
|
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def find_user_from_access_token
|
2017-09-27 09:56:48 -04:00
|
|
|
return unless access_token
|
2016-11-24 02:37:22 -05:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
validate_access_token!
|
|
|
|
|
|
|
|
access_token.user || raise(UnauthorizedError)
|
2017-09-27 09:56:48 -04:00
|
|
|
end
|
2016-11-24 02:37:22 -05:00
|
|
|
|
2017-09-27 09:56:48 -04:00
|
|
|
# Check the Rails session for valid authentication details
|
|
|
|
def find_user_from_warden
|
|
|
|
warden.try(:authenticate) if verified_request?
|
|
|
|
end
|
2017-09-27 09:31:52 -04:00
|
|
|
|
2017-09-27 09:56:48 -04:00
|
|
|
def warden
|
|
|
|
env['warden']
|
|
|
|
end
|
2014-12-19 09:15:29 -05:00
|
|
|
|
2017-09-27 09:56:48 -04:00
|
|
|
# Check if the request is GET/HEAD, or if CSRF token is valid.
|
|
|
|
def verified_request?
|
|
|
|
Gitlab::RequestForgeryProtection.verified?(env)
|
2016-04-15 11:35:40 -04:00
|
|
|
end
|
2014-12-19 09:15:29 -05:00
|
|
|
|
2017-09-27 09:56:48 -04:00
|
|
|
def find_oauth_access_token
|
|
|
|
token = Doorkeeper::OAuth::Token.from_request(doorkeeper_request, *Doorkeeper.configuration.access_token_methods)
|
2017-10-12 08:38:39 -04:00
|
|
|
return unless token
|
2016-11-22 04:04:23 -05:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
# Expiration, revocation and scopes are verified in `find_user_by_access_token`
|
|
|
|
access_token = OauthAccessToken.by_token(token)
|
|
|
|
raise UnauthorizedError unless access_token
|
2016-11-22 04:04:23 -05:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
access_token.revoke_previous_refresh_token!
|
|
|
|
access_token
|
2016-11-22 04:04:23 -05:00
|
|
|
end
|
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
def find_personal_access_token
|
|
|
|
token = (params[PRIVATE_TOKEN_PARAM] || env[PRIVATE_TOKEN_HEADER]).to_s
|
|
|
|
return unless token.present?
|
2017-09-27 09:31:52 -04:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
# Expiration, revocation and scopes are verified in `find_user_by_access_token`
|
|
|
|
access_token = PersonalAccessToken.find_by(token: token)
|
|
|
|
raise UnauthorizedError unless access_token
|
2017-09-27 09:31:52 -04:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
access_token
|
2016-04-15 11:35:40 -04:00
|
|
|
end
|
2014-12-19 09:15:29 -05:00
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
def doorkeeper_request
|
|
|
|
@doorkeeper_request ||= ActionDispatch::Request.new(env)
|
|
|
|
end
|
2017-09-27 09:56:48 -04:00
|
|
|
|
|
|
|
# An array of scopes that were registered (using `allow_access_with_scope`)
|
|
|
|
# for the current endpoint class. It also returns scopes registered on
|
|
|
|
# `API::API`, since these are meant to apply to all API routes.
|
|
|
|
def scopes_registered_for_endpoint
|
|
|
|
@scopes_registered_for_endpoint ||=
|
|
|
|
begin
|
|
|
|
endpoint_classes = [options[:for].presence, ::API::API].compact
|
|
|
|
endpoint_classes.reduce([]) do |memo, endpoint|
|
|
|
|
if endpoint.respond_to?(:allowed_scopes)
|
|
|
|
memo.concat(endpoint.allowed_scopes)
|
|
|
|
else
|
|
|
|
memo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-12-19 09:15:29 -05:00
|
|
|
end
|
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
module ClassMethods
|
|
|
|
private
|
2014-12-19 09:15:29 -05:00
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
def install_error_responders(base)
|
2017-02-21 18:33:53 -05:00
|
|
|
error_classes = [MissingTokenError, TokenNotFoundError,
|
2017-02-22 10:10:32 -05:00
|
|
|
ExpiredError, RevokedError, InsufficientScopeError]
|
2014-12-19 09:15:29 -05:00
|
|
|
|
2017-08-10 12:39:26 -04:00
|
|
|
base.__send__(:rescue_from, *error_classes, oauth2_bearer_token_error_handler) # rubocop:disable GitlabSecurity/PublicSend
|
2016-04-15 11:35:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def oauth2_bearer_token_error_handler
|
2017-03-31 11:11:28 -04:00
|
|
|
proc do |e|
|
2016-04-15 11:35:40 -04:00
|
|
|
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
|
2015-02-03 00:22:57 -05:00
|
|
|
end
|
2014-12-19 09:15:29 -05:00
|
|
|
end
|
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
#
|
|
|
|
# Exceptions
|
|
|
|
#
|
2014-12-19 09:15:29 -05:00
|
|
|
|
2017-03-01 06:00:37 -05:00
|
|
|
MissingTokenError = Class.new(StandardError)
|
|
|
|
TokenNotFoundError = Class.new(StandardError)
|
|
|
|
ExpiredError = Class.new(StandardError)
|
|
|
|
RevokedError = Class.new(StandardError)
|
2017-09-27 09:31:52 -04:00
|
|
|
UnauthorizedError = Class.new(StandardError)
|
2014-12-19 09:15:29 -05:00
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
class InsufficientScopeError < StandardError
|
|
|
|
attr_reader :scopes
|
|
|
|
def initialize(scopes)
|
2017-10-12 08:38:39 -04:00
|
|
|
@scopes = scopes.map { |s| s.try(:name) || s }
|
2016-04-15 11:35:40 -04:00
|
|
|
end
|
2014-12-19 09:15:29 -05:00
|
|
|
end
|
|
|
|
end
|
2015-02-02 22:30:09 -05:00
|
|
|
end
|