Sha256: b538f10b8f56f7f19761b9030691f61ad5989154acca7609ef9641f1bd92b778

Contents?: true

Size: 1.34 KB

Versions: 15

Compression:

Stored size: 1.34 KB

Contents

# frozen_string_literal: true

module Grape
  module ErrorFormatter
    module Base
      def present(message, env)
        present_options = {}
        presented_message = message
        if presented_message.is_a?(Hash)
          presented_message = presented_message.dup
          present_options[:with] = presented_message.delete(:with)
        end

        presenter = env[Grape::Env::API_ENDPOINT].entity_class_for_obj(presented_message, present_options)

        unless presenter || env[Grape::Env::GRAPE_ROUTING_ARGS].nil?
          # env['api.endpoint'].route does not work when the error occurs within a middleware
          # the Endpoint does not have a valid env at this moment
          http_codes = env[Grape::Env::GRAPE_ROUTING_ARGS][:route_info].http_codes || []

          found_code = http_codes.find do |http_code|
            (http_code[0].to_i == env[Grape::Env::API_ENDPOINT].status) && http_code[2].respond_to?(:represent)
          end if env[Grape::Env::API_ENDPOINT].request

          presenter = found_code[2] if found_code
        end

        if presenter
          embeds = { env: env }
          embeds[:version] = env[Grape::Env::API_VERSION] if env[Grape::Env::API_VERSION]
          presented_message = presenter.represent(presented_message, embeds).serializable_hash
        end

        presented_message
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
grape-1.7.1 lib/grape/error_formatter/base.rb
grape-1.7.0 lib/grape/error_formatter/base.rb
grape-1.6.2 lib/grape/error_formatter/base.rb
grape-1.6.1 lib/grape/error_formatter/base.rb
grape-1.6.0 lib/grape/error_formatter/base.rb
grape-1.5.3 lib/grape/error_formatter/base.rb
grape-1.5.2 lib/grape/error_formatter/base.rb
grape-1.5.1 lib/grape/error_formatter/base.rb
grape-1.5.0 lib/grape/error_formatter/base.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/grape-1.4.0/lib/grape/error_formatter/base.rb
grape-1.4.0 lib/grape/error_formatter/base.rb
grape-1.3.3 lib/grape/error_formatter/base.rb
grape-1.3.2 lib/grape/error_formatter/base.rb
grape-1.3.1 lib/grape/error_formatter/base.rb
grape-1.3.0 lib/grape/error_formatter/base.rb