discourse/lib/json_error.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.4 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module JsonError
2017-09-06 10:21:07 -04:00
def create_errors_json(obj, opts = nil)
opts ||= {}
errors = create_errors_array obj
2017-09-06 10:21:07 -04:00
errors[:error_type] = opts[:type] if opts[:type]
errors[:extras] = opts[:extras] if opts[:extras]
errors
end
private
def create_errors_array(obj)
# If we're passed a string, assume that is the error message
return { errors: [obj] } if obj.is_a?(String)
# If it's an AR exception target the record
obj = obj.record if obj.is_a?(ActiveRecord::RecordInvalid)
# If it looks like an activerecord object, extract its messages
return { errors: obj.errors.full_messages } if obj.respond_to?(:errors) && obj.errors.present?
# If we're passed an array, it's an array of error messages
return { errors: obj.map(&:to_s) } if obj.is_a?(Array) && obj.present?
if obj.is_a?(Exception)
message = obj.cause.message.presence || obj.cause.class.name if obj.cause
message = obj.message.presence || obj.class.name if message.blank?
return { errors: [message] } if message.present?
end
2019-05-22 10:39:08 -04:00
return { errors: [I18n.t("not_found")] } if obj.is_a?(HasErrors) && obj.not_found
2019-05-22 08:18:38 -04:00
# Log a warning (unless obj is nil)
Rails.logger.warn("create_errors_json called with unrecognized type: #{obj.inspect}") if obj
# default to a generic error
JsonError.generic_error
end
def self.generic_error
{ errors: [I18n.t("js.generic_error")] }
end
end