123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- -- Token authentication
- -- Copyright (C) 2015 Atlassian
-
- local log = module._log;
- local host = module.host;
- local st = require "util.stanza";
- local is_admin = require "core.usermanager".is_admin;
-
-
- local parentHostName = string.gmatch(tostring(host), "%w+.(%w.+)")();
- if parentHostName == nil then
- log("error", "Failed to start - unable to get parent hostname");
- return;
- end
-
- local parentCtx = module:context(parentHostName);
- if parentCtx == nil then
- log("error",
- "Failed to start - unable to get parent context for host: %s",
- tostring(parentHostName));
- return;
- end
-
- local token_util = module:require "token/util".new(parentCtx);
-
- -- no token configuration
- if token_util == nil then
- return;
- end
-
- log("debug",
- "%s - starting MUC token verifier app_id: %s app_secret: %s allow empty: %s",
- tostring(host), tostring(token_util.appId), tostring(token_util.appSecret),
- tostring(token_util.allowEmptyToken));
-
- local function verify_user(session, stanza)
- log("debug", "Session token: %s, session room: %s",
- tostring(session.auth_token),
- tostring(session.jitsi_meet_room));
-
- -- token not required for admin users
- local user_jid = stanza.attr.from;
- if is_admin(user_jid) then
- log("debug", "Token not required from admin user: %s", user_jid);
- return nil;
- end
-
- log("debug",
- "Will verify token for user: %s, room: %s ", user_jid, stanza.attr.to);
- if not token_util:verify_room(session, stanza.attr.to) then
- log("error", "Token %s not allowed to join: %s",
- tostring(session.auth_token), tostring(stanza.attr.to));
- session.send(
- st.error_reply(
- stanza, "cancel", "not-allowed", "Room and token mismatched"));
- return false; -- we need to just return non nil
- end
- log("debug",
- "allowed: %s to enter/create room: %s", user_jid, stanza.attr.to);
- end
-
- module:hook("muc-room-pre-create", function(event)
- local origin, stanza = event.origin, event.stanza;
- log("debug", "pre create: %s %s", tostring(origin), tostring(stanza));
- return verify_user(origin, stanza);
- end);
-
- module:hook("muc-occupant-pre-join", function(event)
- local origin, room, stanza = event.origin, event.room, event.stanza;
- log("debug", "pre join: %s %s", tostring(room), tostring(stanza));
- return verify_user(origin, stanza);
- end);
|