mod_http: Warn if app is missing 'route'

Makes no sense to have a http module with no handlers

Would have helped me when I accidentally

module:provides("http", {
  GET = handler;
})
This commit is contained in:
Kim Alvefur 2021-02-21 01:00:00 +01:00
parent b01915e81c
commit 19eb907613

View file

@ -160,7 +160,13 @@ function module.add_host(module)
local streaming = event.item.streaming_uploads;
for key, handler in pairs(event.item.route or {}) do
if not event.item.route then
-- TODO: Link to docs
module:log("error", "HTTP app %q provides no 'route', a typo or mistake?", app_name);
return;
end
for key, handler in pairs(event.item.route) do
local event_name = get_http_event(host, app_path, key);
if event_name then
local method = event_name:match("^%S+");