mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
64aa6a2a0e
commit
91d2ab9108
3 changed files with 36 additions and 7 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue