signal-desktop/ts/util/areWeAdmin.ts
Josh Perez 7c1957c30d
Moves conversation.getProps out of models
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2023-06-02 10:54:36 -07:00

27 lines
756 B
TypeScript

// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ConversationAttributesType } from '../model-types';
import { SignalService as Proto } from '../protobuf';
import { isGroupV2 } from './whatTypeOfConversation';
export function areWeAdmin(
attributes: Pick<
ConversationAttributesType,
'groupId' | 'groupVersion' | 'membersV2'
>
): boolean {
if (!isGroupV2(attributes)) {
return false;
}
const memberEnum = Proto.Member.Role;
const members = attributes.membersV2 || [];
const ourUuid = window.textsecure.storage.user.getUuid()?.toString();
const me = members.find(item => item.uuid === ourUuid);
if (!me) {
return false;
}
return me.role === memberEnum.ADMINISTRATOR;
}