2022-10-19 21:01:14 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-10-19 21:01:14 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-10-19 21:01:14 +08:00
|
|
|
*/
|
|
|
|
|
2022-12-24 00:41:18 +08:00
|
|
|
import { Optional } from "matrix-events-sdk";
|
2023-02-13 19:39:16 +08:00
|
|
|
import { EventType, IContent, MatrixEvent, MsgType, RelationType, Room, RoomMember } from "matrix-js-sdk/src/matrix";
|
2022-10-19 21:01:14 +08:00
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import { SdkContextClass } from "../../../../src/contexts/SDKContext";
|
2023-01-24 18:58:37 +08:00
|
|
|
import {
|
|
|
|
VoiceBroadcastPlayback,
|
|
|
|
VoiceBroadcastPreRecording,
|
|
|
|
VoiceBroadcastRecording,
|
2024-10-15 21:57:26 +08:00
|
|
|
} from "../../../../src/voice-broadcast";
|
2022-11-01 01:35:02 +08:00
|
|
|
import {
|
|
|
|
VoiceBroadcastChunkEventType,
|
|
|
|
VoiceBroadcastInfoEventType,
|
|
|
|
VoiceBroadcastInfoState,
|
2024-10-15 21:57:26 +08:00
|
|
|
} from "../../../../src/voice-broadcast/types";
|
|
|
|
import { mkEvent } from "../../../test-utils";
|
2022-10-19 21:01:14 +08:00
|
|
|
|
2022-12-28 17:32:49 +08:00
|
|
|
// timestamp incremented on each call to prevent duplicate timestamp
|
|
|
|
let timestamp = new Date().getTime();
|
|
|
|
|
2022-10-19 21:01:14 +08:00
|
|
|
export const mkVoiceBroadcastInfoStateEvent = (
|
2022-12-24 00:41:18 +08:00
|
|
|
roomId: Optional<string>,
|
|
|
|
state: Optional<VoiceBroadcastInfoState>,
|
|
|
|
senderId: Optional<string>,
|
|
|
|
senderDeviceId: Optional<string>,
|
2022-10-20 18:17:38 +08:00
|
|
|
startedInfoEvent?: MatrixEvent,
|
2022-12-28 17:32:49 +08:00
|
|
|
lastChunkSequence?: number,
|
2022-10-19 21:01:14 +08:00
|
|
|
): MatrixEvent => {
|
2023-02-13 19:39:16 +08:00
|
|
|
const relationContent: IContent = {};
|
2022-10-20 18:17:38 +08:00
|
|
|
|
|
|
|
if (startedInfoEvent) {
|
|
|
|
relationContent["m.relates_to"] = {
|
|
|
|
event_id: startedInfoEvent.getId(),
|
|
|
|
rel_type: "m.reference",
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-12-28 17:32:49 +08:00
|
|
|
const lastChunkSequenceContent = lastChunkSequence ? { last_chunk_sequence: lastChunkSequence } : {};
|
|
|
|
|
2022-10-19 21:01:14 +08:00
|
|
|
return mkEvent({
|
|
|
|
event: true,
|
2022-12-24 00:41:18 +08:00
|
|
|
// @ts-ignore allow everything here for edge test cases
|
2022-10-19 21:01:14 +08:00
|
|
|
room: roomId,
|
2022-12-24 00:41:18 +08:00
|
|
|
// @ts-ignore allow everything here for edge test cases
|
2022-10-21 15:30:02 +08:00
|
|
|
user: senderId,
|
2022-10-19 21:01:14 +08:00
|
|
|
type: VoiceBroadcastInfoEventType,
|
2022-12-24 00:41:18 +08:00
|
|
|
// @ts-ignore allow everything here for edge test cases
|
2022-10-21 15:30:02 +08:00
|
|
|
skey: senderId,
|
2022-10-19 21:01:14 +08:00
|
|
|
content: {
|
|
|
|
state,
|
2022-10-21 15:30:02 +08:00
|
|
|
device_id: senderDeviceId,
|
2022-10-20 18:17:38 +08:00
|
|
|
...relationContent,
|
2022-12-28 17:32:49 +08:00
|
|
|
...lastChunkSequenceContent,
|
2022-10-19 21:01:14 +08:00
|
|
|
},
|
2022-12-28 17:32:49 +08:00
|
|
|
ts: timestamp++,
|
2022-10-19 21:01:14 +08:00
|
|
|
});
|
|
|
|
};
|
2022-11-01 01:35:02 +08:00
|
|
|
|
|
|
|
export const mkVoiceBroadcastChunkEvent = (
|
2022-12-17 02:23:29 +08:00
|
|
|
infoEventId: string,
|
2022-11-01 01:35:02 +08:00
|
|
|
userId: string,
|
|
|
|
roomId: string,
|
|
|
|
duration: number,
|
|
|
|
sequence?: number,
|
|
|
|
timestamp?: number,
|
|
|
|
): MatrixEvent => {
|
|
|
|
return mkEvent({
|
|
|
|
event: true,
|
|
|
|
user: userId,
|
|
|
|
room: roomId,
|
|
|
|
type: EventType.RoomMessage,
|
|
|
|
content: {
|
|
|
|
msgtype: MsgType.Audio,
|
|
|
|
["org.matrix.msc1767.audio"]: {
|
|
|
|
duration,
|
|
|
|
},
|
|
|
|
info: {
|
|
|
|
duration,
|
|
|
|
},
|
|
|
|
[VoiceBroadcastChunkEventType]: {
|
|
|
|
...(sequence ? { sequence } : {}),
|
|
|
|
},
|
2022-12-17 02:23:29 +08:00
|
|
|
["m.relates_to"]: {
|
|
|
|
rel_type: RelationType.Reference,
|
|
|
|
event_id: infoEventId,
|
|
|
|
},
|
2022-11-01 01:35:02 +08:00
|
|
|
},
|
|
|
|
ts: timestamp,
|
|
|
|
});
|
|
|
|
};
|
2023-01-24 18:58:37 +08:00
|
|
|
|
|
|
|
export const mkVoiceBroadcastPlayback = (stores: SdkContextClass): VoiceBroadcastPlayback => {
|
|
|
|
const infoEvent = mkVoiceBroadcastInfoStateEvent(
|
|
|
|
"!room:example.com",
|
|
|
|
VoiceBroadcastInfoState.Started,
|
|
|
|
"@user:example.com",
|
|
|
|
"ASD123",
|
|
|
|
);
|
|
|
|
return new VoiceBroadcastPlayback(infoEvent, stores.client!, stores.voiceBroadcastRecordingsStore);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const mkVoiceBroadcastRecording = (stores: SdkContextClass): VoiceBroadcastRecording => {
|
|
|
|
const infoEvent = mkVoiceBroadcastInfoStateEvent(
|
|
|
|
"!room:example.com",
|
|
|
|
VoiceBroadcastInfoState.Started,
|
|
|
|
"@user:example.com",
|
|
|
|
"ASD123",
|
|
|
|
);
|
|
|
|
return new VoiceBroadcastRecording(infoEvent, stores.client!);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const mkVoiceBroadcastPreRecording = (stores: SdkContextClass): VoiceBroadcastPreRecording => {
|
|
|
|
const roomId = "!room:example.com";
|
|
|
|
const userId = "@user:example.com";
|
|
|
|
const room = new Room(roomId, stores.client!, userId);
|
|
|
|
const roomMember = new RoomMember(roomId, userId);
|
|
|
|
return new VoiceBroadcastPreRecording(
|
|
|
|
room,
|
|
|
|
roomMember,
|
|
|
|
stores.client!,
|
|
|
|
stores.voiceBroadcastPlaybacksStore,
|
|
|
|
stores.voiceBroadcastRecordingsStore,
|
|
|
|
);
|
|
|
|
};
|