This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/src/matrix/calls/CallHandler.ts

195 lines
6.7 KiB
TypeScript
Raw Normal View History

2022-02-14 21:44:21 +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";
import type {Room} from "../room/Room";
import type {StateEvent} from "../storage/types";
import type {ILogItem} from "../../logging/types";
2022-02-16 21:31:02 +05:30
import {WebRTC, PeerConnection, PeerConnectionHandler, StreamPurpose} from "../../platform/types/WebRTC";
import {MediaDevices, Track, AudioTrack, TrackType} from "../../platform/types/MediaDevices";
2022-02-14 21:44:21 +05:30
const GROUP_CALL_TYPE = "m.call";
const GROUP_CALL_MEMBER_TYPE = "m.call.member";
enum CallSetupMessageType {
Invite = "m.call.invite",
Answer = "m.call.answer",
Candidates = "m.call.candidates",
Hangup = "m.call.hangup",
}
const CALL_ID = "m.call_id";
const CALL_TERMINATED = "m.terminated";
2022-02-17 21:28:44 +05:30
export class GroupCallHandler {
2022-02-15 21:35:20 +05:30
// group calls by call id
2022-02-17 21:28:44 +05:30
public readonly calls: ObservableMap<string, GroupCall> = new ObservableMap<string, GroupCall>();
2022-02-14 21:44:21 +05:30
constructor() {
}
2022-02-25 21:24:00 +05:30
// TODO: check and poll turn server credentials here
2022-02-14 21:44:21 +05:30
handleRoomState(room: Room, events: StateEvent[], log: ILogItem) {
// first update call events
for (const event of events) {
if (event.type === GROUP_CALL_TYPE) {
const callId = event.state_key;
2022-02-17 21:28:44 +05:30
let call = this.calls.get(callId);
2022-02-14 21:44:21 +05:30
if (call) {
call.updateCallEvent(event);
if (call.isTerminated) {
2022-02-17 21:28:44 +05:30
this.calls.remove(call.id);
2022-02-14 21:44:21 +05:30
}
} else {
call = new GroupCall(event, room);
2022-02-17 21:28:44 +05:30
this.calls.set(call.id, call);
2022-02-14 21:44:21 +05:30
}
}
}
// then update participants
for (const event of events) {
if (event.type === GROUP_CALL_MEMBER_TYPE) {
const participant = event.state_key;
const sources = event.content["m.sources"];
for (const source of sources) {
2022-02-17 21:28:44 +05:30
const call = this.calls.get(source[CALL_ID]);
2022-02-14 21:44:21 +05:30
if (call && !call.isTerminated) {
call.addParticipant(participant, source);
}
}
}
}
}
handlesDeviceMessageEventType(eventType: string | undefined): boolean {
return eventType === CallSetupMessageType.Invite ||
eventType === CallSetupMessageType.Candidates ||
eventType === CallSetupMessageType.Answer ||
eventType === CallSetupMessageType.Hangup;
}
handleDeviceMessage(senderUserId: string, senderDeviceId: string, eventType: string, content: Record<string, any>, log: ILogItem) {
const callId = content[CALL_ID];
2022-02-17 21:28:44 +05:30
const call = this.calls.get(callId);
2022-02-14 21:44:21 +05:30
call?.handleDeviceMessage(senderUserId, senderDeviceId, eventType, content, log);
}
}
2022-02-17 21:28:44 +05:30
function participantId(senderUserId: string, senderDeviceId: string | null) {
2022-02-14 21:44:21 +05:30
return JSON.stringify(senderUserId) + JSON.stringify(senderDeviceId);
}
2022-02-17 21:28:44 +05:30
class GroupParticipant implements PeerCallHandler {
private peerCall?: PeerCall;
2022-02-14 21:44:21 +05:30
2022-02-17 21:28:44 +05:30
constructor(
private readonly userId: string,
private readonly deviceId: string,
private localMedia: LocalMedia | undefined,
private readonly webRTC: WebRTC,
private readonly hsApi: HomeServerApi
) {}
2022-02-14 21:44:21 +05:30
2022-02-17 21:28:44 +05:30
sendInvite() {
this.peerCall = new PeerCall(this, this.webRTC);
2022-03-07 14:45:54 +05:30
this.peerCall.call(this.localMedia);
2022-02-14 21:44:21 +05:30
}
2022-02-17 21:28:44 +05:30
/** From PeerCallHandler
* @internal */
override emitUpdate() {
2022-02-14 21:44:21 +05:30
}
2022-02-17 21:28:44 +05:30
/** From PeerCallHandler
* @internal */
override onSendSignallingMessage() {
// TODO: this needs to be encrypted with olm first
this.hsApi.sendToDevice(type, {[this.userId]: {[this.deviceId ?? "*"]: content}});
2022-02-14 21:44:21 +05:30
}
2022-02-17 21:28:44 +05:30
}
2022-02-14 21:44:21 +05:30
2022-02-17 21:28:44 +05:30
class GroupCall {
private readonly participants: ObservableMap<string, Participant> = new ObservableMap();
private localMedia?: LocalMedia;
2022-02-14 21:44:21 +05:30
2022-02-17 21:28:44 +05:30
constructor(private readonly ownUserId: string, private callEvent: StateEvent, private readonly room: Room, private readonly webRTC: WebRTC) {
2022-02-14 21:44:21 +05:30
}
2022-02-17 21:28:44 +05:30
get id(): string { return this.callEvent.state_key; }
2022-02-14 21:44:21 +05:30
2022-02-17 21:28:44 +05:30
async participate(tracks: Track[]) {
this.localMedia = LocalMedia.fromTracks(tracks);
for (const [,participant] of this.participants) {
2022-03-07 14:45:54 +05:30
participant.setMedia(this.localMedia.clone());
2022-02-16 21:31:02 +05:30
}
2022-02-17 21:28:44 +05:30
// send m.call.member state event
2022-02-16 21:31:02 +05:30
2022-02-17 21:28:44 +05:30
// send invite to all participants that are < my userId
for (const [,participant] of this.participants) {
if (participant.userId < this.ownUserId) {
participant.sendInvite();
2022-02-16 21:31:02 +05:30
}
}
}
2022-02-17 21:28:44 +05:30
updateCallEvent(callEvent: StateEvent) {
this.callEvent = callEvent;
2022-02-16 21:31:02 +05:30
}
2022-02-17 21:28:44 +05:30
addParticipant(userId, source) {
const participantId = getParticipantId(userId, source.device_id);
const participant = this.participants.get(participantId);
if (participant) {
participant.updateSource(source);
} else {
participant.add(participantId, new GroupParticipant(userId, source.device_id, this.localMedia?.clone(), this.webRTC));
2022-02-16 21:31:02 +05:30
}
}
2022-02-14 21:44:21 +05:30
2022-02-17 21:28:44 +05:30
handleDeviceMessage(senderUserId: string, senderDeviceId: string, eventType: string, content: Record<string, any>, log: ILogItem) {
const participantId = getParticipantId(senderUserId, senderDeviceId);
let peerCall = this.participants.get(participantId);
let hasDeviceInKey = true;
if (!peerCall) {
hasDeviceInKey = false;
peerCall = this.participants.get(getParticipantId(senderUserId, null))
}
if (peerCall) {
peerCall.handleIncomingSignallingMessage(eventType, content, senderDeviceId);
if (!hasDeviceInKey && peerCall.opponentPartyId) {
this.participants.delete(getParticipantId(senderUserId, null));
this.participants.add(getParticipantId(senderUserId, peerCall.opponentPartyId));
}
} else {
// create peerCall
}
2022-02-16 21:31:02 +05:30
}
2022-02-17 21:28:44 +05:30
get id(): string {
return this.callEvent.state_key;
2022-02-14 21:44:21 +05:30
}
2022-02-17 21:28:44 +05:30
get isTerminated(): boolean {
return !!this.callEvent.content[CALL_TERMINATED];
2022-02-14 21:44:21 +05:30
}
}