curb
সৌন্দর্য জন্য একটি দুর্দান্ত সমাধান চাই, কিন্তু ক্ষেত্রে এটি আপনার চাহিদা পূরণ না করে, আপনি পারেন এটা দিয়ে কি Net::HTTP
। একটি মাল্টিপার্ট ফর্ম পোস্ট হ'ল কিছু অতিরিক্ত শিরোনাম সহ সতর্কতার সাথে ফর্ম্যাট স্ট্রিং। দেখে মনে হচ্ছে প্রতিটি রুবি প্রোগ্রামার যাকে মাল্টিপার্ট পোস্ট করতে হবে তার জন্য তাদের নিজস্ব লাইব্রেরি লিখতে হবে, যা আমাকে বিস্মিত করে তোলে কেন এই কার্যকারিতাটি অন্তর্নির্মিত নয়। হতে পারে এটি ... যাইহোক, আপনার পড়ার আনন্দের জন্য, আমি এগিয়ে যাব এবং আমার সমাধানটি এখানে দেব। এই কোডটি কয়েকটি ব্লগের মধ্যে পাওয়া উদাহরণগুলির ভিত্তিতে তৈরি, তবে আমি দুঃখিত যে আমি লিঙ্কগুলি আর খুঁজে পাচ্ছি না। সুতরাং আমি অনুমান করি আমাকে কেবল নিজের জন্য সমস্ত কৃতিত্ব নিতে হবে ...
আমি যে মডিউলটির জন্য এটি লিখেছিলাম তাতে একটি হ্যাশ String
এবং File
অবজেক্টের ফর্ম ডেটা এবং শিরোনাম তৈরির জন্য একটি সর্বজনীন শ্রেণি রয়েছে । সুতরাং উদাহরণস্বরূপ, আপনি যদি "শিরোনাম" নামে একটি স্ট্রিং প্যারামিটার এবং "ডকুমেন্ট" নামে একটি ফাইল প্যারামিটার সহ একটি ফর্ম পোস্ট করতে চান, আপনি নিম্নলিখিতটি করতে পারেন:
#prepare the query
data, headers = Multipart::Post.prepare_query("title" => my_string, "document" => my_file)
তারপরে আপনি কেবল এর POST
সাথে একটি সাধারণ করুন Net::HTTP
:
http = Net::HTTP.new(upload_uri.host, upload_uri.port)
res = http.start {|con| con.post(upload_uri.path, data, headers) }
অথবা অন্যথায় আপনি করতে চান POST
। মুল বক্তব্যটি হ'ল আপনাকে যে Multipart
ডেটা এবং শিরোনাম পাঠাতে হবে তা ফেরত দেয়। এবং এটাই! সরল, তাই না? মাল্টিপার্ট মডিউলটির জন্য এখানে কোড (আপনার রত্নটির প্রয়োজন mime-types
):
# Takes a hash of string and file parameters and returns a string of text
# formatted to be sent as a multipart form post.
#
# Author:: Cody Brimhall <mailto:brimhall@somuchwit.com>
# Created:: 22 Feb 2008
# License:: Distributed under the terms of the WTFPL (http://www.wtfpl.net/txt/copying/)
require 'rubygems'
require 'mime/types'
require 'cgi'
module Multipart
VERSION = "1.0.0"
# Formats a given hash as a multipart form post
# If a hash value responds to :string or :read messages, then it is
# interpreted as a file and processed accordingly; otherwise, it is assumed
# to be a string
class Post
# We have to pretend we're a web browser...
USERAGENT = "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.10.6 (KHTML, like Gecko) Version/3.0.4 Safari/523.10.6"
BOUNDARY = "0123456789ABLEWASIEREISAWELBA9876543210"
CONTENT_TYPE = "multipart/form-data; boundary=#{ BOUNDARY }"
HEADER = { "Content-Type" => CONTENT_TYPE, "User-Agent" => USERAGENT }
def self.prepare_query(params)
fp = []
params.each do |k, v|
# Are we trying to make a file parameter?
if v.respond_to?(:path) and v.respond_to?(:read) then
fp.push(FileParam.new(k, v.path, v.read))
# We must be trying to make a regular parameter
else
fp.push(StringParam.new(k, v))
end
end
# Assemble the request body using the special multipart format
query = fp.collect {|p| "--" + BOUNDARY + "\r\n" + p.to_multipart }.join("") + "--" + BOUNDARY + "--"
return query, HEADER
end
end
private
# Formats a basic string key/value pair for inclusion with a multipart post
class StringParam
attr_accessor :k, :v
def initialize(k, v)
@k = k
@v = v
end
def to_multipart
return "Content-Disposition: form-data; name=\"#{CGI::escape(k)}\"\r\n\r\n#{v}\r\n"
end
end
# Formats the contents of a file or string for inclusion with a multipart
# form post
class FileParam
attr_accessor :k, :filename, :content
def initialize(k, filename, content)
@k = k
@filename = filename
@content = content
end
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
end
end