|
|
|
@ -2,26 +2,28 @@ import { DataMessage } from '../DataMessage';
|
|
|
|
|
import { SignalService } from '../../../../../../protobuf';
|
|
|
|
|
import { TextEncoder } from 'util';
|
|
|
|
|
import { MessageParams } from '../../../Message';
|
|
|
|
|
import { PubKey } from '../../../../../types';
|
|
|
|
|
|
|
|
|
|
interface ClosedGroupMessageParams extends MessageParams {
|
|
|
|
|
groupId: string;
|
|
|
|
|
groupId: string | PubKey;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export abstract class ClosedGroupMessage extends DataMessage {
|
|
|
|
|
public readonly groupId: string;
|
|
|
|
|
public readonly groupId: PubKey;
|
|
|
|
|
|
|
|
|
|
constructor(params: ClosedGroupMessageParams) {
|
|
|
|
|
super({
|
|
|
|
|
timestamp: params.timestamp,
|
|
|
|
|
identifier: params.identifier,
|
|
|
|
|
});
|
|
|
|
|
this.groupId = params.groupId;
|
|
|
|
|
const { groupId } = params;
|
|
|
|
|
this.groupId = typeof groupId === 'string' ? new PubKey(groupId) : groupId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected abstract groupContextType(): SignalService.GroupContext.Type;
|
|
|
|
|
|
|
|
|
|
protected groupContext(): SignalService.GroupContext {
|
|
|
|
|
const id = new TextEncoder().encode(this.groupId);
|
|
|
|
|
const id = new TextEncoder().encode(this.groupId.key);
|
|
|
|
|
const type = this.groupContextType();
|
|
|
|
|
|
|
|
|
|
return new SignalService.GroupContext({ id, type });
|
|
|
|
|