Module: Attache::API::Model

Defined in:
lib/attache/api/model.rb

Instance Method Summary collapse

Instance Method Details

#attache_field_attributes(attr_value, geometry) ⇒ Object



12
13
14
15
16
17
18
# File 'lib/attache/api/model.rb', line 12

def attache_field_attributes(attr_value, geometry)
  Utils.array(attr_value).inject([]) do |sum, obj|
    sum + Utils.array(obj && obj.tap {|attrs|
      attrs['url'] = V1.attache_url_for(attrs['path'], geometry)
    })
  end
end

#attache_field_options(attr_value, geometry, options = {}) ⇒ Object



4
5
6
# File 'lib/attache/api/model.rb', line 4

def attache_field_options(attr_value, geometry, options = {})
  V1.attache_options(geometry, attache_field_attributes(attr_value, geometry), options)
end

#attache_field_set(array) ⇒ Object



20
21
22
23
24
25
26
27
28
# File 'lib/attache/api/model.rb', line 20

def attache_field_set(array)
  new_value = Utils.array(array).inject([]) {|sum,value|
    hash = value.respond_to?(:read) && V1.attache_upload(value) || value
    hash = JSON.parse(hash.to_s) rescue Hash(error: $!) unless hash.kind_of?(Hash)
    okay = hash.respond_to?(:[]) && (hash['path'] || hash[:path])
    okay ? sum + [hash] : sum
  }
  Utils.array(new_value)
end

#attache_field_urls(attr_value, geometry) ⇒ Object



8
9
10
# File 'lib/attache/api/model.rb', line 8

def attache_field_urls(attr_value, geometry)
  attache_field_attributes(attr_value, geometry).collect {|attrs| attrs['url']}
end

#attache_mark_for_discarding(old_value, new_value, attaches_discarded) ⇒ Object



30
31
32
33
# File 'lib/attache/api/model.rb', line 30

def attache_mark_for_discarding(old_value, new_value, attaches_discarded)
  obsoleted = Utils.array(old_value).collect {|x| x['path'] } - Utils.array(new_value).collect {|x| x['path'] }
  obsoleted.each {|path| attaches_discarded.push(path) unless path.nil? || path == "" }
end

#attaches_discard!(files) ⇒ Object



35
36
37
38
39
40
# File 'lib/attache/api/model.rb', line 35

def attaches_discard!(files)
  files.reject! {|x| x.nil? || x == "" }
  V1.attache_delete(*files.uniq) unless files.empty?
rescue Exception
  raise if ENV['ATTACHE_DISCARD_FAILURE_RAISE_ERROR']
end