net.http.server: Move handling of hosts to mod_http

Now an event like `GET /path` is fired at first, and mod\_http
dispatches the old `GET host/path` events.
This commit is contained in:
Kim Alvefur 2018-09-21 21:19:41 +02:00
parent 2fcacff9a7
commit c6540b14f9
2 changed files with 8 additions and 2 deletions

View file

@ -172,7 +172,13 @@ module:wrap_object_event(server._events, false, function (handlers, event_name,
-- Not included in eg http-error events
request.ip = get_ip_from_request(request);
end
return handlers(event_name, event_data);
local ret = handlers(event_name, event_data);
if ret ~= nil then
return ret;
end
local host = (request.headers.host or ""):match("[^:]+");
local host_event = request.method.." "..host..request.path:match("[^?]*");
return handlers(host_event, event_data);
end);
module:provides("net", {