mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
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:
parent
7b3c41cfcc
commit
9335877898
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue