You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
import { SignalService } from '../../../../../protobuf';
|
|
import { PubKey } from '../../../../types';
|
|
import { ExpirableMessage, ExpirableMessageParams } from '../../ExpirableMessage';
|
|
|
|
export interface ClosedGroupMessageParams extends ExpirableMessageParams {
|
|
groupId: string | PubKey;
|
|
}
|
|
|
|
export abstract class ClosedGroupMessage extends ExpirableMessage {
|
|
public readonly groupId: PubKey;
|
|
|
|
constructor(params: ClosedGroupMessageParams) {
|
|
super({
|
|
timestamp: params.timestamp,
|
|
identifier: params.identifier,
|
|
expirationType: params.expirationType,
|
|
expireTimer: params.expireTimer,
|
|
});
|
|
|
|
this.groupId = PubKey.cast(params.groupId);
|
|
if (!this.groupId || this.groupId.key.length === 0) {
|
|
throw new Error('groupId must be set');
|
|
}
|
|
}
|
|
|
|
public static areAdminsMembers(admins: Array<string>, members: Array<string>) {
|
|
return admins.every(a => members.includes(a));
|
|
}
|
|
|
|
public contentProto(): SignalService.Content {
|
|
const content = super.contentProto();
|
|
content.dataMessage = this.dataProto();
|
|
// TODO legacy messages support will be removed in a future release
|
|
// Closed Groups only support 'deleteAfterSend' and 'legacy'
|
|
content.expirationType =
|
|
this.expirationType === 'deleteAfterSend'
|
|
? SignalService.Content.ExpirationType.DELETE_AFTER_SEND
|
|
: SignalService.Content.ExpirationType.UNKNOWN;
|
|
|
|
return content;
|
|
}
|
|
|
|
public dataProto(): SignalService.DataMessage {
|
|
const dataMessage = super.dataProto();
|
|
|
|
dataMessage.closedGroupControlMessage = new SignalService.DataMessage.ClosedGroupControlMessage();
|
|
|
|
return dataMessage;
|
|
}
|
|
}
|