mod_http_file_share: Clean up incomplete uploads

If the request fails in the middle then the file~ could be left behind
because no code was invoked to delete it then.  This gets rid of it when
the request is removed. It may still be left in case of an unclean
shutdown.
This commit is contained in:
Kim Alvefur 2021-10-23 01:53:07 +02:00
parent 7b3c41cfcc
commit 9335877898

View file

@ -289,6 +289,13 @@ function handle_upload(event, path) -- PUT /upload/:slot
module:log("error", "Could not open file for writing: %s", err);
return 500;
end
function event.response:on_destroy()
-- Clean up incomplete upload
if io.type(fh) == "file" then -- still open
fh:close();
os.remove(filename.."~");
end
end
request.body_sink = fh;
if request.body == false then
if request.headers.expect == "100-continue" then