Module: AttachmentHelper

Defined in:
app/helpers/attachment_helper.rb

Instance Method Summary collapse

Instance Method Details

#attachment_field(object_name, method, options = {}) ⇒ Object



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
# File 'app/helpers/attachment_helper.rb', line 28

def attachment_field(object_name, method, options = {})
  if options[:object]
    cache = options[:object].send(:"#{method}_attachment").cache

    if options[:direct]
      host = Refile.host || request.base_url
      backend_name = Refile.backends.key(cache)

      options[:data] ||= {}
      options[:data][:direct] = true
      options[:data][:as] = "file"
      options[:data][:url] = File.join(host, refile_app_path, backend_name)
    end

    if options[:presigned] and cache.respond_to?(:presign)
      signature = cache.presign
      options[:data] ||= {}
      options[:data][:direct] = true
      options[:data][:id] = signature.id
      options[:data][:url] = signature.url
      options[:data][:fields] = signature.fields
      options[:data][:as] = signature.as
    end
  end
  hidden_field(object_name, :"#{method}_cache_id", options.slice(:object)) +
  file_field(object_name, method, options)
end

#attachment_image_tag(record, name, *args, fallback: nil, format: nil, **options) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
# File 'app/helpers/attachment_helper.rb', line 16

def attachment_image_tag(record, name, *args, fallback: nil, format: nil, **options)
  file = record.send(name)
  classes = ["attachment", record.class.model_name.singular, name, *options[:class]]

  if file
    image_tag(attachment_url(record, name, *args, format: format), options.merge(class: classes))
  elsif fallback
    classes << "fallback"
    image_tag(fallback, options.merge(class: classes))
  end
end

#attachment_url(record, name, *args, filename: nil, format: nil) ⇒ Object



2
3
4
5
6
7
8
9
10
11
12
13
14
# File 'app/helpers/attachment_helper.rb', line 2

def attachment_url(record, name, *args, filename: nil, format: nil)
  file = record.send(name)

  filename ||= name.to_s

  backend_name = Refile.backends.key(file.backend)
  host = Refile.host || request.base_url

  filename = filename.parameterize("_")
  filename << "." << format.to_s if format

  File.join(host, refile_app_path, backend_name, *args.map(&:to_s), file.id, filename)
end