aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-11-28 02:37:18 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-11-28 02:37:18 +0500
commit5c91168bc8d4746e82478a208c8d087145d956fe (patch)
tree47df42d266520510e6e9993c831c790450c712c6 /plugins
parent2f3a3c656759980dd3be17dfc2f41819a347f3ac (diff)
downloadprosody-5c91168bc8d4746e82478a208c8d087145d956fe.tar.gz
prosody-5c91168bc8d4746e82478a208c8d087145d956fe.zip
mod_iq: Optimized a bit (fewer table accesses).
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_iq.lua21
1 files changed, 12 insertions, 9 deletions
diff --git a/plugins/mod_iq.lua b/plugins/mod_iq.lua
index bc203993..256a9419 100644
--- a/plugins/mod_iq.lua
+++ b/plugins/mod_iq.lua
@@ -32,14 +32,15 @@ end);
module:hook("iq/bare", function(data)
-- IQ to bare JID recieved
local origin, stanza = data.origin, data.stanza;
+ local type = stanza.attr.type;
-- TODO fire post processing events
- if stanza.attr.type == "get" or stanza.attr.type == "set" then
+ if type == "get" or type == "set" then
local ret = module:fire_event("iq/bare/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
if ret ~= nil then return ret; end
- return module:fire_event("iq-"..stanza.attr.type.."/bare/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
+ return module:fire_event("iq-"..type.."/bare/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
else
- module:fire_event("iq-"..stanza.attr.type.."/bare/"..stanza.attr.id, data);
+ module:fire_event("iq-"..type.."/bare/"..stanza.attr.id, data);
return true;
end
end);
@@ -47,13 +48,14 @@ end);
module:hook("iq/self", function(data)
-- IQ to self JID recieved
local origin, stanza = data.origin, data.stanza;
+ local type = stanza.attr.type;
- if stanza.attr.type == "get" or stanza.attr.type == "set" then
+ if type == "get" or type == "set" then
local ret = module:fire_event("iq/self/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
if ret ~= nil then return ret; end
- return module:fire_event("iq-"..stanza.attr.type.."/self/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
+ return module:fire_event("iq-"..type.."/self/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
else
- module:fire_event("iq-"..stanza.attr.type.."/self/"..stanza.attr.id, data);
+ module:fire_event("iq-"..type.."/self/"..stanza.attr.id, data);
return true;
end
end);
@@ -61,13 +63,14 @@ end);
module:hook("iq/host", function(data)
-- IQ to a local host recieved
local origin, stanza = data.origin, data.stanza;
+ local type = stanza.attr.type;
- if stanza.attr.type == "get" or stanza.attr.type == "set" then
+ if type == "get" or type == "set" then
local ret = module:fire_event("iq/host/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
if ret ~= nil then return ret; end
- return module:fire_event("iq-"..stanza.attr.type.."/host/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
+ return module:fire_event("iq-"..type.."/host/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
else
- module:fire_event("iq-"..stanza.attr.type.."/host/"..stanza.attr.id, data);
+ module:fire_event("iq-"..type.."/host/"..stanza.attr.id, data);
return true;
end
end);