Class: Datadog::Core::Vendor::Multipart::Post::Parts::FilePart
- Inherits:
-
Object
- Object
- Datadog::Core::Vendor::Multipart::Post::Parts::FilePart
- Includes:
- Part
- Defined in:
- lib/datadog/core/vendor/multipart-post/multipart/post/parts.rb
Overview
Represents a part to be filled from file IO.
Instance Attribute Summary collapse
-
#length ⇒ Object
readonly
Returns the value of attribute length.
Instance Method Summary collapse
- #build_head(boundary, name, filename, type, content_len, opts = {}) ⇒ Object
-
#initialize(boundary, name, io, headers = {}) ⇒ FilePart
constructor
A new instance of FilePart.
Methods included from Part
Constructor Details
#initialize(boundary, name, io, headers = {}) ⇒ FilePart
Returns a new instance of FilePart.
78 79 80 81 82 83 84 85 |
# File 'lib/datadog/core/vendor/multipart-post/multipart/post/parts.rb', line 78 def initialize(boundary, name, io, headers = {}) file_length = io.respond_to?(:length) ? io.length : File.size(io.local_path) @head = build_head(boundary, name, io.original_filename, io.content_type, file_length, io.respond_to?(:opts) ? io.opts.merge(headers) : headers) @foot = "\r\n" @length = @head.bytesize + file_length + @foot.length @io = CompositeReadIO.new(StringIO.new(@head), io, StringIO.new(@foot)) end |
Instance Attribute Details
#length ⇒ Object (readonly)
Returns the value of attribute length.
72 73 74 |
# File 'lib/datadog/core/vendor/multipart-post/multipart/post/parts.rb', line 72 def length @length end |
Instance Method Details
#build_head(boundary, name, filename, type, content_len, opts = {}) ⇒ Object
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/datadog/core/vendor/multipart-post/multipart/post/parts.rb', line 93 def build_head(boundary, name, filename, type, content_len, opts = {}) opts = opts.clone trans_encoding = opts.delete("Content-Transfer-Encoding") || "binary" content_disposition = opts.delete("Content-Disposition") || "form-data" part = '' part << "--#{boundary}\r\n" part << "Content-Disposition: #{content_disposition}; name=\"#{name.to_s}\"; filename=\"#{filename}\"\r\n" part << "Content-Length: #{content_len}\r\n" if content_id = opts.delete("Content-ID") part << "Content-ID: #{content_id}\r\n" end if opts["Content-Type"] != nil part << "Content-Type: " + opts["Content-Type"] + "\r\n" else part << "Content-Type: #{type}\r\n" end part << "Content-Transfer-Encoding: #{trans_encoding}\r\n" opts.each do |k, v| part << "#{k}: #{v}\r\n" end part << "\r\n" end |