1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
# frozen_string_literal: true
class ServiceResponse
def self.success(message: nil, payload: {}, http_status: :ok)
new(
status: :success,
message: message,
payload: payload,
http_status: http_status
)
end
def self.error(message:, payload: {}, http_status: nil, reason: nil)
new(
status: :error,
message: message,
payload: payload,
http_status: http_status,
reason: reason
)
end
attr_reader :status, :message, :http_status, :payload, :reason
def initialize(status:, message: nil, payload: {}, http_status: nil, reason: nil)
self.status = status
self.message = message
self.payload = payload
self.http_status = http_status
self.reason = reason
end
def log_and_raise_exception(as: StandardError, **extra_data)
error_tracking(as) do |ex|
Gitlab::ErrorTracking.log_and_raise_exception(ex, extra_data)
end
end
def track_exception(as: StandardError, **extra_data)
error_tracking(as) do |ex|
Gitlab::ErrorTracking.track_exception(ex, extra_data)
end
end
def track_and_raise_exception(as: StandardError, **extra_data)
error_tracking(as) do |ex|
Gitlab::ErrorTracking.track_and_raise_exception(ex, extra_data)
end
end
def [](key)
to_h[key]
end
def to_h
(payload || {}).merge(
status: status,
message: message,
http_status: http_status,
reason: reason)
end
def deconstruct_keys(keys)
to_h.slice(*keys)
end
def success?
status == :success
end
def error?
status == :error
end
def errors
return [] unless error?
Array.wrap(message)
end
def cause
ActiveSupport::StringInquirer.new(reason.to_s)
end
private
attr_writer :status, :message, :http_status, :payload, :reason
def error_tracking(error_klass)
if error?
ex = error_klass.new(message)
yield ex
end
self
end
end
|