Sha256: cdd87c7a648906fc1c7528b699cad984ce025e97d57f4abe046c3fbbd08404fe

Contents?: true

Size: 1.3 KB

Versions: 78

Compression:

Stored size: 1.3 KB

Contents

module ActionDispatch
  module Http
    class UploadedFile
      attr_accessor :original_filename, :content_type, :tempfile, :headers

      def initialize(hash)
        @original_filename = encode_filename(hash[:filename])
        @content_type      = hash[:type]
        @headers           = hash[:head]
        @tempfile          = hash[:tempfile]
        raise(ArgumentError, ':tempfile is required') unless @tempfile
      end

      def read(*args)
        @tempfile.read(*args)
      end

      # Delegate these methods to the tempfile.
      [:open, :path, :rewind, :size].each do |method|
        class_eval "def #{method}; @tempfile.#{method}; end"
      end

      private
      def encode_filename(filename)
        # Encode the filename in the utf8 encoding, unless it is nil or we're in 1.8
        if "ruby".encoding_aware? && filename
          filename.force_encoding("UTF-8").encode!
        else
          filename
        end
      end
    end

    module Upload
      # Convert nested Hash to HashWithIndifferentAccess and replace
      # file upload hash with UploadedFile objects
      def normalize_parameters(value)
        if Hash === value && value.has_key?(:tempfile)
          UploadedFile.new(value)
        else
          super
        end
      end
      private :normalize_parameters
    end
  end
end

Version data entries

78 entries across 63 versions & 16 rubygems

Version Path
challah-0.9.0 vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
actionpack-3.2.10 lib/action_dispatch/http/upload.rb
jquery_regex-0.0.3 vendor/bundle/gems/jquery_regex-0.0.3/vendor/bundle/gems/jquery_regex-0.0.2/vendor/bundle/gems/jquery_regex-0.0.1/vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
jquery_regex-0.0.3 vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
jquery_regex-0.0.3 vendor/bundle/gems/jquery_regex-0.0.1/vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
jquery_regex-0.0.3 vendor/bundle/gems/jquery_regex-0.0.2/vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
jquery_regex-0.0.3 vendor/bundle/gems/jquery_regex-0.0.2/vendor/bundle/gems/jquery_regex-0.0.1/vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
jquery_regex-0.0.3 vendor/bundle/gems/jquery_regex-0.0.3/vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
jquery_regex-0.0.3 vendor/bundle/gems/jquery_regex-0.0.3/vendor/bundle/gems/jquery_regex-0.0.1/vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
jquery_regex-0.0.3 vendor/bundle/gems/jquery_regex-0.0.3/vendor/bundle/gems/jquery_regex-0.0.2/vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
jquery_regex-0.0.1 vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
challah-rolls-0.2.0 vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
challah-0.8.3 vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/upload.rb
actionpack-3.2.9 lib/action_dispatch/http/upload.rb
actionpack-3.2.9.rc3 lib/action_dispatch/http/upload.rb
actionpack-3.2.9.rc2 lib/action_dispatch/http/upload.rb
actionpack-3.2.9.rc1 lib/action_dispatch/http/upload.rb