Implement GroupCallUtils (#9131)
* Implement GroupCallUtils * Trigger CI * Use UnstableValue for new call event types * Implement PR feedback
This commit is contained in:
parent
394e181854
commit
9ed5550501
2 changed files with 848 additions and 0 deletions
175
src/utils/GroupCallUtils.ts
Normal file
175
src/utils/GroupCallUtils.ts
Normal file
|
@ -0,0 +1,175 @@
|
|||
/*
|
||||
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 { EventTimeline, MatrixClient, MatrixEvent, RoomState } from "matrix-js-sdk/src/matrix";
|
||||
import { UnstableValue } from "matrix-js-sdk/src/NamespacedValue";
|
||||
import { deepCopy } from "matrix-js-sdk/src/utils";
|
||||
|
||||
export const STUCK_DEVICE_TIMEOUT_MS = 1000 * 60 * 60; // 1 hour
|
||||
|
||||
export const CALL_STATE_EVENT_TYPE = new UnstableValue("m.call", "org.matrix.msc3401.call");
|
||||
export const CALL_MEMBER_STATE_EVENT_TYPE = new UnstableValue("m.call.member", "org.matrix.msc3401.call.member");
|
||||
const CALL_STATE_EVENT_TERMINATED = "m.terminated";
|
||||
|
||||
interface MDevice {
|
||||
["m.device_id"]: string;
|
||||
}
|
||||
|
||||
interface MCall {
|
||||
["m.call_id"]: string;
|
||||
["m.devices"]: Array<MDevice>;
|
||||
}
|
||||
|
||||
interface MCallMemberContent {
|
||||
["m.expires_ts"]: number;
|
||||
["m.calls"]: Array<MCall>;
|
||||
}
|
||||
|
||||
const getRoomState = (client: MatrixClient, roomId: string): RoomState => {
|
||||
return client.getRoom(roomId)
|
||||
?.getLiveTimeline()
|
||||
?.getState?.(EventTimeline.FORWARDS);
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns all room state events for the stable and unstable type value.
|
||||
*/
|
||||
const getRoomStateEvents = (
|
||||
client: MatrixClient,
|
||||
roomId: string,
|
||||
type: UnstableValue<string, string>,
|
||||
): MatrixEvent[] => {
|
||||
const roomState = getRoomState(client, roomId);
|
||||
if (!roomState) return [];
|
||||
|
||||
return [
|
||||
...roomState.getStateEvents(type.name),
|
||||
...roomState.getStateEvents(type.altName),
|
||||
];
|
||||
};
|
||||
|
||||
/**
|
||||
* Finds the latest, non-terminated call state event.
|
||||
*/
|
||||
export const getGroupCall = (client: MatrixClient, roomId: string): MatrixEvent => {
|
||||
return getRoomStateEvents(client, roomId, CALL_STATE_EVENT_TYPE)
|
||||
.sort((a: MatrixEvent, b: MatrixEvent) => b.getTs() - a.getTs())
|
||||
.find((event: MatrixEvent) => {
|
||||
return !(CALL_STATE_EVENT_TERMINATED in event.getContent());
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Finds the "m.call.member" events for an "m.call" event.
|
||||
*
|
||||
* @returns {MatrixEvent[]} non-expired "m.call.member" events for the call
|
||||
*/
|
||||
export const useConnectedMembers = (client: MatrixClient, callEvent: MatrixEvent): MatrixEvent[] => {
|
||||
if (!CALL_STATE_EVENT_TYPE.matches(callEvent.getType())) return [];
|
||||
|
||||
const callId = callEvent.getStateKey();
|
||||
const now = Date.now();
|
||||
|
||||
return getRoomStateEvents(client, callEvent.getRoomId(), CALL_MEMBER_STATE_EVENT_TYPE)
|
||||
.filter((callMemberEvent: MatrixEvent): boolean => {
|
||||
const {
|
||||
["m.expires_ts"]: expiresTs,
|
||||
["m.calls"]: calls,
|
||||
} = callMemberEvent.getContent<MCallMemberContent>();
|
||||
|
||||
// state event expired
|
||||
if (expiresTs && expiresTs < now) return false;
|
||||
|
||||
return !!calls?.find((call: MCall) => call["m.call_id"] === callId);
|
||||
}) || [];
|
||||
};
|
||||
|
||||
/**
|
||||
* Removes a list of devices from a call.
|
||||
* Only works for the current user's devices.
|
||||
*/
|
||||
const removeDevices = async (client: MatrixClient, callEvent: MatrixEvent, deviceIds: string[]): Promise<void> => {
|
||||
if (!CALL_STATE_EVENT_TYPE.matches(callEvent.getType())) return;
|
||||
|
||||
const roomId = callEvent.getRoomId();
|
||||
const roomState = getRoomState(client, roomId);
|
||||
if (!roomState) return;
|
||||
|
||||
const callMemberEvent = roomState.getStateEvents(CALL_MEMBER_STATE_EVENT_TYPE.name, client.getUserId())
|
||||
?? roomState.getStateEvents(CALL_MEMBER_STATE_EVENT_TYPE.altName, client.getUserId());
|
||||
const callMemberEventContent = callMemberEvent?.getContent<MCallMemberContent>();
|
||||
if (
|
||||
!Array.isArray(callMemberEventContent?.["m.calls"])
|
||||
|| callMemberEventContent?.["m.calls"].length === 0
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
// copy the content to prevent mutations
|
||||
const newContent = deepCopy(callMemberEventContent);
|
||||
const callId = callEvent.getStateKey();
|
||||
let changed = false;
|
||||
|
||||
newContent["m.calls"].forEach((call: MCall) => {
|
||||
// skip other calls
|
||||
if (call["m.call_id"] !== callId) return;
|
||||
|
||||
call["m.devices"] = call["m.devices"]?.filter((device: MDevice) => {
|
||||
if (deviceIds.includes(device["m.device_id"])) {
|
||||
changed = true;
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
});
|
||||
});
|
||||
|
||||
if (changed) {
|
||||
// only send a new state event if there has been a change
|
||||
newContent["m.expires_ts"] = Date.now() + STUCK_DEVICE_TIMEOUT_MS;
|
||||
await client.sendStateEvent(
|
||||
roomId,
|
||||
CALL_MEMBER_STATE_EVENT_TYPE.name,
|
||||
newContent,
|
||||
client.getUserId(),
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Removes the current device from a call.
|
||||
*/
|
||||
export const removeOurDevice = async (client: MatrixClient, callEvent: MatrixEvent) => {
|
||||
return removeDevices(client, callEvent, [client.getDeviceId()]);
|
||||
};
|
||||
|
||||
/**
|
||||
* Removes all devices of the current user that have not been seen within the STUCK_DEVICE_TIMEOUT_MS.
|
||||
* Does per default not remove the current device unless includeCurrentDevice is true.
|
||||
*
|
||||
* @param {boolean} includeCurrentDevice - Whether to include the current device of this session here.
|
||||
*/
|
||||
export const fixStuckDevices = async (client: MatrixClient, callEvent: MatrixEvent, includeCurrentDevice: boolean) => {
|
||||
const now = Date.now();
|
||||
const { devices: myDevices } = await client.getDevices();
|
||||
const currentDeviceId = client.getDeviceId();
|
||||
const devicesToBeRemoved = myDevices.filter(({ last_seen_ts: lastSeenTs, device_id: deviceId }) => {
|
||||
return lastSeenTs
|
||||
&& (deviceId !== currentDeviceId || includeCurrentDevice)
|
||||
&& (now - lastSeenTs) > STUCK_DEVICE_TIMEOUT_MS;
|
||||
}).map(d => d.device_id);
|
||||
return removeDevices(client, callEvent, devicesToBeRemoved);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue