Class: ActionDispatch::Http::UploadedFile
- Inherits:
-
Object
- Object
- ActionDispatch::Http::UploadedFile
- Defined in:
- lib/action_dispatch/http/upload.rb
Overview
Models uploaded files.
The actual file is accessible via the tempfile
accessor, though some of its interface is available directly for convenience.
Uploaded files are temporary files whose lifespan is one request. When the object is finalized Ruby unlinks the file, so there is no need to clean them with a separate maintenance task.
Instance Attribute Summary collapse
-
#content_type ⇒ Object
A string with the MIME type of the file.
-
#headers ⇒ Object
A string with the headers of the multipart request.
-
#original_filename ⇒ Object
The basename of the file in the client.
-
#tempfile ⇒ Object
A
Tempfile
object with the actual uploaded file.
Instance Method Summary collapse
-
#close(unlink_now = false) ⇒ Object
Shortcut for
tempfile.close
. -
#eof? ⇒ Boolean
Shortcut for
tempfile.eof?
. -
#initialize(hash) ⇒ UploadedFile
constructor
:nodoc:.
-
#open ⇒ Object
Shortcut for
tempfile.open
. -
#path ⇒ Object
Shortcut for
tempfile.path
. -
#read(length = nil, buffer = nil) ⇒ Object
Shortcut for
tempfile.read
. -
#rewind ⇒ Object
Shortcut for
tempfile.rewind
. -
#size ⇒ Object
Shortcut for
tempfile.size
.
Constructor Details
#initialize(hash) ⇒ UploadedFile
:nodoc:
25 26 27 28 29 30 31 32 |
# File 'lib/action_dispatch/http/upload.rb', line 25 def initialize(hash) # :nodoc: @tempfile = hash[:tempfile] raise(ArgumentError, ':tempfile is required') unless @tempfile @original_filename = encode_filename(hash[:filename]) @content_type = hash[:type] @headers = hash[:head] end |
Instance Attribute Details
#content_type ⇒ Object
A string with the MIME type of the file.
16 17 18 |
# File 'lib/action_dispatch/http/upload.rb', line 16 def content_type @content_type end |
#headers ⇒ Object
A string with the headers of the multipart request.
23 24 25 |
# File 'lib/action_dispatch/http/upload.rb', line 23 def headers @headers end |
#original_filename ⇒ Object
The basename of the file in the client.
13 14 15 |
# File 'lib/action_dispatch/http/upload.rb', line 13 def original_filename @original_filename end |
#tempfile ⇒ Object
A Tempfile
object with the actual uploaded file. Note that some of its interface is available directly.
20 21 22 |
# File 'lib/action_dispatch/http/upload.rb', line 20 def tempfile @tempfile end |
Instance Method Details
#close(unlink_now = false) ⇒ Object
Shortcut for tempfile.close
.
45 46 47 |
# File 'lib/action_dispatch/http/upload.rb', line 45 def close(unlink_now=false) @tempfile.close(unlink_now) end |
#eof? ⇒ Boolean
Shortcut for tempfile.eof?
.
65 66 67 |
# File 'lib/action_dispatch/http/upload.rb', line 65 def eof? @tempfile.eof? end |
#open ⇒ Object
Shortcut for tempfile.open
.
40 41 42 |
# File 'lib/action_dispatch/http/upload.rb', line 40 def open @tempfile.open end |
#path ⇒ Object
Shortcut for tempfile.path
.
50 51 52 |
# File 'lib/action_dispatch/http/upload.rb', line 50 def path @tempfile.path end |
#read(length = nil, buffer = nil) ⇒ Object
Shortcut for tempfile.read
.
35 36 37 |
# File 'lib/action_dispatch/http/upload.rb', line 35 def read(length=nil, buffer=nil) @tempfile.read(length, buffer) end |
#rewind ⇒ Object
Shortcut for tempfile.rewind
.
55 56 57 |
# File 'lib/action_dispatch/http/upload.rb', line 55 def rewind @tempfile.rewind end |
#size ⇒ Object
Shortcut for tempfile.size
.
60 61 62 |
# File 'lib/action_dispatch/http/upload.rb', line 60 def size @tempfile.size end |