2021-03-04 12:22:31 +00:00
|
|
|
/*
|
2024-09-09 13:57:16 +00:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-03-04 12:22:31 +00:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 13:57:16 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2021-03-04 12:22:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
import { ClientWidgetApi } from "matrix-widget-api";
|
2023-06-01 13:43:24 +00:00
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
2021-10-22 22:23:32 +00:00
|
|
|
|
2021-03-04 12:22:31 +00:00
|
|
|
import SdkConfig from "./SdkConfig";
|
|
|
|
import { ElementWidgetActions } from "./stores/widgets/ElementWidgetActions";
|
|
|
|
|
2023-01-12 13:25:14 +00:00
|
|
|
export function getConfigLivestreamUrl(): string | undefined {
|
2022-03-18 16:12:36 +00:00
|
|
|
return SdkConfig.get("audio_stream_url");
|
2021-03-04 12:22:31 +00:00
|
|
|
}
|
|
|
|
|
2021-03-05 10:40:11 +00:00
|
|
|
// Dummy rtmp URL used to signal that we want a special audio-only stream
|
|
|
|
const AUDIOSTREAM_DUMMY_URL = "rtmp://audiostream.dummy/";
|
|
|
|
|
2023-06-01 13:43:24 +00:00
|
|
|
async function createLiveStream(matrixClient: MatrixClient, roomId: string): Promise<void> {
|
|
|
|
const openIdToken = await matrixClient.getOpenIdToken();
|
2021-03-04 12:22:31 +00:00
|
|
|
|
|
|
|
const url = getConfigLivestreamUrl() + "/createStream";
|
|
|
|
|
|
|
|
const response = await window.fetch(url, {
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
body: JSON.stringify({
|
|
|
|
room_id: roomId,
|
|
|
|
openid_token: openIdToken,
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
|
2021-03-04 17:52:49 +00:00
|
|
|
const respBody = await response.json();
|
2021-03-04 12:22:31 +00:00
|
|
|
return respBody["stream_id"];
|
|
|
|
}
|
|
|
|
|
2023-06-01 13:43:24 +00:00
|
|
|
export async function startJitsiAudioLivestream(
|
|
|
|
matrixClient: MatrixClient,
|
|
|
|
widgetMessaging: ClientWidgetApi,
|
|
|
|
roomId: string,
|
|
|
|
): Promise<void> {
|
|
|
|
const streamId = await createLiveStream(matrixClient, roomId);
|
2021-03-04 12:22:31 +00:00
|
|
|
|
2021-03-04 17:52:49 +00:00
|
|
|
await widgetMessaging.transport.send(ElementWidgetActions.StartLiveStream, {
|
2021-03-05 10:40:11 +00:00
|
|
|
rtmpStreamKey: AUDIOSTREAM_DUMMY_URL + streamId,
|
2021-03-04 12:22:31 +00:00
|
|
|
});
|
|
|
|
}
|