comparison mod_jsxc/mod_jsxc.lua @ 4976:75b6e5df65f9

various: Improve error reporting if missing file server module on 0.12 If there is some error loading net.http.files then it would be swallowed by the pcall and then it would proceed to trying mod_http_files, which might cause unexpected behavior on 0.12 Ref #1765
author Kim Alvefur <zash@zash.se>
date Mon, 18 Jul 2022 22:47:54 +0200
parents 4bdfd83e091f
children
comparison
equal deleted inserted replaced
4975:733e5513f691 4976:75b6e5df65f9
18 18
19 local serve_dist = nil; 19 local serve_dist = nil;
20 local resources = module:get_option_path("jsxc_resources"); 20 local resources = module:get_option_path("jsxc_resources");
21 if resources then 21 if resources then
22 local serve; 22 local serve;
23 if not pcall(function() 23 if prosody.process_type == "prosody" then
24 -- Prosody >= trunk / 0.12 24 -- Prosody >= trunk / 0.12
25 local http_files = require "net.http.files"; 25 local http_files = require "net.http.files";
26 serve = http_files.serve; 26 serve = http_files.serve;
27 end) then 27 else
28 -- Prosody <= 0.11 28 -- Prosody <= 0.11
29 serve = module:depends "http_files".serve; 29 serve = module:depends "http_files".serve;
30 end 30 end
31 local mime_map = module:shared("/*/http_files/mime").types or { css = "text/css", js = "application/javascript" }; 31 local mime_map = module:shared("/*/http_files/mime").types or { css = "text/css", js = "application/javascript" };
32 serve_dist = serve({ path = resources, mime_map = mime_map }); 32 serve_dist = serve({ path = resources, mime_map = mime_map });