mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-15 00:04:59 +08:00
db859d43e9
--------- Signed-off-by: Timo K <toger5@hotmail.de>
77 lines
2.6 KiB
TypeScript
77 lines
2.6 KiB
TypeScript
/*
|
|
Copyright 2023 New Vector Ltd
|
|
|
|
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 { MatrixRTCSession } from "matrix-js-sdk/src/matrixrtc/MatrixRTCSession";
|
|
|
|
import { PosthogAnalytics } from "./analytics/PosthogAnalytics";
|
|
import { LivekitFocus } from "./livekit/LivekitFocus";
|
|
import { Config } from "./config/Config";
|
|
import { ElementWidgetActions, WidgetHelpers, widget } from "./widget";
|
|
|
|
function makeFocus(livekitAlias: string): LivekitFocus {
|
|
const urlFromConf = Config.get().livekit!.livekit_service_url;
|
|
if (!urlFromConf) {
|
|
throw new Error("No livekit_service_url is configured!");
|
|
}
|
|
|
|
return {
|
|
type: "livekit",
|
|
livekit_service_url: urlFromConf,
|
|
livekit_alias: livekitAlias,
|
|
};
|
|
}
|
|
|
|
export function enterRTCSession(
|
|
rtcSession: MatrixRTCSession,
|
|
encryptMedia: boolean,
|
|
): void {
|
|
PosthogAnalytics.instance.eventCallEnded.cacheStartCall(new Date());
|
|
PosthogAnalytics.instance.eventCallStarted.track(rtcSession.room.roomId);
|
|
|
|
// This must be called before we start trying to join the call, as we need to
|
|
// have started tracking by the time calls start getting created.
|
|
// groupCallOTelMembership?.onJoinCall();
|
|
|
|
// right now we assume everything is a room-scoped call
|
|
const livekitAlias = rtcSession.room.roomId;
|
|
|
|
rtcSession.joinRoomSession([makeFocus(livekitAlias)], encryptMedia);
|
|
}
|
|
|
|
const widgetPostHangupProcedure = async (
|
|
widget: WidgetHelpers,
|
|
): Promise<void> => {
|
|
// we need to wait until the callEnded event is tracked on posthog.
|
|
// Otherwise the iFrame gets killed before the callEnded event got tracked.
|
|
await new Promise((resolve) => window.setTimeout(resolve, 10)); // 10ms
|
|
widget.api.setAlwaysOnScreen(false);
|
|
PosthogAnalytics.instance.logout();
|
|
|
|
// We send the hangup event after the memberships have been updated
|
|
// calling leaveRTCSession.
|
|
// We need to wait because this makes the client hosting this widget killing the IFrame.
|
|
widget.api.transport.send(ElementWidgetActions.HangupCall, {});
|
|
};
|
|
|
|
export async function leaveRTCSession(
|
|
rtcSession: MatrixRTCSession,
|
|
): Promise<void> {
|
|
await rtcSession.leaveRoomSession();
|
|
if (widget) {
|
|
await widgetPostHangupProcedure(widget);
|
|
}
|
|
}
|