2015-11-02 21:02:50 +00:00
|
|
|
-- Token authentication
|
|
|
|
-- Copyright (C) 2015 Atlassian
|
|
|
|
|
2015-12-22 18:51:43 +00:00
|
|
|
local generate_uuid = require "util.uuid".generate;
|
2015-11-02 21:02:50 +00:00
|
|
|
local new_sasl = require "util.sasl".new;
|
2015-12-22 18:51:43 +00:00
|
|
|
local sasl = require "util.sasl";
|
|
|
|
local formdecode = require "util.http".formdecode;
|
2015-11-02 21:02:50 +00:00
|
|
|
local token_util = module:require "token/util";
|
|
|
|
|
|
|
|
-- define auth provider
|
|
|
|
local provider = {};
|
|
|
|
|
2015-12-22 18:51:43 +00:00
|
|
|
local host = module.host;
|
2015-11-02 21:02:50 +00:00
|
|
|
|
|
|
|
local appId = module:get_option_string("app_id");
|
|
|
|
local appSecret = module:get_option_string("app_secret");
|
2015-12-22 18:51:43 +00:00
|
|
|
local allowEmptyToken = module:get_option_boolean("allow_empty_token");
|
2016-06-13 21:11:44 +00:00
|
|
|
local disableRoomNameConstraints = module:get_option_boolean("disable_room_name_constraints");
|
2015-11-02 21:02:50 +00:00
|
|
|
|
2015-12-22 18:51:43 +00:00
|
|
|
if allowEmptyToken == true then
|
|
|
|
module:log("warn", "WARNING - empty tokens allowed");
|
|
|
|
end
|
|
|
|
|
|
|
|
if appId == nil then
|
|
|
|
module:log("error", "'app_id' must not be empty");
|
|
|
|
return;
|
|
|
|
end
|
|
|
|
|
|
|
|
if appSecret == nil then
|
|
|
|
module:log("error", "'app_secret' must not be empty");
|
|
|
|
return;
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Extract 'token' param from BOSH URL when session is created
|
|
|
|
module:hook("bosh-session", function(event)
|
|
|
|
local session, request = event.session, event.request;
|
|
|
|
local query = request.url.query;
|
|
|
|
if query ~= nil then
|
|
|
|
session.auth_token = query and formdecode(query).token or nil;
|
2015-11-02 21:02:50 +00:00
|
|
|
end
|
2015-12-22 18:51:43 +00:00
|
|
|
end)
|
|
|
|
|
|
|
|
function provider.test_password(username, password)
|
|
|
|
return nil, "Password based auth not supported";
|
2015-11-02 21:02:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function provider.get_password(username)
|
|
|
|
return nil;
|
|
|
|
end
|
|
|
|
|
|
|
|
function provider.set_password(username, password)
|
|
|
|
return nil, "Set password not supported";
|
|
|
|
end
|
|
|
|
|
|
|
|
function provider.user_exists(username)
|
|
|
|
return nil;
|
|
|
|
end
|
|
|
|
|
|
|
|
function provider.create_user(username, password)
|
|
|
|
return nil;
|
|
|
|
end
|
|
|
|
|
|
|
|
function provider.delete_user(username)
|
|
|
|
return nil;
|
|
|
|
end
|
|
|
|
|
2015-12-22 18:51:43 +00:00
|
|
|
function provider.get_sasl_handler(session)
|
|
|
|
-- JWT token extracted from BOSH URL
|
|
|
|
local token = session.auth_token;
|
|
|
|
|
|
|
|
local function get_username_from_token(self, message)
|
|
|
|
|
|
|
|
if token == nil then
|
|
|
|
if allowEmptyToken == true then
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false, "not-allowed", "token required";
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- here we check if 'room' claim exists
|
|
|
|
local room, roomErr = token_util.get_room_name(token, appSecret);
|
2016-06-13 21:11:44 +00:00
|
|
|
if room == nil and disableRoomNameConstraints ~= true then
|
2016-04-20 21:37:36 +00:00
|
|
|
if roomErr == nil then
|
|
|
|
roomErr = "'room' claim is missing";
|
|
|
|
end
|
2015-12-22 18:51:43 +00:00
|
|
|
return false, "not-allowed", roomErr;
|
|
|
|
end
|
|
|
|
|
|
|
|
-- now verify the whole token
|
|
|
|
local result, msg
|
2016-06-13 21:11:44 +00:00
|
|
|
= token_util.verify_token(token, appId, appSecret, room, disableRoomNameConstraints);
|
2015-12-22 18:51:43 +00:00
|
|
|
if result == true then
|
|
|
|
-- Binds room name to the session which is later checked on MUC join
|
|
|
|
session.jitsi_meet_room = room;
|
|
|
|
return true
|
|
|
|
else
|
|
|
|
return false, "not-allowed", msg
|
2015-11-02 21:02:50 +00:00
|
|
|
end
|
2015-12-22 18:51:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return new_sasl(host, { anonymous = get_username_from_token });
|
2015-11-02 21:02:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
module:provides("auth", provider);
|
2015-12-22 18:51:43 +00:00
|
|
|
|
|
|
|
local function anonymous(self, message)
|
|
|
|
|
|
|
|
local username = generate_uuid();
|
|
|
|
|
|
|
|
-- This calls the handler created in 'provider.get_sasl_handler(session)'
|
|
|
|
local result, err, msg = self.profile.anonymous(self, username, self.realm);
|
|
|
|
|
|
|
|
self.username = username;
|
|
|
|
|
|
|
|
if result == true then
|
|
|
|
return "success"
|
|
|
|
else
|
|
|
|
|
|
|
|
return "failure", err, msg
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
sasl.registerMechanism("ANONYMOUS", {"anonymous"}, anonymous);
|