summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorxibbar <xibbar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-24 07:25:53 +0000
committerxibbar <xibbar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-24 07:25:53 +0000
commit86560b12eeccdfe16550b6907096235cd4b6046e (patch)
tree5c4d7a8c10453119cccebe995619e62d8459a842 /lib
parent9e1bddfda25d9490af078c273084fc61074ccfe6 (diff)
* lib/cgi/core.rb (read_multipart): change field value as String
from StringIO of Tempfile when multipart parse without file field. add files method that can uploaded files. [ruby-dev:36547] * test/cgi/test_cgi_multipart.rb: fix the test for core.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19906 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/cgi/core.rb24
1 files changed, 23 insertions, 1 deletions
diff --git a/lib/cgi/core.rb b/lib/cgi/core.rb
index 3a934c928b..87c4f68540 100644
--- a/lib/cgi/core.rb
+++ b/lib/cgi/core.rb
@@ -406,6 +406,9 @@ class CGI
# values is an Array.
attr_reader :params
+ # Get the uploaed files as a hash of name=>values pairs
+ attr_reader :files
+
# Set all the parameters.
def params=(hash)
@params.clear
@@ -422,6 +425,7 @@ class CGI
raise EOFError.new("bad content body") unless first_line == status
## parse and set params
params = {}
+ @files = {}
boundary_rexp = /--#{Regexp.quote(boundary)}(#{EOL}|--)/
boundary_size = "#{EOL}--#{boundary}#{EOL}".bytesize
boundary_end = nil
@@ -482,7 +486,25 @@ class CGI
## query parameter name
/Content-Disposition:.* name=(?:"(.*?)"|([^;\r\n]*))/i.match(head)
name = $1 || $2 || ''
- (params[name] ||= []) << body
+ if body.original_filename.empty?
+ value=body.read.dup.force_encoding(@accept_charset)
+ (params[name] ||= []) << value
+ unless value.valid_encoding?
+ if @accept_charset_error_block
+ @accept_charset_error_block.call(name,value)
+ else
+ raise InvalidEncoding,"Accept-Charset encoding error"
+ end
+ end
+ class << params[name].last;self;end.class_eval do
+ define_method(:read){self}
+ define_method(:original_filename){""}
+ define_method(:content_type){""}
+ end
+ else
+ (params[name] ||= []) << body
+ @files[name]=body
+ end
## break loop
break if buf.size == 0
break if content_length == -1