2022-10-24 17:03:12 +02:00
|
|
|
import { RoomServiceClient } from 'livekit-server-sdk';
|
|
|
|
|
|
|
|
export function getRoomClient(): RoomServiceClient {
|
|
|
|
checkKeys();
|
|
|
|
return new RoomServiceClient(getLiveKitURL());
|
|
|
|
}
|
|
|
|
|
2023-01-20 15:41:00 +01:00
|
|
|
export function getLiveKitURL(region?: string | string[]): string {
|
|
|
|
let targetKey = 'LIVEKIT_URL';
|
|
|
|
if (region && !Array.isArray(region)) {
|
|
|
|
targetKey = `LIVEKIT_URL_${region}`.toUpperCase();
|
2022-10-24 17:03:12 +02:00
|
|
|
}
|
|
|
|
const url = process.env[targetKey];
|
|
|
|
if (!url) {
|
|
|
|
throw new Error(`${targetKey} is not defined`);
|
|
|
|
}
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkKeys() {
|
|
|
|
if (typeof process.env.LIVEKIT_API_KEY === 'undefined') {
|
|
|
|
throw new Error('LIVEKIT_API_KEY is not defined');
|
|
|
|
}
|
|
|
|
if (typeof process.env.LIVEKIT_API_SECRET === 'undefined') {
|
|
|
|
throw new Error('LIVEKIT_API_SECRET is not defined');
|
|
|
|
}
|
|
|
|
}
|