Class: Multipart::FileParam
- Inherits:
-
Object
- Object
- Multipart::FileParam
- Defined in:
- lib/it_tools/multipart.rb
Overview
Formats the contents of a file or string for inclusion with a multipart form post
Instance Attribute Summary collapse
-
#content ⇒ Object
Returns the value of attribute content.
-
#filename ⇒ Object
Returns the value of attribute filename.
-
#k ⇒ Object
Returns the value of attribute k.
Instance Method Summary collapse
-
#initialize(k, filename, content) ⇒ FileParam
constructor
A new instance of FileParam.
- #to_multipart ⇒ Object
Constructor Details
#initialize(k, filename, content) ⇒ FileParam
Returns a new instance of FileParam.
62 63 64 65 66 |
# File 'lib/it_tools/multipart.rb', line 62 def initialize(k, filename, content) @k = k @filename = filename @content = content end |
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content.
61 62 63 |
# File 'lib/it_tools/multipart.rb', line 61 def content @content end |
#filename ⇒ Object
Returns the value of attribute filename.
61 62 63 |
# File 'lib/it_tools/multipart.rb', line 61 def filename @filename end |
#k ⇒ Object
Returns the value of attribute k.
61 62 63 |
# File 'lib/it_tools/multipart.rb', line 61 def k @k end |
Instance Method Details
#to_multipart ⇒ Object
67 68 69 70 71 72 73 |
# File 'lib/it_tools/multipart.rb', line 67 def to_multipart # If we can tell the possible mime-type from the filename, use the # first in the list; otherwise, use "application/octet-stream" mime_type = MIME::Types.type_for(filename)[0] || MIME::Types["application/octet-stream"][0] return "Content-Disposition: form-data; name=\"#{CGI::escape(k)}\"; filename=\"#{ filename }\"\r\n" + "Content-Type: #{ mime_type.simplified }\r\n\r\n#{ content }\r\n" end |