Class: CarrierWave::Uploader::Download::RemoteFile

Inherits:
Object
  • Object
show all
Defined in:
lib/carrierwave/uploader/download.rb

Instance Method Summary collapse

Constructor Details

#initialize(uri) ⇒ RemoteFile

Returns a new instance of RemoteFile.



15
16
17
# File 'lib/carrierwave/uploader/download.rb', line 15

def initialize(uri)
  @uri = uri
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(*args, &block) ⇒ Object (private)



48
49
50
# File 'lib/carrierwave/uploader/download.rb', line 48

def method_missing(*args, &block)
  file.send(*args, &block)
end

Instance Method Details

#http?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/carrierwave/uploader/download.rb', line 31

def http?
  @uri.scheme =~ /^https?$/
end

#original_filenameObject



19
20
21
22
23
24
25
# File 'lib/carrierwave/uploader/download.rb', line 19

def original_filename
  if file.meta.include? 'content-disposition'
    match = file.meta['content-disposition'].match(/filename=(\"?)(.+)\1/)
    return match[2] unless match.nil?
  end
  File.basename(file.base_uri.path)
end

#respond_to?(*args) ⇒ Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/carrierwave/uploader/download.rb', line 27

def respond_to?(*args)
  super or file.respond_to?(*args)
end