mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_file_share: Add basic access control
Partly lifted from mod_external_services
This commit is contained in:
parent
52a969df34
commit
a28c769e1a
1 changed files with 7 additions and 1 deletions
|
@ -28,12 +28,18 @@ local uploads = module:open_store("uploads", "archive");
|
||||||
local secret = module:get_option_string(module.name.."_secret", require"util.id".long());
|
local secret = module:get_option_string(module.name.."_secret", require"util.id".long());
|
||||||
local external_base_url = module:get_option_string(module.name .. "_base_url");
|
local external_base_url = module:get_option_string(module.name .. "_base_url");
|
||||||
|
|
||||||
|
local access = module:get_option_set(module.name .. "_access", {});
|
||||||
|
|
||||||
if not external_base_url then
|
if not external_base_url then
|
||||||
module:depends("http");
|
module:depends("http");
|
||||||
end
|
end
|
||||||
|
|
||||||
function may_upload(uploader, filename, filesize, filetype) -- > boolean, error
|
function may_upload(uploader, filename, filesize, filetype) -- > boolean, error
|
||||||
-- TODO authz
|
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
|
||||||
|
return false;
|
||||||
|
end
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue