8083501961171645094635cc46c0e49774ddf29d
[prosody.git] / plugins / mod_httpserver.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2009 Matthew Wild
3 -- Copyright (C) 2008-2009 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
10 local httpserver = require "net.httpserver";
11
12 local open = io.open;
13 local t_concat = table.concat;
14
15 local http_base = config.get("*", "core", "http_path") or "www_files";
16
17 local response_400 = { status = "400 Bad Request", body = "<h1>Bad Request</h1>Sorry, we didn't understand your request :(" };
18 local response_404 = { status = "404 Not Found", body = "<h1>Page Not Found</h1>Sorry, we couldn't find what you were looking for :(" };
19
20 -- TODO: Should we read this from /etc/mime.types if it exists? (startup time...?)
21 local mime_map = {
22         html = "text/html";
23         htm = "text/html";
24         xml = "text/xml";
25         xsl = "text/xml";
26         txt = "plain/text; charset=utf-8";
27         js = "text/javascript";
28         css = "text/css";
29 };
30
31 local function preprocess_path(path)
32         if path:sub(1,1) ~= "/" then
33                 path = "/"..path;
34         end
35         local level = 0;
36         for component in path:gmatch("([^/]+)/") do
37                 if component == ".." then
38                         level = level - 1;
39                 elseif component ~= "." then
40                         level = level + 1;
41                 end
42                 if level < 0 then
43                         return nil;
44                 end
45         end
46         return path;
47 end
48
49 function serve_file(path)
50         local f, err = open(http_base..path, "r");
51         if not f then return response_404; end
52         local data = f:read("*a");
53         f:close();
54         local ext = path:match("%.([^.]*)$");
55         local mime = mime_map[ext];
56         if not mime then
57                 mime = ext and "application/octet-stream" or "text/html";
58         end
59         module:log("warn", "ext: %s, mime: %s", ext, mime);
60         return {
61                 headers = { ["Content-Type"] = mime; };
62                 body = data;
63         };
64 end
65
66 local function handle_file_request(method, body, request)
67         local path = preprocess_path(request.url.path);
68         if not path then return response_400; end
69         path = path:gsub("^/[^/]+", ""); -- Strip /files/
70         return serve_file(path);
71 end
72
73 local function handle_default_request(method, body, request)
74         local path = preprocess_path(request.url.path);
75         if not path then return response_400; end
76         return serve_file(path);
77 end
78
79 local ports = config.get(module.host, "core", "http_ports") or { 5280 };
80 httpserver.set_default_handler(handle_default_request);
81 httpserver.new_from_config(ports, handle_file_request, { base = "files" });