2022-02-17 21:28:44 +05:30
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {ObservableMap} from "../../../observable/map/ObservableMap";
|
2022-03-09 15:59:39 +05:30
|
|
|
import {Participant} from "./Participant";
|
|
|
|
import {LocalMedia} from "../LocalMedia";
|
|
|
|
import type {Track} from "../../../platform/types/MediaDevices";
|
2022-03-09 23:23:51 +05:30
|
|
|
import type {SignallingMessage, MGroupCallBase} from "../callEventTypes";
|
|
|
|
import type {Room} from "../../room/Room";
|
|
|
|
import type {StateEvent} from "../../storage/types";
|
|
|
|
import type {Platform} from "../../../platform/web/Platform";
|
2022-02-17 21:28:44 +05:30
|
|
|
|
2022-03-09 15:59:39 +05:30
|
|
|
export class GroupCall {
|
2022-02-17 21:28:44 +05:30
|
|
|
private readonly participants: ObservableMap<string, Participant> = new ObservableMap();
|
2022-03-09 15:59:39 +05:30
|
|
|
private localMedia?: Promise<LocalMedia>;
|
2022-02-17 21:28:44 +05:30
|
|
|
|
2022-03-09 23:23:51 +05:30
|
|
|
constructor(
|
|
|
|
private readonly ownUserId: string,
|
|
|
|
private callEvent: StateEvent,
|
|
|
|
private readonly room: Room,
|
|
|
|
private readonly platform: Platform
|
|
|
|
) {
|
2022-02-17 21:28:44 +05:30
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
get id(): string { return this.callEvent.state_key; }
|
|
|
|
|
2022-03-09 15:59:39 +05:30
|
|
|
async participate(tracks: Promise<Track[]>) {
|
|
|
|
this.localMedia = tracks.then(tracks => LocalMedia.fromTracks(tracks));
|
2022-02-17 21:28:44 +05:30
|
|
|
for (const [,participant] of this.participants) {
|
2022-03-09 15:59:39 +05:30
|
|
|
participant.setLocalMedia(this.localMedia.then(localMedia => localMedia.clone()));
|
2022-02-17 21:28:44 +05:30
|
|
|
}
|
|
|
|
// send m.call.member state event
|
|
|
|
|
|
|
|
// send invite to all participants that are < my userId
|
|
|
|
for (const [,participant] of this.participants) {
|
|
|
|
if (participant.userId < this.ownUserId) {
|
2022-03-09 15:59:39 +05:30
|
|
|
participant.call();
|
2022-02-17 21:28:44 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
updateCallEvent(callEvent: StateEvent) {
|
|
|
|
this.callEvent = callEvent;
|
|
|
|
}
|
|
|
|
|
2022-03-09 23:23:51 +05:30
|
|
|
addParticipant(userId, memberCallInfo) {
|
|
|
|
let participant = this.participants.get(userId);
|
2022-02-17 21:28:44 +05:30
|
|
|
if (participant) {
|
2022-03-09 23:23:51 +05:30
|
|
|
participant.updateCallInfo(memberCallInfo);
|
2022-02-17 21:28:44 +05:30
|
|
|
} else {
|
2022-03-09 23:23:51 +05:30
|
|
|
participant = new Participant(userId, source.device_id, this.localMedia?.clone(), this.webRTC);
|
|
|
|
participant.updateCallInfo(memberCallInfo);
|
|
|
|
this.participants.add(userId, participant);
|
2022-02-17 21:28:44 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-09 23:23:51 +05:30
|
|
|
removeParticipant(userId) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
handleDeviceMessage(userId: string, senderDeviceId: string, message: SignallingMessage<MGroupCallBase>, log: ILogItem) {
|
|
|
|
let participant = this.participants.get(userId);
|
|
|
|
if (participant) {
|
|
|
|
participant.handleIncomingSignallingMessage(message, senderDeviceId);
|
2022-02-17 21:28:44 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get isTerminated(): boolean {
|
|
|
|
return !!this.callEvent.content[CALL_TERMINATED];
|
|
|
|
}
|
|
|
|
}
|