aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/occupant.lib.lua
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2014-06-05 17:07:14 -0400
committerdaurnimator <quae@daurnimator.com>2014-06-05 17:07:14 -0400
commit38f33840a2670fffdb019284b49c5fd23c75a7a4 (patch)
tree87cbe024b36c3991e170e4ecc1164bf31a8344d2 /plugins/muc/occupant.lib.lua
parentcc0208bd0602f2472db06cd8d54e988c782f2891 (diff)
downloadprosody-38f33840a2670fffdb019284b49c5fd23c75a7a4.tar.gz
prosody-38f33840a2670fffdb019284b49c5fd23c75a7a4.zip
plugins/muc: Move 'x' filtering from occupant to util
Diffstat (limited to 'plugins/muc/occupant.lib.lua')
-rw-r--r--plugins/muc/occupant.lib.lua17
1 files changed, 3 insertions, 14 deletions
diff --git a/plugins/muc/occupant.lib.lua b/plugins/muc/occupant.lib.lua
index 6a3f7df4..d59252e2 100644
--- a/plugins/muc/occupant.lib.lua
+++ b/plugins/muc/occupant.lib.lua
@@ -2,21 +2,10 @@ local next = next;
local pairs = pairs;
local setmetatable = setmetatable;
local st = require "util.stanza";
+local util = module:require "muc/util";
-local get_filtered_presence do
- local presence_filters = {
- ["http://jabber.org/protocol/muc"] = true;
- ["http://jabber.org/protocol/muc#user"] = true;
- }
- local function presence_filter(tag)
- if presence_filters[tag.attr.xmlns] then
- return nil;
- end
- return tag;
- end
- function get_filtered_presence(stanza)
- return st.clone(stanza):maptags(presence_filter);
- end
+local function get_filtered_presence(stanza)
+ return util.filter_muc_x(st.clone(stanza));
end
local occupant_mt = {};