Software /
code /
prosody-modules
Changeset
3035:60ca0d03f3e3
mod_pastebin: Support the new MUC API in Prosody trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 23 May 2018 00:34:46 +0200 |
parents | 3034:6e9096b66704 |
children | 3036:f7ebf8fcd602 |
files | mod_pastebin/mod_pastebin.lua |
diffstat | 1 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_pastebin/mod_pastebin.lua Mon May 21 00:54:27 2018 +0200 +++ b/mod_pastebin/mod_pastebin.lua Wed May 23 00:34:46 2018 +0200 @@ -6,10 +6,16 @@ local t_remove = table.remove; local add_task = require "util.timer".add_task; local jid_bare = require "util.jid".bare; -local muc_rooms; + +local function get_room_from_jid() end; local is_component = module:get_host_type() == "component"; if is_component then - muc_rooms = module:depends "muc".rooms; + local mod_muc = module:depends "muc"; + local muc_rooms = rawget(mod_muc, "rooms"); + get_room_from_jid = rawget(mod_muc, "get_room_from_jid") or + function (jid) + return muc_rooms[jid]; + end end local utf8_pattern = "[\194-\244][\128-\191]*$"; @@ -96,7 +102,7 @@ -- Only check for MUC presence when loaded on a component. if is_component then - local room = muc_rooms[jid_bare(stanza.attr.to)]; + local room = get_room_from_jid(jid_bare(stanza.attr.to)); if not room then return; end local nick = room._jid_nick[stanza.attr.from];