mod_admin_telnet: rename variable to make it defined (room -> room_name)
[prosody.git] / plugins / mod_http.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2012 Matthew Wild
3 -- Copyright (C) 2008-2012 Waqas Hussain
4 --
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9 module:set_global();
10 module:depends("http_errors");
11
12 local portmanager = require "core.portmanager";
13 local moduleapi = require "core.moduleapi";
14 local url_parse = require "socket.url".parse;
15 local url_build = require "socket.url".build;
16
17 local server = require "net.http.server";
18
19 server.set_default_host(module:get_option_string("http_default_host"));
20
21 local function normalize_path(path)
22         if path:sub(-1,-1) == "/" then path = path:sub(1, -2); end
23         if path:sub(1,1) ~= "/" then path = "/"..path; end
24         return path;
25 end
26
27 local function get_http_event(host, app_path, key)
28         local method, path = key:match("^(%S+)%s+(.+)$");
29         if not method then -- No path specified, default to "" (base path)
30                 method, path = key, "";
31         end
32         if method:sub(1,1) == "/" then
33                 return nil;
34         end
35         if app_path == "/" and path:sub(1,1) == "/" then
36                 app_path = "";
37         end
38         return method:upper().." "..host..app_path..path;
39 end
40
41 local function get_base_path(host_module, app_name, default_app_path)
42         return (normalize_path(host_module:get_option("http_paths", {})[app_name] -- Host
43                 or module:get_option("http_paths", {})[app_name] -- Global
44                 or default_app_path)) -- Default
45                 :gsub("%$(%w+)", { host = host_module.host });
46 end
47
48 local function redir_handler(event)
49         event.response.headers.location = event.request.path.."/";
50         return 301;
51 end
52
53 local ports_by_scheme = { http = 80, https = 443, };
54
55 -- Helper to deduce a module's external URL
56 function moduleapi.http_url(module, app_name, default_path)
57         app_name = app_name or (module.name:gsub("^http_", ""));
58         local external_url = url_parse(module:get_option_string("http_external_url")) or {};
59         if external_url.scheme and external_url.port == nil then
60                 external_url.port = ports_by_scheme[external_url.scheme];
61         end
62         local services = portmanager.get_active_services();
63         local http_services = services:get("https") or services:get("http") or {};
64         for interface, ports in pairs(http_services) do
65                 for port, services in pairs(ports) do
66                         local url = {
67                                 scheme = (external_url.scheme or services[1].service.name);
68                                 host = (external_url.host or module:get_option_string("http_host", module.host));
69                                 port = tonumber(external_url.port) or port or 80;
70                                 path = normalize_path(external_url.path or "/")..
71                                         (get_base_path(module, app_name, default_path or "/"..app_name):sub(2));
72                         }
73                         if ports_by_scheme[url.scheme] == url.port then url.port = nil end
74                         return url_build(url);
75                 end
76         end
77         module:log("warn", "No http ports enabled, can't generate an external URL");
78         return "http://disabled.invalid/";
79 end
80
81 function module.add_host(module)
82         local host = module:get_option_string("http_host", module.host);
83         local apps = {};
84         module.environment.apps = apps;
85         local function http_app_added(event)
86                 local app_name = event.item.name;
87                 local default_app_path = event.item.default_path or "/"..app_name;
88                 local app_path = get_base_path(module, app_name, default_app_path);
89                 if not app_name then
90                         -- TODO: Link to docs
91                         module:log("error", "HTTP app has no 'name', add one or use module:provides('http', app)");
92                         return;
93                 end
94                 apps[app_name] = apps[app_name] or {};
95                 local app_handlers = apps[app_name];
96                 for key, handler in pairs(event.item.route or {}) do
97                         local event_name = get_http_event(host, app_path, key);
98                         if event_name then
99                                 if type(handler) ~= "function" then
100                                         local data = handler;
101                                         handler = function () return data; end
102                                 elseif event_name:sub(-2, -1) == "/*" then
103                                         local base_path_len = #event_name:match("/.+$");
104                                         local _handler = handler;
105                                         handler = function (event)
106                                                 local path = event.request.path:sub(base_path_len);
107                                                 return _handler(event, path);
108                                         end;
109                                         module:hook_object_event(server, event_name:sub(1, -3), redir_handler, -1);
110                                 elseif event_name:sub(-1, -1) == "/" then
111                                         module:hook_object_event(server, event_name:sub(1, -2), redir_handler, -1);
112                                 end
113                                 if not app_handlers[event_name] then
114                                         app_handlers[event_name] = handler;
115                                         module:hook_object_event(server, event_name, handler);
116                                 else
117                                         module:log("warn", "App %s added handler twice for '%s', ignoring", app_name, event_name);
118                                 end
119                         else
120                                 module:log("error", "Invalid route in %s, %q. See http://prosody.im/doc/developers/http#routes", app_name, key);
121                         end
122                 end
123                 local services = portmanager.get_active_services();
124                 if services:get("https") or services:get("http") then
125                         module:log("debug", "Serving '%s' at %s", app_name, module:http_url(app_name, app_path));
126                 else
127                         module:log("warn", "Not listening on any ports, '%s' will be unreachable", app_name);
128                 end
129         end
130
131         local function http_app_removed(event)
132                 local app_handlers = apps[event.item.name];
133                 apps[event.item.name] = nil;
134                 for event, handler in pairs(app_handlers) do
135                         module:unhook_object_event(server, event, handler);
136                 end
137         end
138
139         module:handle_items("http-provider", http_app_added, http_app_removed);
140
141         server.add_host(host);
142         function module.unload()
143                 server.remove_host(host);
144         end
145 end
146
147 module:provides("net", {
148         name = "http";
149         listener = server.listener;
150         default_port = 5280;
151         multiplex = {
152                 pattern = "^[A-Z]";
153         };
154 });
155
156 module:provides("net", {
157         name = "https";
158         listener = server.listener;
159         default_port = 5281;
160         encryption = "ssl";
161         ssl_config = {
162                 verify = {
163                         peer = false,
164                         client_once = false,
165                         "none",
166                 }
167         };
168         multiplex = {
169                 pattern = "^[A-Z]";
170         };
171 });