You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mod_muc_lobby_rooms.lua 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. -- This module added under the main virtual host domain
  2. -- It needs a lobby muc component
  3. --
  4. -- VirtualHost "jitmeet.example.com"
  5. -- modules_enabled = {
  6. -- "muc_lobby_rooms"
  7. -- }
  8. -- lobby_muc = "lobby.jitmeet.example.com"
  9. -- main_muc = "conference.jitmeet.example.com"
  10. --
  11. -- Component "lobby.jitmeet.example.com" "muc"
  12. -- storage = "memory"
  13. -- muc_room_cache_size = 1000
  14. -- restrict_room_creation = true
  15. -- muc_room_locking = false
  16. -- muc_room_default_public_jids = true
  17. --
  18. -- we use async to detect Prosody 0.10 and earlier
  19. local have_async = pcall(require, 'util.async');
  20. if not have_async then
  21. module:log('warn', 'Lobby rooms will not work with Prosody version 0.10 or less.');
  22. return;
  23. end
  24. local formdecode = require "util.http".formdecode;
  25. local jid_split = require 'util.jid'.split;
  26. local jid_bare = require 'util.jid'.bare;
  27. local json = require 'util.json';
  28. local filters = require 'util.filters';
  29. local st = require 'util.stanza';
  30. local MUC_NS = 'http://jabber.org/protocol/muc';
  31. local DISCO_INFO_NS = 'http://jabber.org/protocol/disco#info';
  32. local DISPLAY_NAME_REQUIRED_FEATURE = 'http://jitsi.org/protocol/lobbyrooms#displayname_required';
  33. local LOBBY_IDENTITY_TYPE = 'lobbyrooms';
  34. local NOTIFY_JSON_MESSAGE_TYPE = 'lobby-notify';
  35. local NOTIFY_LOBBY_ENABLED = 'LOBBY-ENABLED';
  36. local NOTIFY_LOBBY_ACCESS_GRANTED = 'LOBBY-ACCESS-GRANTED';
  37. local NOTIFY_LOBBY_ACCESS_DENIED = 'LOBBY-ACCESS-DENIED';
  38. local is_healthcheck_room = module:require 'util'.is_healthcheck_room;
  39. local main_muc_component_config = module:get_option_string('main_muc');
  40. if main_muc_component_config == nil then
  41. module:log('error', 'lobby not enabled missing main_muc config');
  42. return ;
  43. end
  44. local lobby_muc_component_config = module:get_option_string('lobby_muc');
  45. if lobby_muc_component_config == nil then
  46. module:log('error', 'lobby not enabled missing lobby_muc config');
  47. return ;
  48. end
  49. local whitelist;
  50. local check_display_name_required;
  51. local function load_config()
  52. whitelist = module:get_option_set('muc_lobby_whitelist', {});
  53. check_display_name_required
  54. = module:get_option_boolean('muc_lobby_check_display_name_required', true);
  55. end
  56. load_config();
  57. local lobby_muc_service;
  58. local main_muc_service;
  59. -- Checks whether there is status in the <x node
  60. function check_status(muc_x, status)
  61. if not muc_x then
  62. return false;
  63. end
  64. for statusNode in muc_x:childtags('status') do
  65. if statusNode.attr.code == status then
  66. return true;
  67. end
  68. end
  69. return false;
  70. end
  71. function broadcast_json_msg(room, from, json_msg)
  72. json_msg.type = NOTIFY_JSON_MESSAGE_TYPE;
  73. local occupant = room:get_occupant_by_real_jid(from);
  74. if occupant then
  75. room:broadcast_message(
  76. st.message({ type = 'groupchat', from = occupant.nick })
  77. :tag('json-message', {xmlns='http://jitsi.org/jitmeet'})
  78. :text(json.encode(json_msg)):up());
  79. end
  80. end
  81. -- Sends a json message notifying for lobby enabled/disable
  82. -- the message from is the actor that did the operation
  83. function notify_lobby_enabled(room, actor, value)
  84. broadcast_json_msg(room, actor, {
  85. event = NOTIFY_LOBBY_ENABLED,
  86. value = value
  87. });
  88. end
  89. -- Sends a json message notifying that the jid was granted/denied access in lobby
  90. -- the message from is the actor that did the operation
  91. function notify_lobby_access(room, actor, jid, display_name, granted)
  92. local notify_json = {
  93. value = jid,
  94. name = display_name
  95. };
  96. if granted then
  97. notify_json.event = NOTIFY_LOBBY_ACCESS_GRANTED;
  98. else
  99. notify_json.event = NOTIFY_LOBBY_ACCESS_DENIED;
  100. end
  101. broadcast_json_msg(room, actor, notify_json);
  102. end
  103. function filter_stanza(stanza)
  104. if not stanza.attr or not stanza.attr.from or not main_muc_service then
  105. return stanza;
  106. end
  107. -- Allow self-presence (code=110)
  108. local node, from_domain = jid_split(stanza.attr.from);
  109. if from_domain == lobby_muc_component_config then
  110. if stanza.name == 'presence' then
  111. local muc_x = stanza:get_child('x', MUC_NS..'#user');
  112. if check_status(muc_x, '110') then
  113. return stanza;
  114. end
  115. -- check is an owner, only owners can receive the presence
  116. local room = main_muc_service.get_room_from_jid(jid_bare(node .. '@' .. main_muc_component_config));
  117. if not room or room.get_affiliation(room, stanza.attr.to) == 'owner' then
  118. return stanza;
  119. end
  120. return nil;
  121. elseif stanza.name == 'iq' and stanza:get_child('query', DISCO_INFO_NS) then
  122. -- allow disco info from the lobby component
  123. return stanza;
  124. end
  125. return nil;
  126. else
  127. return stanza;
  128. end
  129. end
  130. function filter_session(session)
  131. if session.host and session.host == module.host then
  132. -- domain mapper is filtering on default priority 0, and we need it after that
  133. filters.add_filter(session, 'stanzas/out', filter_stanza, -1);
  134. end
  135. end
  136. function attach_lobby_room(room)
  137. local node = jid_split(room.jid);
  138. local lobby_room_jid = node .. '@' .. lobby_muc_component_config;
  139. if not lobby_muc_service.get_room_from_jid(lobby_room_jid) then
  140. local new_room = lobby_muc_service.create_room(lobby_room_jid);
  141. -- set persistent the lobby room to avoid it to be destroyed
  142. -- there are cases like when selecting new moderator after the current one leaves
  143. -- which can leave the room with no occupants and it will be destroyed and we want to
  144. -- avoid lobby destroy while it is enabled
  145. new_room:set_persistent(true);
  146. module:log("debug","Lobby room jid = %s created",lobby_room_jid);
  147. new_room.main_room = room;
  148. room._data.lobbyroom = new_room.jid;
  149. room:save(true);
  150. return true
  151. end
  152. return false
  153. end
  154. -- destroys lobby room for the supplied main room
  155. function destroy_lobby_room(room, newjid, message)
  156. if not message then
  157. message = 'Lobby room closed.';
  158. end
  159. if lobby_muc_service and room and room._data.lobbyroom then
  160. local lobby_room_obj = lobby_muc_service.get_room_from_jid(room._data.lobbyroom);
  161. if lobby_room_obj then
  162. lobby_room_obj:set_persistent(false);
  163. lobby_room_obj:destroy(newjid, message);
  164. end
  165. room._data.lobbyroom = nil;
  166. end
  167. end
  168. -- process a host module directly if loaded or hooks to wait for its load
  169. function process_host_module(name, callback)
  170. local function process_host(host)
  171. if host == name then
  172. callback(module:context(host), host);
  173. end
  174. end
  175. if prosody.hosts[name] == nil then
  176. module:log('debug', 'No host/component found, will wait for it: %s', name)
  177. -- when a host or component is added
  178. prosody.events.add_handler('host-activated', process_host);
  179. else
  180. process_host(name);
  181. end
  182. end
  183. -- operates on already loaded lobby muc module
  184. function process_lobby_muc_loaded(lobby_muc, host_module)
  185. module:log('debug', 'Lobby muc loaded');
  186. lobby_muc_service = lobby_muc;
  187. -- enable filtering presences in the lobby muc rooms
  188. filters.add_filter_hook(filter_session);
  189. -- Advertise lobbyrooms support on main domain so client can pick up the address and use it
  190. module:add_identity('component', LOBBY_IDENTITY_TYPE, lobby_muc_component_config);
  191. -- Tag the disco#info response with a feature that display name is required
  192. -- when the conference name from the web request has a lobby enabled.
  193. host_module:hook('host-disco-info-node', function (event)
  194. local session, reply, node = event.origin, event.reply, event.node;
  195. if node == LOBBY_IDENTITY_TYPE
  196. and session.jitsi_web_query_room
  197. and main_muc_service
  198. and check_display_name_required then
  199. local room = main_muc_service.get_room_from_jid(
  200. jid_bare(session.jitsi_web_query_room .. '@' .. main_muc_component_config));
  201. if room and room._data.lobbyroom then
  202. reply:tag('feature', { var = DISPLAY_NAME_REQUIRED_FEATURE }):up();
  203. end
  204. end
  205. event.exists = true;
  206. end);
  207. local room_mt = lobby_muc_service.room_mt;
  208. -- we base affiliations (roles) in lobby muc component to be based on the roles in the main muc
  209. room_mt.get_affiliation = function(room, jid)
  210. if not room.main_room then
  211. module:log('error', 'No main room(%s) for %s!', room.jid, jid);
  212. return 'none';
  213. end
  214. -- moderators in main room are moderators here
  215. local role = room.main_room.get_affiliation(room.main_room, jid);
  216. if role then
  217. return role;
  218. end
  219. return 'none';
  220. end
  221. -- listens for kicks in lobby room, 307 is the status for kick according to xep-0045
  222. host_module:hook('muc-broadcast-presence', function (event)
  223. local actor, occupant, room, x = event.actor, event.occupant, event.room, event.x;
  224. if check_status(x, '307') then
  225. local display_name = occupant:get_presence():get_child_text(
  226. 'nick', 'http://jabber.org/protocol/nick');
  227. -- we need to notify in the main room
  228. notify_lobby_access(room.main_room, actor, occupant.nick, display_name, false);
  229. end
  230. end);
  231. end
  232. -- process or waits to process the lobby muc component
  233. process_host_module(lobby_muc_component_config, function(host_module, host)
  234. -- lobby muc component created
  235. module:log('info', 'Lobby component loaded %s', host);
  236. local muc_module = prosody.hosts[host].modules.muc;
  237. if muc_module then
  238. process_lobby_muc_loaded(muc_module, host_module);
  239. else
  240. module:log('debug', 'Will wait for muc to be available');
  241. prosody.hosts[host].events.add_handler('module-loaded', function(event)
  242. if (event.module == 'muc') then
  243. process_lobby_muc_loaded(prosody.hosts[host].modules.muc, host_module);
  244. end
  245. end);
  246. end
  247. end);
  248. -- process or waits to process the main muc component
  249. process_host_module(main_muc_component_config, function(host_module, host)
  250. main_muc_service = prosody.hosts[host].modules.muc;
  251. -- hooks when lobby is enabled to create its room, only done here or by admin
  252. host_module:hook('muc-config-submitted', function(event)
  253. local actor, room = event.actor, event.room;
  254. local actor_node = jid_split(actor);
  255. if actor_node == 'focus' then
  256. return;
  257. end
  258. local members_only = event.fields['muc#roomconfig_membersonly'] and true or nil;
  259. if members_only then
  260. local lobby_created = attach_lobby_room(room);
  261. if lobby_created then
  262. event.status_codes['104'] = true;
  263. notify_lobby_enabled(room, actor, true);
  264. end
  265. elseif room._data.lobbyroom then
  266. destroy_lobby_room(room, room.jid);
  267. notify_lobby_enabled(room, actor, false);
  268. end
  269. end);
  270. host_module:hook('muc-room-destroyed',function(event)
  271. local room = event.room;
  272. if room._data.lobbyroom then
  273. destroy_lobby_room(room, nil);
  274. end
  275. end);
  276. host_module:hook('muc-disco#info', function (event)
  277. local room = event.room;
  278. if (room._data.lobbyroom and room:get_members_only()) then
  279. table.insert(event.form, {
  280. name = 'muc#roominfo_lobbyroom';
  281. label = 'Lobby room jid';
  282. value = '';
  283. });
  284. event.formdata['muc#roominfo_lobbyroom'] = room._data.lobbyroom;
  285. end
  286. end);
  287. host_module:hook('muc-occupant-pre-join', function (event)
  288. local room, stanza = event.room, event.stanza;
  289. if is_healthcheck_room(room.jid) or not room:get_members_only() then
  290. return;
  291. end
  292. local join = stanza:get_child('x', MUC_NS);
  293. if not join then
  294. return;
  295. end
  296. local invitee = event.stanza.attr.from;
  297. local invitee_bare_jid = jid_bare(invitee);
  298. local _, invitee_domain = jid_split(invitee);
  299. local whitelistJoin = false;
  300. -- whitelist participants
  301. if whitelist:contains(invitee_domain) or whitelist:contains(invitee_bare_jid) then
  302. whitelistJoin = true;
  303. end
  304. local password = join:get_child_text('password', MUC_NS);
  305. if password and room:get_password() and password == room:get_password() then
  306. whitelistJoin = true;
  307. end
  308. if whitelistJoin then
  309. local affiliation = room:get_affiliation(invitee);
  310. if not affiliation or affiliation == 0 then
  311. event.occupant.role = 'participant';
  312. room:set_affiliation(true, invitee_bare_jid, 'member');
  313. room:save();
  314. return;
  315. end
  316. end
  317. -- we want to add the custom lobbyroom field to fill in the lobby room jid
  318. local invitee = event.stanza.attr.from;
  319. local affiliation = room:get_affiliation(invitee);
  320. if not affiliation or affiliation == 'none' then
  321. local reply = st.error_reply(stanza, 'auth', 'registration-required'):up();
  322. reply.tags[1].attr.code = '407';
  323. reply:tag('x', {xmlns = MUC_NS}):up();
  324. reply:tag('lobbyroom'):text(room._data.lobbyroom);
  325. event.origin.send(reply:tag('x', {xmlns = MUC_NS}));
  326. return true;
  327. end
  328. end, -4); -- the default hook on members_only module is on -5
  329. -- listens for invites for participants to join the main room
  330. host_module:hook('muc-invite', function(event)
  331. local room, stanza = event.room, event.stanza;
  332. local invitee = stanza.attr.to;
  333. local from = stanza:get_child('x', 'http://jabber.org/protocol/muc#user')
  334. :get_child('invite').attr.from;
  335. if lobby_muc_service and room._data.lobbyroom then
  336. local lobby_room_obj = lobby_muc_service.get_room_from_jid(room._data.lobbyroom);
  337. if lobby_room_obj then
  338. local occupant = lobby_room_obj:get_occupant_by_real_jid(invitee);
  339. if occupant then
  340. local display_name = occupant:get_presence():get_child_text(
  341. 'nick', 'http://jabber.org/protocol/nick');
  342. notify_lobby_access(room, from, occupant.nick, display_name, true);
  343. end
  344. end
  345. end
  346. end);
  347. end);
  348. -- Extract 'room' param from URL when session is created
  349. function update_session(event)
  350. local session = event.session;
  351. if session.jitsi_web_query_room then
  352. -- no need for an update
  353. return;
  354. end
  355. local query = event.request.url.query;
  356. if query ~= nil then
  357. local params = formdecode(query);
  358. -- The room name and optional prefix from the web query
  359. session.jitsi_web_query_room = params.room;
  360. session.jitsi_web_query_prefix = params.prefix or '';
  361. end
  362. end
  363. function handle_create_lobby(event)
  364. local room = event.room;
  365. room:set_members_only(true);
  366. module:log("info","Set room jid = %s as members only",room.jid);
  367. attach_lobby_room(room)
  368. end
  369. function handle_destroy_lobby(event)
  370. destroy_lobby_room(event.room, event.newjid, event.message);
  371. end
  372. module:hook_global('bosh-session', update_session);
  373. module:hook_global('websocket-session', update_session);
  374. module:hook_global('config-reloaded', load_config);
  375. module:hook_global('create-lobby-room', handle_create_lobby);
  376. module:hook_global('destroy-lobby-room', handle_destroy_lobby);