aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/adhoc
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2011-12-10 05:45:07 +0000
committerMatthew Wild <mwild1@gmail.com>2011-12-10 05:45:07 +0000
commit78a5742d5d0feda55680168cb4b54a1b1e6bfde6 (patch)
tree1d714f798e06a2f2127ff9c8813dcb4359451368 /plugins/adhoc
parent5a64ace81c91f534637555c60ee35dbfa5f6ac26 (diff)
downloadprosody-78a5742d5d0feda55680168cb4b54a1b1e6bfde6.tar.gz
prosody-78a5742d5d0feda55680168cb4b54a1b1e6bfde6.zip
mod_adhoc: Use module:handle_items()
Diffstat (limited to 'plugins/adhoc')
-rw-r--r--plugins/adhoc/mod_adhoc.lua16
1 files changed, 5 insertions, 11 deletions
diff --git a/plugins/adhoc/mod_adhoc.lua b/plugins/adhoc/mod_adhoc.lua
index 6d826338..49d07103 100644
--- a/plugins/adhoc/mod_adhoc.lua
+++ b/plugins/adhoc/mod_adhoc.lua
@@ -90,19 +90,13 @@ module:hook("iq/host/"..xmlns_cmd..":command", function (event)
end
end, 500);
-local function handle_item_added(item)
+local function adhoc_added(event)
+ local item = event.item;
commands[item.node] = item;
end
-module:hook("item-added/adhoc", function (event)
- return handle_item_added(event.item);
-end, 500);
-
-module:hook("item-removed/adhoc", function (event)
+local function adhoc_removed(event)
commands[event.item.node] = nil;
-end, 500);
-
--- Pick up any items that are already added
-for _, item in ipairs(module:get_host_items("adhoc")) do
- handle_item_added(item);
end
+
+module:handle_items("adhoc", adhoc_added, adhoc_removed);