mod_*: Fix many unnecessary global accesses in modules (already committed to main repo)

This commit is contained in:
Matthew Wild 2009-04-29 02:08:12 +01:00
parent 3ba4121e11
commit e241b85a56
8 changed files with 25 additions and 10 deletions

View file

@ -10,14 +10,19 @@ if module:get_host_type() ~= "component" then
error("Don't load mod_component manually, it should be for a component, please see http://prosody.im/doc/components", 0); error("Don't load mod_component manually, it should be for a component, please see http://prosody.im/doc/components", 0);
end end
local hosts = _G.hosts;
local t_concat = table.concat; local t_concat = table.concat;
local lxp = require "lxp";
local logger = require "util.logger";
local config = require "core.configmanager";
local connlisteners = require "net.connlisteners"; local connlisteners = require "net.connlisteners";
local cm_register_component = require "core.componentmanager".register_component; local cm_register_component = require "core.componentmanager".register_component;
local cm_deregister_component = require "core.componentmanager".deregister_component; local cm_deregister_component = require "core.componentmanager".deregister_component;
local uuid_gen = require "util.uuid".generate; local uuid_gen = require "util.uuid".generate;
local sha1 = require "util.hashes".sha1; local sha1 = require "util.hashes".sha1;
local st = stanza; local st = require "util.stanza";
local init_xmlhandlers = require "core.xmlhandlers"; local init_xmlhandlers = require "core.xmlhandlers";
local sessions = {}; local sessions = {};
@ -211,8 +216,8 @@ connlisteners.register('component', component_listener);
module:add_event_hook("server-started", module:add_event_hook("server-started",
function () function ()
if net_activate_ports then if _G.net_activate_ports then
net_activate_ports("component", "component", {5437}, "tcp"); _G.net_activate_ports("component", "component", {5437}, "tcp");
else else
error("No net_activate_ports: Using an incompatible version of Prosody?"); error("No net_activate_ports: Using an incompatible version of Prosody?");
end end

View file

@ -8,6 +8,7 @@
module.host = "*"; module.host = "*";
local hosts = _G.hosts;
local connlisteners_register = require "net.connlisteners".register; local connlisteners_register = require "net.connlisteners".register;
local console_listener = { default_port = 5582; default_mode = "*l"; }; local console_listener = { default_port = 5582; default_mode = "*l"; };

View file

@ -7,7 +7,7 @@
-- --
local hosts = _G.hosts;
local send_s2s = require "core.s2smanager".send_to_host; local send_s2s = require "core.s2smanager".send_to_host;
local s2s_make_authenticated = require "core.s2smanager".make_authenticated; local s2s_make_authenticated = require "core.s2smanager".make_authenticated;
local s2s_verify_dialback = require "core.s2smanager".verify_dialback; local s2s_verify_dialback = require "core.s2smanager".verify_dialback;

View file

@ -11,6 +11,9 @@
local st = require "util.stanza"; local st = require "util.stanza";
local t_concat = table.concat; local t_concat = table.concat;
local sessionmanager = require "core.sessionmanager";
local usermanager = require "core.usermanager";
module:add_feature("jabber:iq:auth"); module:add_feature("jabber:iq:auth");
module:add_event_hook("stream-features", function (session, features) module:add_event_hook("stream-features", function (session, features)
if not session.username then features:tag("auth", {xmlns='http://jabber.org/features/iq-auth'}):up(); end if not session.username then features:tag("auth", {xmlns='http://jabber.org/features/iq-auth'}):up(); end

View file

@ -6,6 +6,8 @@
-- COPYING file in the source package for more information. -- COPYING file in the source package for more information.
-- --
local datamanager = require "util.datamanager";
local datetime = require "util.datetime";
local register_component = require "core.componentmanager".register_component; local register_component = require "core.componentmanager".register_component;
local deregister_component = require "core.componentmanager".deregister_component; local deregister_component = require "core.componentmanager".deregister_component;

View file

@ -7,8 +7,10 @@
-- --
local hosts = _G.hosts;
local st = require "util.stanza"; local st = require "util.stanza";
local config = require "core.configmanager";
local datamanager = require "util.datamanager";
local usermanager_user_exists = require "core.usermanager".user_exists; local usermanager_user_exists = require "core.usermanager".user_exists;
local usermanager_create_user = require "core.usermanager".create_user; local usermanager_create_user = require "core.usermanager".create_user;
local datamanager_store = require "util.datamanager".store; local datamanager_store = require "util.datamanager".store;

View file

@ -10,8 +10,10 @@
local st = require "util.stanza"; local st = require "util.stanza";
local sm_bind_resource = require "core.sessionmanager".bind_resource; local sm_bind_resource = require "core.sessionmanager".bind_resource;
local sm_make_authenticated = require "core.sessionmanager".make_authenticated;
local base64 = require "util.encodings".base64; local base64 = require "util.encodings".base64;
local datamanager_load = require "util.datamanager".load;
local usermanager_validate_credentials = require "core.usermanager".validate_credentials; local usermanager_validate_credentials = require "core.usermanager".validate_credentials;
local t_concat, t_insert = table.concat, table.insert; local t_concat, t_insert = table.concat, table.insert;
local tostring = tostring; local tostring = tostring;
@ -49,14 +51,14 @@ local function handle_status(session, status)
session.sasl_handler = nil; session.sasl_handler = nil;
elseif status == "success" then elseif status == "success" then
if not session.sasl_handler.username then error("SASL succeeded but we didn't get a username!"); end -- TODO move this to sessionmanager if not session.sasl_handler.username then error("SASL succeeded but we didn't get a username!"); end -- TODO move this to sessionmanager
sessionmanager.make_authenticated(session, session.sasl_handler.username); sm_make_authenticated(session, session.sasl_handler.username);
session.sasl_handler = nil; session.sasl_handler = nil;
session:reset_stream(); session:reset_stream();
end end
end end
local function password_callback(node, host, mechanism, decoder) local function password_callback(node, host, mechanism, decoder)
local password = (datamanager.load(node, host, "accounts") or {}).password; -- FIXME handle hashed passwords local password = (datamanager_load(node, host, "accounts") or {}).password; -- FIXME handle hashed passwords
local func = function(x) return x; end; local func = function(x) return x; end;
if password then if password then
if mechanism == "PLAIN" then if mechanism == "PLAIN" then

View file

@ -8,13 +8,13 @@
require "util.datamanager" local hosts = _G.hosts;
local datamanager = datamanager; local datamanager = require "util.datamanager"
local st = require "util.stanza" local st = require "util.stanza"
local t_concat, t_insert = table.concat, table.insert; local t_concat, t_insert = table.concat, table.insert;
require "util.jid" local jid = require "util.jid"
local jid_split = jid.split; local jid_split = jid.split;
module:add_feature("vcard-temp"); module:add_feature("vcard-temp");