fix(util) never mark UUID room names as insecure

Except the NIL UUID, that is.
This commit is contained in:
Saúl Ibarra Corretgé 2022-01-28 11:26:24 +01:00 committed by Saúl Ibarra Corretgé
parent 23b4e93ed9
commit 332feefa36
1 changed files with 24 additions and 1 deletions

View File

@ -1,7 +1,30 @@
// @flow
import _ from 'lodash';
import { NIL, parse as parseUUID } from 'uuid';
import zxcvbn from 'zxcvbn';
// The null UUID.
const NIL_UUID = parseUUID(NIL);
/**
* Checks if the given string is a valid UUID or not.
*
* @param {string} str - The string to be checked.
* @returns {boolean} - Whether the string is a valid UUID or not.
*/
function isValidUUID(str) {
let uuid;
try {
uuid = parseUUID(str);
} catch (e) {
return false;
}
return !_.isEqual(uuid, NIL_UUID);
}
/**
* Returns true if the room name is considered a weak (insecure) one.
*
@ -9,5 +32,5 @@ import zxcvbn from 'zxcvbn';
* @returns {boolean}
*/
export default function isInsecureRoomName(roomName: string = ''): boolean {
return zxcvbn(roomName).score < 3;
return !isValidUUID(roomName) && zxcvbn(roomName).score < 3;
}