aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/adhoc
diff options
context:
space:
mode:
authorFlorian Zeitz <florob@babelmonkeys.de>2010-08-22 20:48:47 +0200
committerFlorian Zeitz <florob@babelmonkeys.de>2010-08-22 20:48:47 +0200
commitc6b7b0576866581c203710c470b895c0fb8d9500 (patch)
tree64ce02239cee2c999c1b44c4a62d3ef60e6b47c8 /plugins/adhoc
parent79bc5ec98df86b8e1c10d7251488fde3bf883e51 (diff)
downloadprosody-c6b7b0576866581c203710c470b895c0fb8d9500.tar.gz
prosody-c6b7b0576866581c203710c470b895c0fb8d9500.zip
mod_adhoc: Code restructuring
Diffstat (limited to 'plugins/adhoc')
-rw-r--r--plugins/adhoc/mod_adhoc.lua14
1 files changed, 6 insertions, 8 deletions
diff --git a/plugins/adhoc/mod_adhoc.lua b/plugins/adhoc/mod_adhoc.lua
index 41362d81..211956be 100644
--- a/plugins/adhoc/mod_adhoc.lua
+++ b/plugins/adhoc/mod_adhoc.lua
@@ -1,5 +1,6 @@
-- Copyright (C) 2009 Thilo Cestonaro
---
+-- Copyright (C) 2009-2010 Florian Zeitz
+--
-- This file is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--
@@ -15,9 +16,9 @@ module:add_feature(xmlns_cmd);
module:hook("iq/host/"..xmlns_disco.."#items:query", function (event)
local origin, stanza = event.origin, event.stanza;
- local privileged = is_admin(stanza.attr.from, stanza.attr.to);
if stanza.attr.type == "get" and stanza.tags[1].attr.node
and stanza.tags[1].attr.node == xmlns_cmd then
+ local privileged = is_admin(stanza.attr.from, stanza.attr.to);
reply = st.reply(stanza);
reply:tag("query", { xmlns = xmlns_disco.."#items",
node = xmlns_cmd });
@@ -34,15 +35,12 @@ module:hook("iq/host/"..xmlns_disco.."#items:query", function (event)
end
end, 500);
-module:hook("iq/host", function (event)
+module:hook("iq/host/"..xmlns_cmd..":command", function (event)
local origin, stanza = event.origin, event.stanza;
- if stanza.attr.type == "set" and stanza.tags[1]
- and stanza.tags[1].name == "command" then
+ if stanza.attr.type == "set" then
local node = stanza.tags[1].attr.node
- -- TODO: Is this correct, or should is_admin be changed?
- local privileged = is_admin(event.stanza.attr.from)
- or is_admin(stanza.attr.from, stanza.attr.to);
if commands[node] then
+ local privileged = is_admin(stanza.attr.from, stanza.attr.to);
if commands[node].permission == "admin"
and not privileged then
origin.send(st.error_reply(stanza, "auth", "forbidden", "You don't have permission to execute this command"):up()