lua-resty-multipart-parser
lua-resty-multipart-parser copied to clipboard
Simple multipart data parser for OpenResty/Lua
Name
lua-resty-multipart-parser - Simple multipart data parser for OpenResty/Lua
Table of Contents
- Name
- Synopsis
- Description
- TODO
-
Community
- English Mailing List
- Chinese Mailing List
- Bugs and Patches
- Author
- Copyright and License
Synopsis
local parser = require "resty.multipart.parser"
ngx.req.read_body()
local body = ngx.req.get_body_data()
local p, err = parser.new(body, ngx.var.http_content_type)
if not p then
ngx.say("failed to create parser: ", err)
return
end
while true do
local part_body, name, mime, filename = p:parse_part()
if not part_body then
break
end
ngx.say("== part ==")
ngx.say("name: [", name, "]")
ngx.say("file: [", filename, "]")
ngx.say("mime: [", mime, "]")
ngx.say("body: [", part_body, "]")
end
Description
This Lua library provides a simple parser for the multipart data format. Unlike the lua-resty-upload library, this parser does not support streaming processing of file uploads using the multipart format. However, it is more flexible in that it can be used to parse buffered request bodies read by the builtin request body reader of the NGINX core.
Anyway, be very careful when using this for large file uploads. Use lua-resty-upload
instead.
TODO
- Better error reporting.
Back to TOC
Community
Back to TOC
English Mailing List
The openresty-en mailing list is for English speakers.
Back to TOC
Chinese Mailing List
The openresty mailing list is for Chinese speakers.
Back to TOC
Bugs and Patches
Please report bugs or submit patches by
- creating a ticket on the GitHub Issue Tracker,
- or posting to the OpenResty community.
Back to TOC
Author
Yichun "agentzh" Zhang (章亦春) [email protected], CloudFlare Inc.
Back to TOC
Copyright and License
This module is licensed under the BSD license.
Copyright (C) 2016, by Yichun "agentzh" Zhang, CloudFlare Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Back to TOC