class Doorkeeper::OAuth::PreAuthorization

def as_json(_options = nil)

def as_json(_options = nil)
  pre_auth_hash
end

def authorizable?

def authorizable?
  valid?
end

def build_scopes

def build_scopes
  client_scopes = client.scopes
  if client_scopes.blank?
    server.default_scopes.to_s
  else
    server.default_scopes.allowed(client_scopes).to_s
  end
end

def error_response

def error_response
  if error == Errors::InvalidRequest
    OAuth::InvalidRequestResponse.from_request(
      self,
      response_on_fragment: response_on_fragment?,
    )
  else
    OAuth::ErrorResponse.from_request(self, response_on_fragment: response_on_fragment?)
  end
end

def form_post_response?

def form_post_response?
  response_mode == "form_post"
end

def grant_type

def grant_type
  response_type == "code" ? AUTHORIZATION_CODE : IMPLICIT
end

def initialize(server, parameters = {}, resource_owner = nil)

def initialize(server, parameters = {}, resource_owner = nil)
  @server = server
  @client_id = parameters[:client_id]
  @response_type = parameters[:response_type]
  @response_mode = parameters[:response_mode]
  @redirect_uri = parameters[:redirect_uri]
  @scope = parameters[:scope]
  @state = parameters[:state]
  @code_challenge = parameters[:code_challenge]
  @code_challenge_method = parameters[:code_challenge_method]
  @resource_owner = resource_owner
  @custom_access_token_attributes = parameters.slice(*Doorkeeper.config.custom_access_token_attributes).to_h
end

def pre_auth_hash

def pre_auth_hash
  {
    client_id: client.uid,
    redirect_uri: redirect_uri,
    state: state,
    response_type: response_type,
    scope: scope,
    client_name: client.name,
    status: I18n.t("doorkeeper.pre_authorization.status"),
  }
end

def response_on_fragment?

def response_on_fragment?
  return response_type == "token" if response_mode.nil?
  response_mode == "fragment"
end

def scope

def scope
  @scope.presence || (server.default_scopes.presence && build_scopes)
end

def scopes

def scopes
  Scopes.from_string(scope)
end

def validate_client

def validate_client
  @client = OAuth::Client.find(client_id)
  @client.present?
end

def validate_client_id

def validate_client_id
  @missing_param = :client_id if client_id.blank?
  @missing_param.nil?
end

def validate_client_supports_grant_flow

def validate_client_supports_grant_flow
  Doorkeeper.config.allow_grant_flow_for_client?(grant_type, client.application)
end

def validate_code_challenge

def validate_code_challenge
  return true unless Doorkeeper.config.force_pkce?
  return true if client.confidential
  code_challenge.present?
end

def validate_code_challenge_method

def validate_code_challenge_method
  return true unless Doorkeeper.config.access_grant_model.pkce_supported?
  code_challenge.blank? ||
    (code_challenge_method.present? && Doorkeeper.config.pkce_code_challenge_methods_supported.include?(code_challenge_method))
end

def validate_params

def validate_params
  @missing_param = if response_type.blank?
                     :response_type
                   elsif @scope.blank? && server.default_scopes.blank?
                     :scope
                   end
  @missing_param.nil?
end

def validate_redirect_uri

def validate_redirect_uri
  return false if redirect_uri.blank?
  Helpers::URIChecker.valid_for_authorization?(
    redirect_uri,
    client.redirect_uri,
  )
end

def validate_resource_owner_authorize_for_client

def validate_resource_owner_authorize_for_client
  # The `authorize_resource_owner_for_client` config option is used for this validation
  client.application.authorized_for_resource_owner?(@resource_owner)
end

def validate_response_mode

def validate_response_mode
  if response_mode.blank?
    @response_mode = authorization_response_flow.default_response_mode
    return true
  end
  authorization_response_flow.matches_response_mode?(response_mode)
end

def validate_response_type

def validate_response_type
  server.authorization_response_flows.any? do |flow|
    if flow.matches_response_type?(response_type)
      @authorization_response_flow = flow
      true
    end
  end
end

def validate_scopes

def validate_scopes
  Helpers::ScopeChecker.valid?(
    scope_str: scope,
    server_scopes: server.scopes,
    app_scopes: client.scopes,
    grant_type: grant_type,
  )
end