2020-04-07 00:04:41 +02:00
|
|
|
/*
|
|
|
|
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";
|
|
|
|
|
|
|
|
const JITSI_WK_PROPERTY = "im.vector.riot.jitsi";
|
|
|
|
|
2020-04-10 00:02:49 +02:00
|
|
|
export interface JitsiWidgetData {
|
|
|
|
conferenceId: string;
|
|
|
|
isAudioOnly: boolean;
|
|
|
|
domain: string;
|
|
|
|
}
|
|
|
|
|
2020-04-07 00:04:41 +02:00
|
|
|
export class Jitsi {
|
|
|
|
private static instance: Jitsi;
|
|
|
|
|
|
|
|
private domain: string;
|
|
|
|
|
|
|
|
public get preferredDomain(): string {
|
|
|
|
return this.domain || 'jitsi.riot.im';
|
|
|
|
}
|
|
|
|
|
2020-06-03 14:58:17 +02:00
|
|
|
public start() {
|
2020-06-01 23:22:01 +02:00
|
|
|
const cli = MatrixClientPeg.get();
|
2020-06-03 14:58:17 +02:00
|
|
|
cli.on("WellKnown.client", this.update);
|
|
|
|
const discoveryResponse = cli.getClientWellKnown();
|
|
|
|
if (discoveryResponse) {
|
|
|
|
// if we missed the first WellKnown.client event then call update anyway
|
|
|
|
this.update(discoveryResponse);
|
2020-06-01 23:22:01 +02:00
|
|
|
}
|
2020-06-03 14:58:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private update = async (discoveryResponse): Promise<any> => {
|
|
|
|
// Start with a default of the config's domain
|
|
|
|
let domain = (SdkConfig.get()['jitsi'] || {})['preferredDomain'] || 'jitsi.riot.im';
|
2020-06-01 23:22:01 +02:00
|
|
|
|
|
|
|
console.log("Attempting to get Jitsi conference information from homeserver");
|
|
|
|
if (discoveryResponse && discoveryResponse[JITSI_WK_PROPERTY]) {
|
|
|
|
const wkPreferredDomain = discoveryResponse[JITSI_WK_PROPERTY]['preferredDomain'];
|
|
|
|
if (wkPreferredDomain) domain = wkPreferredDomain;
|
2020-04-07 00:04:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Put the result into memory for us to use later
|
|
|
|
this.domain = domain;
|
|
|
|
console.log("Jitsi conference domain:", this.preferredDomain);
|
2020-06-03 14:58:17 +02:00
|
|
|
};
|
2020-04-07 00:04:41 +02:00
|
|
|
|
2020-04-10 00:02:49 +02:00
|
|
|
/**
|
|
|
|
* Parses the given URL into the data needed for a Jitsi widget, if the widget
|
|
|
|
* URL matches the preferredDomain for the app.
|
|
|
|
* @param {string} url The URL to parse.
|
|
|
|
* @returns {JitsiWidgetData} The widget data if eligible, otherwise null.
|
|
|
|
*/
|
|
|
|
public parsePreferredConferenceUrl(url: string): JitsiWidgetData {
|
|
|
|
const parsed = new URL(url);
|
|
|
|
if (parsed.hostname !== this.preferredDomain) return null; // invalid
|
|
|
|
return {
|
|
|
|
conferenceId: parsed.pathname,
|
|
|
|
domain: parsed.hostname,
|
|
|
|
isAudioOnly: false,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-04-07 00:04:41 +02:00
|
|
|
public static getInstance(): Jitsi {
|
|
|
|
if (!Jitsi.instance) {
|
|
|
|
Jitsi.instance = new Jitsi();
|
|
|
|
}
|
|
|
|
return Jitsi.instance;
|
|
|
|
}
|
|
|
|
}
|