mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
94 lines
3 KiB
TypeScript
94 lines
3 KiB
TypeScript
/*
|
|
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 React from "react";
|
|
import { MatrixClient, Room, SyncState } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { hasRoomLiveVoiceBroadcast, VoiceBroadcastInfoEventType, VoiceBroadcastRecordingsStore } from "..";
|
|
import InfoDialog from "../../components/views/dialogs/InfoDialog";
|
|
import { _t } from "../../languageHandler";
|
|
import Modal from "../../Modal";
|
|
|
|
const showAlreadyRecordingDialog = (): void => {
|
|
Modal.createDialog(InfoDialog, {
|
|
title: _t("voice_broadcast|failed_already_recording_title"),
|
|
description: <p>{_t("voice_broadcast|failed_already_recording_description")}</p>,
|
|
hasCloseButton: true,
|
|
});
|
|
};
|
|
|
|
const showInsufficientPermissionsDialog = (): void => {
|
|
Modal.createDialog(InfoDialog, {
|
|
title: _t("voice_broadcast|failed_insufficient_permission_title"),
|
|
description: <p>{_t("voice_broadcast|failed_insufficient_permission_description")}</p>,
|
|
hasCloseButton: true,
|
|
});
|
|
};
|
|
|
|
const showOthersAlreadyRecordingDialog = (): void => {
|
|
Modal.createDialog(InfoDialog, {
|
|
title: _t("voice_broadcast|failed_others_already_recording_title"),
|
|
description: <p>{_t("voice_broadcast|failed_others_already_recording_description")}</p>,
|
|
hasCloseButton: true,
|
|
});
|
|
};
|
|
|
|
const showNoConnectionDialog = (): void => {
|
|
Modal.createDialog(InfoDialog, {
|
|
title: _t("voice_broadcast|failed_no_connection_title"),
|
|
description: <p>{_t("voice_broadcast|failed_no_connection_description")}</p>,
|
|
hasCloseButton: true,
|
|
});
|
|
};
|
|
|
|
export const checkVoiceBroadcastPreConditions = async (
|
|
room: Room,
|
|
client: MatrixClient,
|
|
recordingsStore: VoiceBroadcastRecordingsStore,
|
|
): Promise<boolean> => {
|
|
if (recordingsStore.getCurrent()) {
|
|
showAlreadyRecordingDialog();
|
|
return false;
|
|
}
|
|
|
|
const currentUserId = client.getUserId();
|
|
|
|
if (!currentUserId) return false;
|
|
|
|
if (!room.currentState.maySendStateEvent(VoiceBroadcastInfoEventType, currentUserId)) {
|
|
showInsufficientPermissionsDialog();
|
|
return false;
|
|
}
|
|
|
|
if (client.getSyncState() === SyncState.Error) {
|
|
showNoConnectionDialog();
|
|
return false;
|
|
}
|
|
|
|
const { hasBroadcast, startedByUser } = await hasRoomLiveVoiceBroadcast(client, room, currentUserId);
|
|
|
|
if (hasBroadcast && startedByUser) {
|
|
showAlreadyRecordingDialog();
|
|
return false;
|
|
}
|
|
|
|
if (hasBroadcast) {
|
|
showOthersAlreadyRecordingDialog();
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
};
|