mirror of
https://github.com/vector-im/element-call.git
synced 2026-02-02 04:05:56 +00:00
This probably should have been part of https://github.com/element-hq/element-call/pull/2984
64 lines
1.8 KiB
TypeScript
64 lines
1.8 KiB
TypeScript
/*
|
|
Copyright 2023, 2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import { BaseKeyProvider, createKeyMaterialFromBuffer } from "livekit-client";
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
|
import {
|
|
type MatrixRTCSession,
|
|
MatrixRTCSessionEvent,
|
|
} from "matrix-js-sdk/src/matrixrtc/MatrixRTCSession";
|
|
|
|
export class MatrixKeyProvider extends BaseKeyProvider {
|
|
private rtcSession?: MatrixRTCSession;
|
|
|
|
public constructor() {
|
|
super({ ratchetWindowSize: 0, keyringSize: 256 });
|
|
}
|
|
|
|
public setRTCSession(rtcSession: MatrixRTCSession): void {
|
|
if (this.rtcSession) {
|
|
this.rtcSession.off(
|
|
MatrixRTCSessionEvent.EncryptionKeyChanged,
|
|
this.onEncryptionKeyChanged,
|
|
);
|
|
}
|
|
|
|
this.rtcSession = rtcSession;
|
|
|
|
this.rtcSession.on(
|
|
MatrixRTCSessionEvent.EncryptionKeyChanged,
|
|
this.onEncryptionKeyChanged,
|
|
);
|
|
|
|
// The new session could be aware of keys of which the old session wasn't,
|
|
// so emit key changed events
|
|
this.rtcSession.reemitEncryptionKeys();
|
|
}
|
|
|
|
private onEncryptionKeyChanged = (
|
|
encryptionKey: Uint8Array,
|
|
encryptionKeyIndex: number,
|
|
participantId: string,
|
|
): void => {
|
|
createKeyMaterialFromBuffer(encryptionKey).then(
|
|
(keyMaterial) => {
|
|
this.onSetEncryptionKey(keyMaterial, participantId, encryptionKeyIndex);
|
|
|
|
logger.debug(
|
|
`Sent new key to livekit room=${this.rtcSession?.room.roomId} participantId=${participantId} encryptionKeyIndex=${encryptionKeyIndex}`,
|
|
);
|
|
},
|
|
(e) => {
|
|
logger.error(
|
|
`Failed to create key material from buffer for livekit room=${this.rtcSession?.room.roomId} participantId=${participantId} encryptionKeyIndex=${encryptionKeyIndex}`,
|
|
e,
|
|
);
|
|
},
|
|
);
|
|
};
|
|
}
|