Class: Himari::Services::OidcAuthorizationEndpoint

Inherits:
Object
  • Object
show all
Defined in:
lib/himari/services/oidc_authorization_endpoint.rb

Constant Summary collapse

SUPPORTED_RESPONSE_TYPES =

TODO: share with oidc metadata

['code']

Instance Method Summary collapse

Constructor Details

#initialize(authz:, client:, storage:, logger: nil) ⇒ OidcAuthorizationEndpoint

Returns a new instance of OidcAuthorizationEndpoint.

Parameters:



14
15
16
17
18
19
# File 'lib/himari/services/oidc_authorization_endpoint.rb', line 14

def initialize(authz:, client:, storage:, logger: nil)
  @authz = authz
  @client = client
  @storage = storage
  @logger = logger
end

Instance Method Details

#app(env) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/himari/services/oidc_authorization_endpoint.rb', line 30

def app(env)
  Rack::OAuth2::Server::Authorize.new do |req, res|
    # sanity check
    unless @client.id == req.client_id
      @logger&.warn(Himari::LogLine.new('OidcAuthorizationEndpoint: @client.id != req.client_id', req: env['himari.request_as_log'], known_client: @client.id, given_client: req.client_id))
      next req.bad_request!
    end
    raise "[BUG] client.id != authz.cilent_id" unless @authz.client_id == @client.id
    res.redirect_uri = req.verify_redirect_uri!(@client.redirect_uris)

    req.unsupported_response_type! if res.protocol_params_location == :fragment
    req.bad_request!(:request_uri_not_supported, "Request Object is not implemented") if req.request_uri || req.request

    requested_response_types = [*req.response_type]
    unless SUPPORTED_RESPONSE_TYPES.include?(requested_response_types.map(&:to_s).join(' '))
      next req.unsupported_response_type!
    end

    if requested_response_types.include?(:code)
      @authz.redirect_uri = res.redirect_uri
      @authz.nonce = req.nonce

      @authz.openid = req.scope.include?('openid')
      if req.code_challenge && req.code_challenge_method
        @authz.code_challenge = req.code_challenge
        @authz.code_challenge_method = req.code_challenge_method || 'plain'
        next req.bad_request!(:invalid_request, 'Invalid PKCE parameters') unless @authz.pkce_valid_request?
      end

      @storage.put_authorization(@authz)
      res.code = @authz.code

      @logger&.debug(Himari::LogLine.new('OidcAuthorizationEndpoint: grant code', req: env['himari.request_as_log'], client: @client.as_log, claims: @authz.claims, code: @authz.code))
    end

    # if requested_response_types.include?(:token)
    #   token = AccessToken.from_authz(@authz)
    #   @storage.put_token(token)
    #   res.access_token = token.format.to_s
    # end

    # if requested_response_types.include?(:id_token)
    #   @id_token.nonce = req.nonce
    #   res.id_token = @id_token.to_jwt
    # end

    @logger&.info(Himari::LogLine.new('OidcAuthorizationEndpoint: authorized', req: env['himari.request_as_log'], client: @client.as_log, claims: @authz.claims, redirect_uri: @authz.redirect_uri, code_dgst: Digest::SHA256.hexdigest(@authz.code)))
    res.approve!
  end
end

#call(env) ⇒ Object



21
22
23
24
25
26
27
28
# File 'lib/himari/services/oidc_authorization_endpoint.rb', line 21

def call(env)
  app(env).call(env)
rescue Rack::OAuth2::Server::Abstract::Error => e
  @logger&.warn(Himari::LogLine.new('OidcAuthorizationEndpoint: returning error', req: env['himari.request_as_log'], err: e.class.inspect, err_content: e.protocol_params))
  # XXX: finish???? https://github.com/nov/rack-oauth2/blob/v2.2.0/lib/rack/oauth2/server/authorize/error.rb#L19
  # Call https://github.com/nov/rack-oauth2/blob/v2.2.0/lib/rack/oauth2/server/abstract/error.rb#L25
  Rack::OAuth2::Server::Abstract::Error.instance_method(:finish).bind(e).call
end