Files
element-call/src/state/remoteMembers/matrixLivekitMerger.ts

259 lines
8.8 KiB
TypeScript
Raw Normal View History

2025-10-28 21:18:47 +01:00
/*
Copyright 2025 Element c.
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
import {
LocalParticipant,
Participant,
RemoteParticipant,
type Participant as LivekitParticipant,
type Room as LivekitRoom,
} from "livekit-client";
import {
type MatrixRTCSession,
MatrixRTCSessionEvent,
type CallMembership,
type Transport,
LivekitTransport,
isLivekitTransport,
ParticipantId,
2025-10-28 21:18:47 +01:00
} from "matrix-js-sdk/lib/matrixrtc";
import {
combineLatest,
fromEvent,
map,
startWith,
switchMap,
type Observable,
} from "rxjs";
import { type ObservableScope } from "../ObservableScope";
import { type Connection } from "./Connection";
2025-10-28 21:58:10 +01:00
import { Behavior, constant } from "../Behavior";
import { Room as MatrixRoom, RoomMember } from "matrix-js-sdk";
2025-10-28 21:18:47 +01:00
import { getRoomMemberFromRtcMember } from "./displayname";
2025-10-28 21:58:10 +01:00
import { pauseWhen } from "../../utils/observable";
2025-10-28 21:18:47 +01:00
// TODOs:
// - make ConnectionManager its own actual class
// - write test for scopes (do we really need to bind scope)
class ConnectionManager {
public setTansports(transports$: Behavior<Transport[]>): void {}
2025-10-28 21:58:10 +01:00
public readonly connections$: Observable<Connection[]> = constant([]);
// connection is used to find the transport (to find matching callmembership) & for the livekitRoom
public readonly participantsByMemberId$: Behavior<
Map<
ParticipantId,
// It can be an array because a bad behaving client could be publishingParticipants$
// multiple times to several livekit rooms.
{ participant: LivekitParticipant; connection: Connection }[]
>
> = constant(new Map());
2025-10-28 21:18:47 +01:00
}
/**
* Represents participant publishing or expected to publish on the connection.
* It is paired with its associated rtc membership.
*/
export type PublishingParticipant = {
/**
* The LiveKit participant publishing on this connection, or undefined if the participant is not currently (yet) connected to the livekit room.
*/
participant: RemoteParticipant | undefined;
/**
* The rtc call membership associated with this participant.
*/
membership: CallMembership;
};
2025-10-28 21:18:47 +01:00
/**
* Represent a matrix call member and his associated livekit participation.
* `livekitParticipant` can be undefined if the member is not yet connected to the livekit room
* or if it has no livekit transport at all.
*/
export interface MatrixLivekitItem {
2025-10-28 21:58:10 +01:00
membership: CallMembership;
2025-10-28 21:18:47 +01:00
livekitParticipant?: LivekitParticipant;
//TODO Try to remove this! Its waaay to much information
// Just use to get the member's avatar
2025-10-28 21:58:10 +01:00
member?: RoomMember;
2025-10-28 21:18:47 +01:00
}
// Alternative structure idea:
// const livekitMatrixItems$ = (callMemberships$,connectionManager,scope): Observable<MatrixLivekitItem[]> => {
interface LivekitRoomWithParticipants {
livekitRoom: LivekitRoom;
url: string; // Included for use as a React key
participants: {
// What id is that??
// Looks like it userId:Deviceid?
id: string;
participant: LocalParticipant | RemoteParticipant | undefined;
// Why do we fetch a full room member here?
// looks like it is only for avatars?
// TODO: Remove that. have some Avatar Provider that can fetch avatar for user ids.
member: RoomMember;
}[];
}
/**
* Combines MatrixRtc and Livekit worlds.
*
* It has a small public interface:
* - in (via constructor):
* - an observable of CallMembership[] to track the call members (The matrix side)
* - a `ConnectionManager` for the lk rooms (The livekit side)
* - out (via public Observable):
* - `remoteMatrixLivekitItems` an observable of MatrixLivekitItem[] to track the remote members and associated livekit data.
*/
export class MatrixLivekitMerger {
/**
* The MatrixRTC session participants.
*/
// Note that MatrixRTCSession already filters the call memberships by users
// that are joined to the room; we don't need to perform extra filtering here.
2025-10-28 21:58:10 +01:00
public readonly memberships$ = this.scope.behavior(
2025-10-28 21:18:47 +01:00
fromEvent(
this.matrixRTCSession,
MatrixRTCSessionEvent.MembershipsChanged,
).pipe(
startWith(null),
map(() => this.matrixRTCSession.memberships),
),
);
public constructor(
private matrixRTCSession: MatrixRTCSession,
private connectionManager: ConnectionManager,
private scope: ObservableScope,
2025-10-28 21:58:10 +01:00
private matrixRoom: MatrixRoom,
2025-10-28 21:18:47 +01:00
) {
connectionManager.setTansports(this.transports$);
2025-10-28 21:18:47 +01:00
}
/**
* Lists the transports used by ourselves, plus all other MatrixRTC session
* members. For completeness this also lists the preferred transport and
* whether we are in multi-SFU mode or sticky events mode (because
* advertisedTransport$ wants to read them at the same time, and bundling data
* together when it might change together is what you have to do in RxJS to
* avoid reading inconsistent state or observing too many changes.)
*/
private readonly membershipsWithTransport$ = this.scope.behavior(
2025-10-28 21:18:47 +01:00
this.memberships$.pipe(
map((memberships) => {
const oldestMembership = this.matrixRTCSession.getOldestMembership();
return memberships.map((membership) => {
const transport = membership.getTransport(
2025-10-28 21:58:10 +01:00
oldestMembership ?? membership,
);
return {
membership,
transport: isLivekitTransport(transport) ? transport : undefined,
};
});
2025-10-28 21:18:47 +01:00
}),
),
);
private readonly transports$ = this.scope.behavior(
this.membershipsWithTransport$.pipe(
map((membershipsWithTransport) =>
membershipsWithTransport.reduce((acc, { transport }) => {
if (
transport &&
!acc.some((t) => areLivekitTransportsEqual(t, transport))
) {
acc.push(transport);
}
return acc;
}, [] as LivekitTransport[]),
),
),
);
// TODO move this over this the connection manager
// We have a lost of connections, for each of these these
// connection we create a stream of (participant, connection) tuples.
// Then we combine the several streams (1 per Connection) into a single stream of tuples.
private participantsWithConnection$ =
this.connectionManager.connections$.pipe(
switchMap((connections) => {
const listsOfParticipantWithConnection = connections.map(
(connection) => {
return connection.participantsWithPublishTrack$.pipe(
map((participants) =>
participants.map((p) => ({
participant: p,
connection,
})),
),
);
},
);
return combineLatest(listsOfParticipantWithConnection).pipe(
map((lists) => lists.flatMap((list) => list)),
);
}),
);
// TODO move this over this the connection manager
// Filters the livekit partic
private participantsByMemberId$ = this.participantsWithConnection$.pipe(
map((participantsWithConnections) => {
const participantsByMemberId = new Map<string, Participant[]>();
participantsWithConnections.forEach(({ participant, connection }) => {
if (participant.getTrackPublications().length > 0) {
const currentVal = participantsByMemberId.get(participant.identity);
participantsByMemberId.set(participant.identity, {
connection,
participants:
currentVal === undefined
? [participant]
: ([...currentVal, participant] as Participant[]),
});
}
});
return participantsByMemberId;
2025-10-28 21:58:10 +01:00
}),
);
2025-10-28 21:18:47 +01:00
2025-10-28 21:58:10 +01:00
public readonly matrixLivekitItems$ = this.scope
.behavior<MatrixLivekitItem[]>(
this.allPublishingParticipants$.pipe(
map((participants) => {
const matrixLivekitItems: MatrixLivekitItem[] = participants.map(
({ participant, membership }) => ({
participant,
membership,
id: `${membership.userId}:${membership.deviceId}`,
// This makes sense to add the the js-sdk callMembership (we only need the avatar so probably the call memberhsip just should aquire the avatar)
member:
getRoomMemberFromRtcMember(membership, this.matrixRoom)
?.member ?? memberError(),
}),
2025-10-28 21:18:47 +01:00
);
2025-10-28 21:58:10 +01:00
return matrixLivekitItems;
2025-10-28 21:18:47 +01:00
}),
2025-10-28 21:58:10 +01:00
),
)
.pipe(startWith([]), pauseWhen(this.pretendToBeDisconnected$));
2025-10-28 21:18:47 +01:00
}
// TODO add this to the JS-SDK
function areLivekitTransportsEqual(
t1: LivekitTransport,
t2: LivekitTransport,
): boolean {
return (
t1.livekit_service_url === t2.livekit_service_url &&
// In case we have different lk rooms in the same SFU (depends on the livekit authorization service)
// It is only needed in case the livekit authorization service is not behaving as expected (or custom implementation)
t1.livekit_alias === t2.livekit_alias
);
}