# HG changeset patch # User Kim Alvefur # Date 1658177274 -7200 # Node ID 75b6e5df65f978dcbf183438d368f6d805f19aa2 # Parent 733e5513f69184c51bcb2ac8f017be48afa28400 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 diff -r 733e5513f691 -r 75b6e5df65f9 mod_conversejs/mod_conversejs.lua --- a/mod_conversejs/mod_conversejs.lua Mon Jul 18 13:58:27 2022 +0200 +++ b/mod_conversejs/mod_conversejs.lua Mon Jul 18 22:47:54 2022 +0200 @@ -29,11 +29,11 @@ local resources = module:get_option_path("conversejs_resources"); if resources then local serve; - if not pcall(function() + if prosody.process_type == "prosody" then -- Prosody >= trunk / 0.12 local http_files = require "net.http.files"; serve = http_files.serve; - end) then + else -- Prosody <= 0.11 serve = module:depends "http_files".serve; end diff -r 733e5513f691 -r 75b6e5df65f9 mod_http_libjs/mod_http_libjs.lua --- a/mod_http_libjs/mod_http_libjs.lua Mon Jul 18 13:58:27 2022 +0200 +++ b/mod_http_libjs/mod_http_libjs.lua Mon Jul 18 22:47:54 2022 +0200 @@ -4,10 +4,10 @@ }; local serve; -if not pcall(function () +if prosody.process_type == "prosody" then local http_files = require "net.http.files"; serve = http_files.serve; -end) then +else serve = module:depends"http_files".serve; end diff -r 733e5513f691 -r 75b6e5df65f9 mod_http_upload/mod_http_upload.lua --- a/mod_http_upload/mod_http_upload.lua Mon Jul 18 13:58:27 2022 +0200 +++ b/mod_http_upload/mod_http_upload.lua Mon Jul 18 22:47:54 2022 +0200 @@ -57,9 +57,9 @@ local http_files; -if not pcall(function () +if prosody.process_type == "prosody" then http_files = require "net.http.files"; -end) then +else http_files = module:depends"http_files"; end diff -r 733e5513f691 -r 75b6e5df65f9 mod_invite/mod_invite.lua --- a/mod_invite/mod_invite.lua Mon Jul 18 13:58:27 2022 +0200 +++ b/mod_invite/mod_invite.lua Mon Jul 18 22:47:54 2022 +0200 @@ -13,10 +13,10 @@ local inviter_storage = module:open_store("inviter"); local serve; -if not pcall(function () +if prosody.process_type == "prosody" then local http_files = require "net.http.files"; serve = http_files.serve; -end) then +else serve = module:depends"http_files".serve; end diff -r 733e5513f691 -r 75b6e5df65f9 mod_invites_page/mod_invites_page.lua --- a/mod_invites_page/mod_invites_page.lua Mon Jul 18 13:58:27 2022 +0200 +++ b/mod_invites_page/mod_invites_page.lua Mon Jul 18 22:47:54 2022 +0200 @@ -33,9 +33,10 @@ -- Load HTTP-serving dependencies if prosody.shutdown then -- not if running under prosodyctl module:depends("http"); - if not pcall(function () + + if prosody.process_type == "prosody" then http_files = require "net.http.files"; - end) then + else http_files = module:depends"http_files"; end end diff -r 733e5513f691 -r 75b6e5df65f9 mod_jsxc/mod_jsxc.lua --- a/mod_jsxc/mod_jsxc.lua Mon Jul 18 13:58:27 2022 +0200 +++ b/mod_jsxc/mod_jsxc.lua Mon Jul 18 22:47:54 2022 +0200 @@ -20,11 +20,11 @@ local resources = module:get_option_path("jsxc_resources"); if resources then local serve; - if not pcall(function() + if prosody.process_type == "prosody" then -- Prosody >= trunk / 0.12 local http_files = require "net.http.files"; serve = http_files.serve; - end) then + else -- Prosody <= 0.11 serve = module:depends "http_files".serve; end diff -r 733e5513f691 -r 75b6e5df65f9 mod_password_reset/mod_password_reset.lua --- a/mod_password_reset/mod_password_reset.lua Mon Jul 18 13:58:27 2022 +0200 +++ b/mod_password_reset/mod_password_reset.lua Mon Jul 18 22:47:54 2022 +0200 @@ -14,10 +14,10 @@ local max_token_age = module:get_option_number("password_reset_validity", 86400); local serve; -if not pcall(function () +if prosody.process_type == "prosody" then local http_files = require "net.http.files"; serve = http_files.serve; -end) then +else serve = module:depends"http_files".serve; end diff -r 733e5513f691 -r 75b6e5df65f9 mod_register_apps/mod_register_apps.lua --- a/mod_register_apps/mod_register_apps.lua Mon Jul 18 13:58:27 2022 +0200 +++ b/mod_register_apps/mod_register_apps.lua Mon Jul 18 22:47:54 2022 +0200 @@ -1,10 +1,10 @@ -- luacheck: ignore 631 module:depends("http"); local http_files -if not pcall(function() +if prosody.process_type == "prosody" then -- Prosody >= 0.12 http_files = require "net.http.files"; -end) then +else -- Prosody <= 0.11 http_files = module:depends "http_files"; end diff -r 733e5513f691 -r 75b6e5df65f9 mod_welcome_page/mod_welcome_page.lua --- a/mod_welcome_page/mod_welcome_page.lua Mon Jul 18 13:58:27 2022 +0200 +++ b/mod_welcome_page/mod_welcome_page.lua Mon Jul 18 22:47:54 2022 +0200 @@ -62,10 +62,10 @@ end local http_files -if not pcall(function() +if prosody.process_type == "prosody" then -- Prosody >= 0.12 http_files = require "net.http.files"; -end) then +else -- Prosody <= 0.11 http_files = module:depends "http_files"; end