mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_file_share: Use '.bin' file extension
Distinct from '.dat' used by datamanager / internal stortage for Lua object storage so that they can't easily be loaded by accident that way.
This commit is contained in:
parent
77e9e9eaa6
commit
7ab22af561
1 changed files with 3 additions and 2 deletions
|
@ -171,7 +171,8 @@ function handle_upload(event, path) -- PUT /upload/:slot
|
|||
-- so we also check the final file size on completion.
|
||||
end
|
||||
|
||||
local filename = dm.getpath(upload_info.slot, module.host, module.name, nil, true);
|
||||
local filename = dm.getpath(upload_info.slot, module.host, module.name, "bin", true);
|
||||
|
||||
|
||||
if not request.body_sink then
|
||||
module:log("debug", "Preparing to receive upload into %q, expecting %s", filename, B(upload_info.filesize));
|
||||
|
@ -228,7 +229,7 @@ function handle_download(event, path) -- GET /uploads/:slot+filename
|
|||
if request.headers.if_modified_since == last_modified then
|
||||
return 304;
|
||||
end
|
||||
local filename = dm.getpath(slot_id, module.host, module.name);
|
||||
local filename = dm.getpath(slot_id, module.host, module.name, "bin");
|
||||
local handle, ferr = errors.coerce(io.open(filename));
|
||||
if not handle then
|
||||
return ferr or 410;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue