|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
import { getV2OpenGroupRoomByRoomId, OpenGroupV2Room } from '../../../../data/opengroups';
|
|
|
|
|
import { getConversationController } from '../../../conversations';
|
|
|
|
|
import { getSodium } from '../../../crypto';
|
|
|
|
|
import { PromiseUtils, ToastUtils } from '../../../utils';
|
|
|
|
|
import { forceSyncConfigurationNowIfNeeded } from '../../../utils/syncUtils';
|
|
|
|
|
import {
|
|
|
|
@ -44,6 +45,22 @@ export function parseOpenGroupV2(urlWithPubkey: string): OpenGroupV2Room | undef
|
|
|
|
|
return undefined;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Checks if the group pubkey (hashed as blake2b) is in the list of blocked groups (also hashed)
|
|
|
|
|
* @param serverPubKey PubKey of the open group being evaluated
|
|
|
|
|
* @returns true - group is in the blocklist, false - the group is not in the blocklist
|
|
|
|
|
*/
|
|
|
|
|
export const isGroupInBlockList = async (serverPubKey: string): Promise<boolean> => {
|
|
|
|
|
const blockList = window?.getOpenGroupBlockList();
|
|
|
|
|
if (!blockList || !blockList.length) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
const sodium = await getSodium();
|
|
|
|
|
// generic hash is blake2b
|
|
|
|
|
const serverPubKeyBlake2bHash = sodium.crypto_generichash(32, serverPubKey, null, 'hex');
|
|
|
|
|
return blockList.includes(serverPubKeyBlake2bHash);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Join an open group using the v2 logic.
|
|
|
|
|
*
|
|
|
|
@ -58,6 +75,10 @@ async function joinOpenGroupV2(room: OpenGroupV2Room, fromConfigMessage: boolean
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (await isGroupInBlockList(room.serverPublicKey)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const serverUrl = room.serverUrl.toLowerCase();
|
|
|
|
|
const roomId = room.roomId.toLowerCase();
|
|
|
|
|
const publicKey = room.serverPublicKey.toLowerCase();
|
|
|
|
|