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
|
# File 'lib/tentd/model/serializable.rb', line 4
def as_json(options = {})
attributes = super(:only => self.class.public_attributes)
attributes.merge!(:permissions => permissions_json(options[:permissions])) if respond_to?(:permissions_json)
attributes[:id] = respond_to?(:public_id) ? public_id : id
if options[:app]
[:created_at, :updated_at, :published_at, :received_at].each { |key|
attributes[key] = send(key) if respond_to?(key)
}
end
[:published_at, :updated_at, :created_at, :received_at].each do |key|
attributes[key] = attributes[key].to_time.to_i if attributes[key].respond_to?(:to_time)
end
mac_fields = [:mac_key_id, :mac_key, :mac_algorithm]
if options[:mac] && mac_fields.select { |k| respond_to?(k) }.size == mac_fields.size
mac_fields.each { |k| attributes[k] = send(k) }
end
if options[:groups] && respond_to?(:groups)
attributes[:groups] = groups.to_a.uniq
end
if relationships.map(&:name).include?(:attachments)
if options[:view] && respond_to?(:views) && (conditions = (views[options[:view]] || {})['attachments'])
conditions.map! { |c| c.slice('category', 'name', 'type') }.reject! { |c| c.empty? }
attributes[:attachments] = conditions.inject(nil) { |memo, c|
q = attachments.all(c)
memo ? memo += q : q
}
else
attributes[:attachments] = attachments.all.map { |a| a.as_json } unless options[:view] == 'meta'
end
end
if options[:view] && respond_to?(:views) && respond_to?(:content)
if keypaths = (views[options[:view]] || {})['content']
attributes[:content] = keypaths.inject({}) do |memo, keypath|
pointer = JsonPatch::HashPointer.new(content, keypath)
memo[pointer.keys.last] = pointer.exists? ? pointer.value : nil
memo
end
elsif options[:view] == 'meta'
attributes.delete(:content)
elsif options[:view] != 'full'
attributes[:content] = {}
end
end
attributes
end
|