Software /
code /
prosody-modules
File
mod_muc_batched_probe/mod_muc_batched_probe.lua @ 4049:78f1de5301fc
mod_adhoc_dataforms_demo: Fix duplicate field prevention
It's supposed to only include each type of form field once per form at
most but it didn't note which fields it had added already. No idea what
the probability was anyways, probably pretty low.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 23 Jun 2020 19:40:55 +0200 |
parent | 4007:845d13ab0dc0 |
child | 4188:4611999fd8d3 |
line wrap: on
line source
-- This module allows you to probe the MUC presences for multiple occupants. -- Copyright (C) 2020 JC Brand local st = require "util.stanza"; local mod_muc = module:depends"muc"; local get_room_from_jid = rawget(mod_muc, "get_room_from_jid") or function (jid) local rooms = rawget(mod_muc, "rooms"); return rooms[jid]; end module:log("debug", "Module loaded"); local function respondToBatchedProbe(event) local stanza = event.stanza; if stanza.attr.type ~= "get" then return; end local query = stanza:get_child("query", "http://jabber.org/protocol/muc#user"); if not query then return; end; local room = get_room_from_jid(stanza.attr.to); for item in query:children() do local probed_jid = item.attr.jid; room:respond_to_probe(stanza.attr.from, probed_jid); end event.origin.send(st.reply(stanza)); return true; end module:hook("iq/bare", respondToBatchedProbe, 1);