Exception: Served::Serializers::JsonApi::Error

Inherits:
Error show all
Defined in:
lib/served/serializers/json_api/error.rb

Overview

Error object

Instance Method Summary collapse

Constructor Details

#initialize(attrs = {}) ⇒ Error

Returns a new instance of Error.



11
12
13
# File 'lib/served/serializers/json_api/error.rb', line 11

def initialize(attrs = {})
  @attrs = (attrs || {}).with_indifferent_access
end

Instance Method Details

#codeObject



23
24
25
# File 'lib/served/serializers/json_api/error.rb', line 23

def code
  attrs[:code]
end

#detailObject



31
32
33
# File 'lib/served/serializers/json_api/error.rb', line 31

def detail
  attrs[:detail]
end

#idObject



15
16
17
# File 'lib/served/serializers/json_api/error.rb', line 15

def id
  attrs[:id]
end

#sourceObject



47
48
49
50
# File 'lib/served/serializers/json_api/error.rb', line 47

def source
  res = attrs.fetch(:source, {})
  res ? res : {}
end

#source_parameterObject



35
36
37
38
39
# File 'lib/served/serializers/json_api/error.rb', line 35

def source_parameter
  source.fetch(:parameter) do
    source[:pointer] ? source[:pointer].split('/').last : nil
  end
end

#source_pointerObject



41
42
43
44
45
# File 'lib/served/serializers/json_api/error.rb', line 41

def source_pointer
  source.fetch(:pointer) do
    source[:parameter] ? "/data/attributes/#{source[:parameter]}" : nil
  end
end

#statusObject



19
20
21
# File 'lib/served/serializers/json_api/error.rb', line 19

def status
  attrs[:status]
end

#titleObject



27
28
29
# File 'lib/served/serializers/json_api/error.rb', line 27

def title
  attrs[:title]
end