Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add :max-file-size option to wrap-multipart-params #189

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 21 additions & 13 deletions ring-core/src/ring/middleware/multipart_params.clj
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@

(defn- file-item-seq
"Create a seq of FileItem instances from a request context."
[context]
[max-file-size context]
(file-item-iterator-seq
(.getItemIterator (FileUpload.) context)))
(.getItemIterator (doto (FileUpload.)
(.setFileSizeMax max-file-size))
context)))

(defn- parse-file-item
"Parse a FileItemStream into a key-value pair. If the request is a file the
Expand All @@ -58,9 +60,9 @@

(defn- parse-multipart-params
"Parse a map of multipart parameters from the request."
[request encoding store]
[request encoding store max-file-size]
(->> (request-context request encoding)
(file-item-seq)
(file-item-seq max-file-size)
(map #(parse-file-item % store encoding))
(reduce (fn [m [k v]] (assoc-conj m k v)) {})))

Expand All @@ -87,8 +89,9 @@
encoding (or (:encoding options)
(req/character-encoding request)
"UTF-8")
max-file-size (or (:max-file-size options) -1)
params (if (multipart-form? request)
(parse-multipart-params request encoding store)
(parse-multipart-params request encoding store max-file-size)
{})]
(merge-with merge request
{:multipart-params params}
Expand All @@ -103,15 +106,20 @@

The following options are accepted

:encoding - character encoding to use for multipart parsing. If not
specified, uses the request character encoding, or \"UTF-8\"
if no request character encoding is set.
:encoding - character encoding to use for multipart parsing. If not
specified, uses the request character encoding, or \"UTF-8\"
if no request character encoding is set.

:store - a function that stores a file upload. The function should
expect a map with :filename, content-type and :stream keys,
and its return value will be used as the value for the
parameter in the multipart parameter map. The default storage
function is the temp-file-store.

:max-file-size - maximum number of bytes to accept for a file. Throws a
org.apache.commons.fileupload.FileUploadBase$FileUploadIOException
if this limit is exceeded. Defaults to -1 (unlimited)."

:store - a function that stores a file upload. The function should
expect a map with :filename, content-type and :stream keys,
and its return value will be used as the value for the
parameter in the multipart parameter map. The default storage
function is the temp-file-store."
{:arglists '([handler] [handler options])}
[handler & [options]]
(fn [request]
Expand Down