mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_file_share: Verify final file size on completion of upload
This commit is contained in:
parent
afa3ec821a
commit
19be6e8a27
1 changed files with 5 additions and 0 deletions
|
@ -173,7 +173,12 @@ function handle_upload(event, path) -- PUT /upload/:slot
|
|||
end
|
||||
|
||||
if request.body_sink then
|
||||
local final_size = request.body_sink:seek();
|
||||
local uploaded, err = errors.coerce(request.body_sink:close());
|
||||
if final_size ~= upload_info.filesize then
|
||||
-- Could be too short as well, but we say the same thing
|
||||
uploaded, err = false, 413;
|
||||
end
|
||||
if uploaded then
|
||||
assert(os.rename(filename.."~", filename));
|
||||
return 201;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue