Mercurial > prosody-modules
annotate mod_muc_batched_probe/mod_muc_batched_probe.lua @ 4188:4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
That method assumes it's responding to a `<presence>` stanza, which breaks for
the bached probe use-case.
| author | JC Brand <jc@opkode.com> |
|---|---|
| date | Mon, 12 Oct 2020 13:21:16 +0200 |
| parents | 845d13ab0dc0 |
| children | e06258fc6cf1 |
| rev | line source |
|---|---|
| 4000 | 1 -- This module allows you to probe the MUC presences for multiple occupants. |
| 2 -- Copyright (C) 2020 JC Brand | |
| 3 | |
| 4 local st = require "util.stanza"; | |
| 5 local mod_muc = module:depends"muc"; | |
| 6 local get_room_from_jid = rawget(mod_muc, "get_room_from_jid") or | |
| 7 function (jid) | |
| 8 local rooms = rawget(mod_muc, "rooms"); | |
| 9 return rooms[jid]; | |
| 10 end | |
| 11 | |
| 12 module:log("debug", "Module loaded"); | |
| 13 | |
| 14 | |
| 15 local function respondToBatchedProbe(event) | |
| 16 local stanza = event.stanza; | |
| 17 if stanza.attr.type ~= "get" then | |
| 18 return; | |
| 19 end | |
| 20 local query = stanza:get_child("query", "http://jabber.org/protocol/muc#user"); | |
| 21 if not query then | |
| 22 return; | |
| 23 end; | |
| 24 | |
|
4188
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
25 local origin = event.origin; |
| 4000 | 26 local room = get_room_from_jid(stanza.attr.to); |
|
4188
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
27 local probing_occupant = room:get_occupant_by_real_jid(stanza.attr.from); |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
28 if probing_occupant == nil then |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
29 origin.send(st.error_reply(stanza, "cancel", "not-acceptable", "You are not currently connected to this chat", room.jid)); |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
30 return true; |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
31 end |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
32 |
|
4007
845d13ab0dc0
mod_muc_batched_probe: Call instance method
JC Brand <jc@opkode.com>
parents:
4000
diff
changeset
|
33 for item in query:children() do |
| 4000 | 34 local probed_jid = item.attr.jid; |
|
4188
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
35 local probed_occupant = room:get_occupant_by_nick(probed_jid); |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
36 if probed_occupant == nil then |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
37 local pr = room:build_unavailable_presence(probed_jid, stanza.attr.from); |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
38 if pr then |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
39 room:route_stanza(pr); |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
40 end |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
41 return; |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
42 end |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
43 local x = st.stanza("x", {xmlns = "http://jabber.org/protocol/muc#user"}); |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
44 room:publicise_occupant_status(probed_occupant, x, nil, nil, nil, nil, false, probing_occupant); |
|
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
45 |
| 4000 | 46 end |
|
4188
4611999fd8d3
mod_muc_batched_probe: don't rely on mt_room:respond_to_probe method
JC Brand <jc@opkode.com>
parents:
4007
diff
changeset
|
47 origin.send(st.reply(stanza)); |
| 4000 | 48 return true; |
| 49 end | |
| 50 | |
| 51 | |
| 52 module:hook("iq/bare", respondToBatchedProbe, 1); |
