net.http.parser: Allow specifying sink for large request bodies

This enables uses such as saving uploaded files directly to a file on
disk or streaming parsing of payloads.

See #726
This commit is contained in:
Kim Alvefur 2020-08-01 18:41:23 +02:00
parent 64aa6a2a0e
commit 91d2ab9108
3 changed files with 36 additions and 7 deletions

View file

@ -160,6 +160,15 @@ function module.add_host(module)
elseif event_name:sub(-1, -1) == "/" then
module:hook_object_event(server, event_name:sub(1, -2), redir_handler, -1);
end
do
-- COMPAT Modules not compatible with streaming uploads behave as before.
local _handler = handler;
function handler(event) -- luacheck: ignore 432/event
if event.request.body ~= false then
return _handler(event);
end
end
end
if not app_handlers[event_name] then
app_handlers[event_name] = {
main = handler;