Support Jitsi information from client .well-known
It can be useful for the homeserver to support a dedicated Jitsi instance instead of requiring that all their users change/update their configs manually.
This commit is contained in:
parent
2b6cbae4a7
commit
2ec7f2290c
3 changed files with 79 additions and 1 deletions
|
@ -66,6 +66,7 @@ import WidgetUtils from './utils/WidgetUtils';
|
||||||
import WidgetEchoStore from './stores/WidgetEchoStore';
|
import WidgetEchoStore from './stores/WidgetEchoStore';
|
||||||
import SettingsStore, { SettingLevel } from './settings/SettingsStore';
|
import SettingsStore, { SettingLevel } from './settings/SettingsStore';
|
||||||
import {generateHumanReadableId} from "./utils/NamingUtils";
|
import {generateHumanReadableId} from "./utils/NamingUtils";
|
||||||
|
import {Jitsi} from "./widgets/Jitsi";
|
||||||
|
|
||||||
global.mxCalls = {
|
global.mxCalls = {
|
||||||
//room_id: MatrixCall
|
//room_id: MatrixCall
|
||||||
|
@ -431,7 +432,7 @@ async function _startCallApp(roomId, type) {
|
||||||
}
|
}
|
||||||
|
|
||||||
const confId = `JitsiConference${generateHumanReadableId()}`;
|
const confId = `JitsiConference${generateHumanReadableId()}`;
|
||||||
const jitsiDomain = SdkConfig.get()['jitsi']['preferredDomain'];
|
const jitsiDomain = Jitsi.getInstance().preferredDomain;
|
||||||
|
|
||||||
let widgetUrl = WidgetUtils.getLocalJitsiWrapperUrl();
|
let widgetUrl = WidgetUtils.getLocalJitsiWrapperUrl();
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,7 @@ import ToastStore from "./stores/ToastStore";
|
||||||
import {IntegrationManagers} from "./integrations/IntegrationManagers";
|
import {IntegrationManagers} from "./integrations/IntegrationManagers";
|
||||||
import {Mjolnir} from "./mjolnir/Mjolnir";
|
import {Mjolnir} from "./mjolnir/Mjolnir";
|
||||||
import DeviceListener from "./DeviceListener";
|
import DeviceListener from "./DeviceListener";
|
||||||
|
import {Jitsi} from "./widgets/Jitsi";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called at startup, to attempt to build a logged-in Matrix session. It tries
|
* Called at startup, to attempt to build a logged-in Matrix session. It tries
|
||||||
|
@ -604,6 +605,9 @@ async function startMatrixClient(startSyncing=true) {
|
||||||
// This needs to be started after crypto is set up
|
// This needs to be started after crypto is set up
|
||||||
DeviceListener.sharedInstance().start();
|
DeviceListener.sharedInstance().start();
|
||||||
|
|
||||||
|
// Now that we have a MatrixClientPeg, update the Jitsi info
|
||||||
|
await Jitsi.getInstance().update();
|
||||||
|
|
||||||
// dispatch that we finished starting up to wire up any other bits
|
// dispatch that we finished starting up to wire up any other bits
|
||||||
// of the matrix client that cannot be set prior to starting up.
|
// of the matrix client that cannot be set prior to starting up.
|
||||||
dis.dispatch({action: 'client_started'});
|
dis.dispatch({action: 'client_started'});
|
||||||
|
|
73
src/widgets/Jitsi.ts
Normal file
73
src/widgets/Jitsi.ts
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
/*
|
||||||
|
Copyright 2020 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 SdkConfig from "../SdkConfig";
|
||||||
|
import {MatrixClientPeg} from "../MatrixClientPeg";
|
||||||
|
import {AutoDiscovery} from "matrix-js-sdk/src/autodiscovery";
|
||||||
|
|
||||||
|
const JITSI_WK_PROPERTY = "im.vector.riot.jitsi";
|
||||||
|
const JITSI_WK_CHECK_INTERVAL = 2 * 60 * 60 * 1000; // 2 hours, arbitrarily selected
|
||||||
|
|
||||||
|
export class Jitsi {
|
||||||
|
private static instance: Jitsi;
|
||||||
|
|
||||||
|
private domain: string;
|
||||||
|
|
||||||
|
public get preferredDomain(): string {
|
||||||
|
return this.domain || 'jitsi.riot.im';
|
||||||
|
}
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
// We rely on the first call to be an .update() instead of doing one here. Doing one
|
||||||
|
// here could result in duplicate calls to the homeserver.
|
||||||
|
|
||||||
|
// Start a timer to update the server info regularly
|
||||||
|
setInterval(() => this.update(), JITSI_WK_CHECK_INTERVAL);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async update(): Promise<any> {
|
||||||
|
// Start with a default of the config's domain
|
||||||
|
let domain = (SdkConfig.get()['jitsi'] || {})['preferredDomain'] || 'jitsi.riot.im';
|
||||||
|
|
||||||
|
// Now request the .well-known config to see if it changed
|
||||||
|
if (MatrixClientPeg.get()) {
|
||||||
|
try {
|
||||||
|
console.log("Attempting to get Jitsi conference information from homeserver");
|
||||||
|
|
||||||
|
const homeserverDomain = MatrixClientPeg.getHomeserverName();
|
||||||
|
const discoveryResponse = await AutoDiscovery.getRawClientConfig(homeserverDomain);
|
||||||
|
if (discoveryResponse && discoveryResponse[JITSI_WK_PROPERTY]) {
|
||||||
|
const wkPreferredDomain = discoveryResponse[JITSI_WK_PROPERTY]['preferredDomain'];
|
||||||
|
if (wkPreferredDomain) domain = wkPreferredDomain;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
// These are non-fatal errors
|
||||||
|
console.error(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Put the result into memory for us to use later
|
||||||
|
this.domain = domain;
|
||||||
|
console.log("Jitsi conference domain:", this.preferredDomain);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static getInstance(): Jitsi {
|
||||||
|
if (!Jitsi.instance) {
|
||||||
|
Jitsi.instance = new Jitsi();
|
||||||
|
}
|
||||||
|
return Jitsi.instance;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue