Merge 0.9->0.10
[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 ports_by_scheme = { http = 80, https = 443, };
49
50 -- Helper to deduce a module's external URL
51 function moduleapi.http_url(module, app_name, default_path)
52         app_name = app_name or (module.name:gsub("^http_", ""));
53         local external_url = url_parse(module:get_option_string("http_external_url")) or {};
54         if external_url.scheme and external_url.port == nil then
55                 external_url.port = ports_by_scheme[external_url.scheme];
56         end
57         local services = portmanager.get_active_services();
58         local http_services = services:get("https") or services:get("http") or {};
59         for interface, ports in pairs(http_services) do
60                 for port, services in pairs(ports) do
61                         local url = {
62                                 scheme = (external_url.scheme or services[1].service.name);
63                                 host = (external_url.host or module:get_option_string("http_host", module.host));
64                                 port = tonumber(external_url.port) or port or 80;
65                                 path = normalize_path(external_url.path or "/")..
66                                         (get_base_path(module, app_name, default_path or "/"..app_name):sub(2));
67                         }
68                         if ports_by_scheme[url.scheme] == url.port then url.port = nil end
69                         return url_build(url);
70                 end
71         end
72 end
73
74 function module.add_host(module)
75         local host = module:get_option_string("http_host", module.host);
76         local apps = {};
77         module.environment.apps = apps;
78         local function http_app_added(event)
79                 local app_name = event.item.name;
80                 local default_app_path = event.item.default_path or "/"..app_name;
81                 local app_path = get_base_path(module, app_name, default_app_path);
82                 if not app_name then
83                         -- TODO: Link to docs
84                         module:log("error", "HTTP app has no 'name', add one or use module:provides('http', app)");
85                         return;
86                 end
87                 apps[app_name] = apps[app_name] or {};
88                 local app_handlers = apps[app_name];
89                 for key, handler in pairs(event.item.route or {}) do
90                         local event_name = get_http_event(host, app_path, key);
91                         if event_name then
92                                 if type(handler) ~= "function" then
93                                         local data = handler;
94                                         handler = function () return data; end
95                                 elseif event_name:sub(-2, -1) == "/*" then
96                                         local base_path_len = #event_name:match("/.+$");
97                                         local _handler = handler;
98                                         handler = function (event)
99                                                 local path = event.request.path:sub(base_path_len);
100                                                 return _handler(event, path);
101                                         end;
102                                 end
103                                 if not app_handlers[event_name] then
104                                         app_handlers[event_name] = handler;
105                                         module:hook_object_event(server, event_name, handler);
106                                 else
107                                         module:log("warn", "App %s added handler twice for '%s', ignoring", app_name, event_name);
108                                 end
109                         else
110                                 module:log("error", "Invalid route in %s, %q. See http://prosody.im/doc/developers/http#routes", app_name, key);
111                         end
112                 end
113         end
114
115         local function http_app_removed(event)
116                 local app_handlers = apps[event.item.name];
117                 apps[event.item.name] = nil;
118                 for event, handler in pairs(app_handlers) do
119                         module:unhook_object_event(server, event, handler);
120                 end
121         end
122
123         module:handle_items("http-provider", http_app_added, http_app_removed);
124
125         server.add_host(host);
126         function module.unload()
127                 server.remove_host(host);
128         end
129 end
130
131 module:provides("net", {
132         name = "http";
133         listener = server.listener;
134         default_port = 5280;
135         multiplex = {
136                 pattern = "^[A-Z]";
137         };
138 });
139
140 module:provides("net", {
141         name = "https";
142         listener = server.listener;
143         default_port = 5281;
144         encryption = "ssl";
145         ssl_config = { verify = "none" };
146         multiplex = {
147                 pattern = "^[A-Z]";
148         };
149 });