Sha256: 6261a756474ec4f1e68c6ad2a486f29a0d91a37f975def489bbc0669b3bc959b
Contents?: true
Size: 1.31 KB
Versions: 7
Compression:
Stored size: 1.31 KB
Contents
require 'devise/strategies/base' module Devise module Strategies class Oauth2GrantTypeStrategy < Authenticatable def valid? params[:controller] == 'devise/oauth2_providable/tokens' && request.post? && params[:grant_type] == grant_type end # defined by subclass def grant_type end # defined by subclass def authenticate_grant_type(client) end def authenticate! client_id, client_secret = request.authorization ? decode_credentials : [params[:client_id], params[:client_secret]] client = Devise::Oauth2Providable::Client.find_by_identifier client_id if client && client.secret == client_secret env[Devise::Oauth2Providable::CLIENT_ENV_REF] = client authenticate_grant_type(client) else oauth_error! :invalid_client, 'invalid client credentials' end end # return custom error response in accordance with the oauth spec # see http://tools.ietf.org/html/draft-ietf-oauth-v2-16#section-4.3 def oauth_error!(error_code = :invalid_request, description = nil) body = {:error => error_code} body[:error_description] = description if description custom! [400, {'Content-Type' => 'application/json'}, [body.to_json]] throw :warden end end end end
Version data entries
7 entries across 7 versions & 4 rubygems