764991b8f41037c3866b66371ad7ccc726c16f43
[prosody.git] / plugins / mod_http_files.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 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:depends("http");
10 local lfs = require "lfs";
11
12 local os_date = os.date;
13 local open = io.open;
14 local stat = lfs.attributes;
15
16 local http_base = module:get_option_string("http_files_dir", module:get_option_string("http_path", "www_files"));
17 local dir_indices = module:get_option("http_files_index", { "index.html", "index.htm" });
18 local show_file_list = module:get_option_boolean("http_files_show_list");
19
20 local mime_map = module:shared("mime").types;
21 if not mime_map then
22         mime_map = {
23                 html = "text/html", htm = "text/html",
24                 xml = "application/xml",
25                 txt = "text/plain",
26                 css = "text/css",
27                 js = "application/javascript",
28                 png = "image/png",
29                 gif = "image/gif",
30                 jpeg = "image/jpeg", jpg = "image/jpeg",
31                 svg = "image/svg+xml",
32         };
33         module:shared("mime").types = mime_map;
34
35         local mime_types, err = open(module:get_option_string("mime_types_file", "/etc/mime.types"),"r");
36         if mime_types then
37                 local mime_data = mime_types:read("*a");
38                 mime_types:close();
39                 setmetatable(mime_map, {
40                         __index = function(t, ext)
41                                 local typ = mime_data:match("\n(%S+)[^\n]*%s"..(ext:lower()).."%s") or "application/octet-stream";
42                                 t[ext] = typ;
43                                 return typ;
44                         end
45                 });
46         end
47 end
48
49 local cache = setmetatable({}, { __mode = "kv" }); -- Let the garbage collector have it if it wants to.
50
51 function serve_file(event, path)
52         local request, response = event.request, event.response;
53         local orig_path = request.path;
54         local full_path = http_base.."/"..path;
55         local attr = stat(full_path);
56         if not attr then
57                 return 404;
58         end
59
60         response.headers.last_modified = os_date('!%a, %d %b %Y %H:%M:%S GMT', attr.modification);
61
62         local tag = ("%02x-%x-%x-%x"):format(attr.dev or 0, attr.ino or 0, attr.size or 0, attr.modification or 0);
63         response.headers.etag = tag;
64         if tag == request.headers.if_none_match then
65                 return 304;
66         end
67
68         local data = cache[path];
69         if data then
70                 response.headers.content_type = data.content_type;
71                 data = data.data;
72         elseif attr.mode == "directory" then
73                 if full_path:sub(-1) ~= "/" then
74                         response.headers.location = orig_path.."/";
75                         return 301;
76                 end
77                 for i=1,#dir_indices do
78                         if stat(full_path..dir_indices[i], "mode") == "file" then
79                                 return serve_file(event, path..dir_indices[i]);
80                         end
81                 end
82
83                 if not show_file_list then
84                         return 403;
85                 else
86                         local html = require"util.stanza".stanza("html")
87                                 :tag("head"):tag("title"):text(path):up()
88                                         :tag("meta", { charset="utf-8" }):up()
89                                 :up()
90                                 :tag("body"):tag("h1"):text(path):up()
91                                         :tag("ul");
92                         for file in lfs.dir(full_path) do
93                                 if file:sub(1,1) ~= "." then
94                                         local attr = stat(full_path..file) or {};
95                                         html:tag("li", { class = attr.mode })
96                                                 :tag("a", { href = file }):text(file)
97                                         :up():up();
98                                 end
99                         end
100                         data = "<!DOCTYPE html>\n"..tostring(html);
101                         cache[path] = { data = html, content_type = mime_map.html; hits = 0 };
102                         response.headers.content_type = mime_map.html;
103                 end
104
105         else
106                 local f = open(full_path, "rb");
107                 data = f and f:read("*a");
108                 f:close();
109                 if not data then
110                         return 403;
111                 end
112                 local ext = path:match("%.([^.]*)$");
113                 local content_type = mime_map[ext];
114                 cache[path] = { data = data; content_type = content_type; };
115                 response.headers.content_type = content_type;
116         end
117
118         return response:send(data);
119 end
120
121 module:provides("http", {
122         route = {
123                 ["GET /*"] = serve_file;
124         };
125 });
126