mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_http_files: Try to determine which module using serve() needs updating
This commit is contained in:
parent
cb2eedde50
commit
92bb509c8a
1 changed files with 8 additions and 2 deletions
|
@ -46,6 +46,12 @@ if not mime_map then
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function get_calling_module()
|
||||||
|
local info = debug.getinfo(3, "S");
|
||||||
|
if not info then return "An unknown module"; end
|
||||||
|
return info.source:match"mod_[^/\\.]+" or info.short_src;
|
||||||
|
end
|
||||||
|
|
||||||
-- COMPAT -- TODO deprecate
|
-- COMPAT -- TODO deprecate
|
||||||
function serve(opts)
|
function serve(opts)
|
||||||
if type(opts) ~= "table" then -- assume path string
|
if type(opts) ~= "table" then -- assume path string
|
||||||
|
@ -67,12 +73,12 @@ function serve(opts)
|
||||||
opts.index_files = dir_indices;
|
opts.index_files = dir_indices;
|
||||||
end
|
end
|
||||||
-- TODO Crank up to warning
|
-- TODO Crank up to warning
|
||||||
module:log("debug", "Use of mod_http_files.serve() should be updated to use net.http.files");
|
module:log("debug", "%s should be updated to use 'net.http.files' insead of mod_http_files", get_calling_module());
|
||||||
return fileserver.serve(opts);
|
return fileserver.serve(opts);
|
||||||
end
|
end
|
||||||
|
|
||||||
function wrap_route(routes)
|
function wrap_route(routes)
|
||||||
module:log("debug", "Use of mod_http_files.wrap_route() should be updated to use net.http.files");
|
module:log("debug", "%s should be updated to use 'net.http.files' insead of mod_http_files", get_calling_module());
|
||||||
for route,handler in pairs(routes) do
|
for route,handler in pairs(routes) do
|
||||||
if type(handler) ~= "function" then
|
if type(handler) ~= "function" then
|
||||||
routes[route] = fileserver.serve(handler);
|
routes[route] = fileserver.serve(handler);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue