2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-04-02 13:22:10 -04:00
|
|
|
module JsonError
|
|
|
|
|
2017-09-06 10:21:07 -04:00
|
|
|
def create_errors_json(obj, opts = nil)
|
|
|
|
opts ||= {}
|
|
|
|
|
2015-02-08 15:25:03 -05:00
|
|
|
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]
|
2015-02-08 15:25:03 -05:00
|
|
|
errors
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def create_errors_array(obj)
|
2014-04-02 13:22:10 -04:00
|
|
|
# If we're passed a string, assume that is the error message
|
2015-03-19 07:22:56 -04:00
|
|
|
return { errors: [obj] } if obj.is_a?(String)
|
2014-04-02 13:22:10 -04:00
|
|
|
|
2014-08-11 14:42:50 -04:00
|
|
|
# If it's an AR exception target the record
|
|
|
|
obj = obj.record if obj.is_a?(ActiveRecord::RecordInvalid)
|
|
|
|
|
2014-04-02 13:22:10 -04:00
|
|
|
# If it looks like an activerecord object, extract its messages
|
2015-03-19 07:22:56 -04:00
|
|
|
return { errors: obj.errors.full_messages } if obj.respond_to?(:errors) && obj.errors.present?
|
2014-04-02 13:22:10 -04:00
|
|
|
|
2014-09-02 16:22:52 -04:00
|
|
|
# If we're passed an array, it's an array of error messages
|
2015-03-19 07:22:56 -04:00
|
|
|
return { errors: obj.map(&:to_s) } if obj.is_a?(Array) && obj.present?
|
2014-09-02 16:22:52 -04:00
|
|
|
|
2018-10-14 21:43:31 -04:00
|
|
|
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
|
|
|
|
2014-09-02 16:22:52 -04:00
|
|
|
# Log a warning (unless obj is nil)
|
|
|
|
Rails.logger.warn("create_errors_json called with unrecognized type: #{obj.inspect}") if obj
|
|
|
|
|
2014-04-02 13:22:10 -04:00
|
|
|
# default to a generic error
|
|
|
|
JsonError.generic_error
|
|
|
|
end
|
|
|
|
|
2015-02-08 15:25:03 -05:00
|
|
|
def self.generic_error
|
2015-03-19 07:22:56 -04:00
|
|
|
{ errors: [I18n.t('js.generic_error')] }
|
2015-02-08 15:25:03 -05:00
|
|
|
end
|
2014-04-02 13:22:10 -04:00
|
|
|
|
|
|
|
end
|