Module: Down::Http::DownloadedFile
- Defined in:
- lib/down/http.rb
Instance Attribute Summary collapse
-
#headers ⇒ Object
Returns the value of attribute headers.
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
Instance Attribute Details
#headers ⇒ Object
Returns the value of attribute headers.
147 148 149 |
# File 'lib/down/http.rb', line 147 def headers @headers end |
#url ⇒ Object
Returns the value of attribute url.
147 148 149 |
# File 'lib/down/http.rb', line 147 def url @url end |
Instance Method Details
#charset ⇒ Object
158 159 160 |
# File 'lib/down/http.rb', line 158 def charset HTTP::ContentType.parse(headers["Content-Type"]).charset end |
#content_type ⇒ Object
154 155 156 |
# File 'lib/down/http.rb', line 154 def content_type HTTP::ContentType.parse(headers["Content-Type"]).mime_type end |
#original_filename ⇒ Object
149 150 151 152 |
# File 'lib/down/http.rb', line 149 def original_filename Utils.filename_from_content_disposition(headers["Content-Disposition"]) || Utils.filename_from_path(HTTP::URI.parse(url).path) end |