mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http: Fix pattern and slightly improve efficiency and memory usage of wildcard HTTP handlers
This commit is contained in:
parent
bfd3085f78
commit
d7b707744d
1 changed files with 2 additions and 2 deletions
|
@ -88,10 +88,10 @@ function module.add_host(module)
|
|||
local data = handler;
|
||||
handler = function () return data; end
|
||||
elseif event_name:sub(-2, -1) == "/*" then
|
||||
local base_path = event_name:match("/(.+)/*$");
|
||||
local base_path_len = #event_name:match("(/.+/)%*$")+1;
|
||||
local _handler = handler;
|
||||
handler = function (event)
|
||||
local path = event.request.path:sub(#base_path+1);
|
||||
local path = event.request.path:sub(base_path_len);
|
||||
return _handler(event, path);
|
||||
end;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue