Sha256: 7253947bcb90ce6d0d7a1b79963d3a30a590721c1c8125e7b5b210375eb132df
Contents?: true
Size: 1.06 KB
Versions: 4
Compression:
Stored size: 1.06 KB
Contents
# frozen_string_literal: true module Doorkeeper module OAuth class CodeResponse < BaseResponse include OAuth::Helpers attr_accessor :pre_auth, :auth, :response_on_fragment def initialize(pre_auth, auth, options = {}) @pre_auth = pre_auth @auth = auth @response_on_fragment = options[:response_on_fragment] end def redirectable? true end def redirect_uri if URIChecker.oob_uri? pre_auth.redirect_uri auth.oob_redirect elsif response_on_fragment Authorization::URIBuilder.uri_with_fragment( pre_auth.redirect_uri, access_token: auth.token.plaintext_token, token_type: auth.token.token_type, expires_in: auth.token.expires_in_seconds, state: pre_auth.state, ) else Authorization::URIBuilder.uri_with_query( pre_auth.redirect_uri, code: auth.token.plaintext_token, state: pre_auth.state, ) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems