Class: Rack::Multipart::UploadedFile

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/multipart/uploaded_file.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(filepath = nil, ct = "text/plain", bin = false, path: filepath, content_type: ct, binary: bin, filename: nil, io: nil) ⇒ UploadedFile

Returns a new instance of UploadedFile.



16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/rack/multipart/uploaded_file.rb', line 16

def initialize(filepath = nil, ct = "text/plain", bin = false,
               path: filepath, content_type: ct, binary: bin, filename: nil, io: nil)
  if io
    @tempfile = io
    @original_filename = filename
  else
    raise "#{path} file does not exist" unless ::File.exist?(path)
    @original_filename = filename || ::File.basename(path)
    @tempfile = Tempfile.new([@original_filename, ::File.extname(path)], encoding: Encoding::BINARY)
    @tempfile.binmode if binary
    FileUtils.copy_file(path, @tempfile.path)
  end
  @content_type = content_type
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

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

:nodoc:



40
41
42
# File 'lib/rack/multipart/uploaded_file.rb', line 40

def method_missing(method_name, *args, &block) #:nodoc:
  @tempfile.__send__(method_name, *args, &block)
end

Instance Attribute Details

#content_typeObject

The content type of the “uploaded” file



14
15
16
# File 'lib/rack/multipart/uploaded_file.rb', line 14

def content_type
  @content_type
end

#original_filenameObject (readonly)

The filename, not including the path, of the “uploaded” file



11
12
13
# File 'lib/rack/multipart/uploaded_file.rb', line 11

def original_filename
  @original_filename
end

Instance Method Details

#pathObject Also known as: local_path



31
32
33
# File 'lib/rack/multipart/uploaded_file.rb', line 31

def path
  @tempfile.path if @tempfile.respond_to?(:path)
end

#respond_to?(*args) ⇒ Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/rack/multipart/uploaded_file.rb', line 36

def respond_to?(*args)
  super or @tempfile.respond_to?(*args)
end