mod_http: Link to docs on routes in error message
[prosody.git] / plugins / mod_http.lua
index 6da4db2438017a9b28e19d5eff98f8d03217f27b..93d5843914d4531c188db20863d5306dfb8247c7 100644 (file)
@@ -8,7 +8,6 @@
 
 module:set_global();
 
-local parse_url = require "socket.url".parse;
 local server = require "net.http.server";
 
 local function normalize_path(path)
@@ -29,6 +28,12 @@ local function get_http_event(host, app_path, key)
        return method:upper().." "..host..app_path..path;
 end
 
+local function get_base_path(host_module, app_name, default_app_path)
+       return host_module:get_option("http_paths", {})[app_name] -- Host
+               or module:get_option("http_paths", {})[app_name] -- Global
+               or default_app_path; -- Default
+end
+
 function module.add_host(module)
        local host = module.host;
        local apps = {};
@@ -36,7 +41,7 @@ function module.add_host(module)
        local function http_app_added(event)
                local app_name = event.item.name;
                local default_app_path = event.item.default_path or "/"..app_name;
-               local app_path = normalize_path(module:get_option_string(app_name.."_http_path", default_app_path));
+               local app_path = normalize_path(get_base_path(module, app_name, default_app_path));
                if not app_name then            
                        -- TODO: Link to docs
                        module:log("error", "HTTP app has no 'name', add one or use module:provides('http', app)");
@@ -57,12 +62,12 @@ function module.add_host(module)
                                end
                                if not app_handlers[event_name] then
                                        app_handlers[event_name] = handler;
-                                       server.add_handler(event_name, handler);
+                                       module:hook_object_event(server, event_name, handler);
                                else
                                        module:log("warn", "App %s added handler twice for '%s', ignoring", app_name, event_name);
                                end
                        else
-                               module:log("error", "Invalid route in %s: %q", app_name, key);
+                               module:log("error", "Invalid route in %s, %q. See http://prosody.im/doc/developers/http#routes", app_name, key);
                        end
                end
        end
@@ -71,7 +76,7 @@ function module.add_host(module)
                local app_handlers = apps[event.item.name];
                apps[event.item.name] = nil;
                for event, handler in pairs(app_handlers) do
-                       server.remove_handler(event, handler);
+                       module:unhook_object_event(server, event, handler);
                end
        end