Removes disableRoomNameConstraints option.

This option is useless, as if we do not need to verify room name, we just disable the mod_token_verification module.
This commit is contained in:
damencho 2017-05-04 14:19:46 -05:00 committed by Paweł Domas
parent 82b27b45fe
commit 0805b9e99e
1 changed files with 2 additions and 3 deletions

View File

@ -36,7 +36,6 @@ function Util.new(module)
self.appSecret = module:get_option_string("app_secret");
self.asapKeyServer = module:get_option_string("asap_key_server");
self.allowEmptyToken = module:get_option_boolean("allow_empty_token");
self.disableRoomNameConstraints = module:get_option_boolean("disable_room_name_constraints");
if self.allowEmptyToken == true then
module:log("warn", "WARNING - empty tokens allowed");
@ -136,7 +135,7 @@ function Util:verify_token(token)
end
local roomClaim = claims["room"];
if roomClaim == nil and self.disableRoomNameConstraints ~= true then
if roomClaim == nil then
return nil, "'room' claim is missing";
end
@ -214,7 +213,7 @@ function Util:verify_room(session, room_address)
end
local auth_room = session.jitsi_meet_room;
if self.disableRoomNameConstraints ~= true and room ~= string.lower(auth_room) then
if room ~= string.lower(auth_room) then
return false;
end