diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-11-28 02:42:02 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-11-28 02:42:02 +0500 |
commit | a5eb9399da215d8c5692aaa2a2a45a45545e7088 (patch) | |
tree | 740683495e4443e8eb5f770cf143aa90238e50a3 /plugins/mod_iq.lua | |
parent | 0d5c762490ac17068279ee1972a51eb939fa7f9b (diff) | |
download | prosody-a5eb9399da215d8c5692aaa2a2a45a45545e7088.tar.gz prosody-a5eb9399da215d8c5692aaa2a2a45a45545e7088.zip |
mod_iq: Optimized a bit more (fewer table accesses).
Diffstat (limited to 'plugins/mod_iq.lua')
-rw-r--r-- | plugins/mod_iq.lua | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/plugins/mod_iq.lua b/plugins/mod_iq.lua index 256a9419..c201a465 100644 --- a/plugins/mod_iq.lua +++ b/plugins/mod_iq.lua @@ -36,9 +36,10 @@ module:hook("iq/bare", function(data) -- TODO fire post processing events if type == "get" or type == "set" then - local ret = module:fire_event("iq/bare/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + local child = stanza.tags[1]; + local ret = module:fire_event("iq/bare/"..child.attr.xmlns..":"..child.name, data); if ret ~= nil then return ret; end - return module:fire_event("iq-"..type.."/bare/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + return module:fire_event("iq-"..type.."/bare/"..child.attr.xmlns..":"..child.name, data); else module:fire_event("iq-"..type.."/bare/"..stanza.attr.id, data); return true; @@ -51,9 +52,10 @@ module:hook("iq/self", function(data) local type = stanza.attr.type; if type == "get" or type == "set" then - local ret = module:fire_event("iq/self/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + local child = stanza.tags[1]; + local ret = module:fire_event("iq/self/"..child.attr.xmlns..":"..child.name, data); if ret ~= nil then return ret; end - return module:fire_event("iq-"..type.."/self/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + return module:fire_event("iq-"..type.."/self/"..child.attr.xmlns..":"..child.name, data); else module:fire_event("iq-"..type.."/self/"..stanza.attr.id, data); return true; @@ -66,9 +68,10 @@ module:hook("iq/host", function(data) local type = stanza.attr.type; if type == "get" or type == "set" then - local ret = module:fire_event("iq/host/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + local child = stanza.tags[1]; + local ret = module:fire_event("iq/host/"..child.attr.xmlns..":"..child.name, data); if ret ~= nil then return ret; end - return module:fire_event("iq-"..type.."/host/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + return module:fire_event("iq-"..type.."/host/"..child.attr.xmlns..":"..child.name, data); else module:fire_event("iq-"..type.."/host/"..stanza.attr.id, data); return true; |