aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-01-27 18:13:15 +0100
committerKim Alvefur <zash@zash.se>2021-01-27 18:13:15 +0100
commitae4ad08b4a3db758681db0b857bdfea05e4fc0be (patch)
tree2ac26f341528b23cac5a65b74e11ef297218ae3c
parent7ab22af561a28df448ef437c3e277bc159eed5ca (diff)
downloadprosody-ae4ad08b4a3db758681db0b857bdfea05e4fc0be.tar.gz
prosody-ae4ad08b4a3db758681db0b857bdfea05e4fc0be.zip
mod_http_file_share: Factor out function for generating full filename
-rw-r--r--plugins/mod_http_file_share.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/mod_http_file_share.lua b/plugins/mod_http_file_share.lua
index 55af15a1..90005d5b 100644
--- a/plugins/mod_http_file_share.lua
+++ b/plugins/mod_http_file_share.lua
@@ -57,6 +57,10 @@ local upload_errors = errors.init(module.name, namespace, {
-- Convenience wrapper for logging file sizes
local function B(bytes) return hi.format(bytes, "B", "b"); end
+local function get_filename(slot, create)
+ return dm.getpath(slot, module.host, module.name, "bin", create)
+end
+
function may_upload(uploader, filename, filesize, filetype) -- > boolean, error
local uploader_host = jid.host(uploader);
if not ((access:empty() and prosody.hosts[uploader_host]) or access:contains(uploader) or access:contains(uploader_host)) then
@@ -171,7 +175,7 @@ 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, "bin", true);
+ local filename = get_filename(upload_info.slot, true);
if not request.body_sink then
@@ -229,7 +233,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, "bin");
+ local filename = get_filename(slot_id);
local handle, ferr = errors.coerce(io.open(filename));
if not handle then
return ferr or 410;