Class: Himari::Services::OidcAuthorizationEndpoint

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

Defined Under Namespace

Classes: ConsentRequired, ReauthenticationRequired

Constant Summary collapse

SUPPORTED_RESPONSE_TYPES =

TODO: share with oidc metadata

['code']

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of OidcAuthorizationEndpoint.

Parameters:



31
32
33
34
35
36
37
# File 'lib/himari/services/oidc_authorization_endpoint.rb', line 31

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

Instance Method Details

#app(env) ⇒ Object



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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/himari/services/oidc_authorization_endpoint.rb', line 48

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

    given_redirect_uri = req.redirect_uri&.to_s
    res.redirect_uri = if given_redirect_uri && !given_redirect_uri.empty?
      # Raise before recording the redirect_uri so we never redirect errors to an unverified URI.
      next req.bad_request!(:invalid_request, '"redirect_uri" mismatch') unless @client.redirect_uri_covers?(given_redirect_uri)

      given_redirect_uri
    elsif @client.redirect_uris.size == 1 && @client.redirect_uris.first.is_a?(String)
      @client.redirect_uris.first
    else
      next req.bad_request!(:invalid_request, '"redirect_uri" missing')
    end
    # rack-oauth2 redirects subsequent errors back to the verified redirect_uri via this accessor.
    req.verified_redirect_uri = res.redirect_uri

    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
    req.bad_request!(:invalid_request, 'prompt=none should not contain any other value') if req.prompt.include?('none') && req.prompt.any? { |x| x != 'none' }
    raise ReauthenticationRequired if req.prompt.include?('login') || req.prompt.include?('select_account')

    # Drop scopes this client does not recognise before they reach consent or the grant.
    scopes = @client.filter_scopes(req.scope)

    # Consent gate. Clients granted skip_consent (the default for dynamically/metadata-
    # registered clients) bypass it; prompt=consent forces the page regardless.
    if !@client.skip_consent || req.prompt.include?('consent')
      case @consent
      when :approve
        # consent given; fall through and grant
      when :deny
        next req.access_denied!
      else
        # prompt=none forbids interaction (OIDC §3.1.2.1), so surface the error via redirect
        # instead of rendering the page.
        next req.consent_required! if req.prompt.include?('none')

        raise ConsentRequired.new(client: @client, scopes: scopes)
      end
    end

    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.scopes = scopes
      @authz.openid = scopes.include?('openid')
      @authz.offline_access = scopes.include?('offline_access')
      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?
      elsif @client.require_pkce
        next req.bad_request!(:invalid_request, 'PKCE is mandatory')
      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



39
40
41
42
43
44
45
46
# File 'lib/himari/services/oidc_authorization_endpoint.rb', line 39

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