Class: Grape::ErrorFormatter::Base
- Inherits:
-
Object
- Object
- Grape::ErrorFormatter::Base
- Defined in:
- lib/grape/error_formatter/base.rb
Class Method Summary collapse
- .call(message, backtrace, options = {}, env = nil, original_exception = nil) ⇒ Object
- .format_structured_message(_structured_message) ⇒ Object
- .inherited(klass) ⇒ Object
- .present(message, env) ⇒ Object
- .wrap_message(message) ⇒ Object
Class Method Details
.call(message, backtrace, options = {}, env = nil, original_exception = nil) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/grape/error_formatter/base.rb', line 7 def call(, backtrace, = {}, env = nil, original_exception = nil) merge_backtrace = backtrace.present? && .dig(:rescue_options, :backtrace) merge_original_exception = original_exception && .dig(:rescue_options, :original_exception) = (present(, env)) if .is_a?(Hash) [:backtrace] = backtrace if merge_backtrace [:original_exception] = original_exception.inspect if merge_original_exception end () end |
.format_structured_message(_structured_message) ⇒ Object
57 58 59 |
# File 'lib/grape/error_formatter/base.rb', line 57 def () raise NotImplementedError end |
.inherited(klass) ⇒ Object
61 62 63 64 |
# File 'lib/grape/error_formatter/base.rb', line 61 def inherited(klass) super ErrorFormatter.register(klass) end |
.present(message, env) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/grape/error_formatter/base.rb', line 20 def present(, env) = {} = if .is_a?(Hash) = .dup [:with] = .delete(:with) end presenter = env[Grape::Env::API_ENDPOINT].entity_class_for_obj(, ) 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 = { env: env } [:version] = env[Grape::Env::API_VERSION] if env.key?(Grape::Env::API_VERSION) = presenter.represent(, ).serializable_hash end end |
.wrap_message(message) ⇒ Object
51 52 53 54 55 |
# File 'lib/grape/error_formatter/base.rb', line 51 def () return if .is_a?(Hash) { message: } end |