2015-06-23 17:41:25 +02:00
|
|
|
/*
|
2016-01-07 05:17:56 +01:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2017-02-24 12:45:28 +01:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
2018-09-03 14:01:52 +02:00
|
|
|
Copyright 2018 New Vector Ltd
|
2015-06-23 17:41:25 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2017-01-18 17:06:02 +01:00
|
|
|
// Require common CSS here; this will make webpack process it into bundle.css.
|
|
|
|
// Our own CSS (which is themed) is imported via separate webpack entry points
|
|
|
|
// in webpack.config.js
|
2018-04-25 18:33:18 +02:00
|
|
|
require('gemini-scrollbar/gemini-scrollbar.css');
|
|
|
|
require('gfm.css/gfm.css');
|
|
|
|
require('highlight.js/styles/github.css');
|
|
|
|
require('draft-js/dist/Draft.css');
|
2015-12-01 19:05:43 +01:00
|
|
|
|
2019-01-28 15:09:28 +01:00
|
|
|
import olmWasmPath from 'olm/olm.wasm';
|
|
|
|
|
2018-11-22 17:21:55 +01:00
|
|
|
import './rageshakesetup';
|
|
|
|
|
2018-09-03 14:01:52 +02:00
|
|
|
import React from 'react';
|
|
|
|
// add React and ReactPerf to the global namespace, to make them easier to
|
|
|
|
// access via the console
|
|
|
|
global.React = React;
|
2016-04-17 22:06:51 +02:00
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
2018-09-03 14:01:52 +02:00
|
|
|
global.Perf = require('react-addons-perf');
|
2016-04-17 22:06:51 +02:00
|
|
|
}
|
|
|
|
|
2018-11-22 19:27:53 +01:00
|
|
|
import './modernizr';
|
2018-09-03 14:01:52 +02:00
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import sdk from 'matrix-react-sdk';
|
|
|
|
import PlatformPeg from 'matrix-react-sdk/lib/PlatformPeg';
|
2015-11-30 18:31:32 +01:00
|
|
|
sdk.loadSkin(require('../component-index'));
|
2018-09-03 14:01:52 +02:00
|
|
|
import VectorConferenceHandler from 'matrix-react-sdk/lib/VectorConferenceHandler';
|
2017-07-13 01:48:31 +02:00
|
|
|
import Promise from 'bluebird';
|
2018-09-03 14:01:52 +02:00
|
|
|
import request from 'browser-request';
|
2017-05-24 12:27:06 +02:00
|
|
|
import * as languageHandler from 'matrix-react-sdk/lib/languageHandler';
|
2016-08-12 12:01:01 +02:00
|
|
|
|
2016-08-11 02:55:51 +02:00
|
|
|
import url from 'url';
|
2015-06-09 18:40:42 +02:00
|
|
|
|
2016-08-10 01:15:04 +02:00
|
|
|
import {parseQs, parseQsFromFragment} from './url_utils';
|
2018-12-18 18:42:55 +01:00
|
|
|
|
|
|
|
import ElectronPlatform from './platform/ElectronPlatform';
|
|
|
|
import WebPlatform from './platform/WebPlatform';
|
2015-10-12 11:11:02 +02:00
|
|
|
|
2017-04-06 12:15:14 +02:00
|
|
|
import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg';
|
2018-11-22 19:25:55 +01:00
|
|
|
import SettingsStore from "matrix-react-sdk/lib/settings/SettingsStore";
|
2017-11-08 15:55:30 +01:00
|
|
|
import Tinter from 'matrix-react-sdk/lib/Tinter';
|
2017-11-17 04:50:29 +01:00
|
|
|
import SdkConfig from "matrix-react-sdk/lib/SdkConfig";
|
2017-04-06 12:15:14 +02:00
|
|
|
|
2018-09-26 17:44:52 +02:00
|
|
|
import Olm from 'olm';
|
|
|
|
|
2018-09-03 14:01:52 +02:00
|
|
|
import CallHandler from 'matrix-react-sdk/lib/CallHandler';
|
2015-11-30 19:10:09 +01:00
|
|
|
|
2018-09-03 21:38:30 +02:00
|
|
|
import {getVectorConfig} from './getconfig';
|
|
|
|
|
2018-09-03 14:01:52 +02:00
|
|
|
let lastLocationHashSet = null;
|
|
|
|
|
2018-10-05 18:05:25 +02:00
|
|
|
// Disable warnings for now: we use deprecated bluebird functions
|
|
|
|
// and need to migrate, but they spam the console with warnings.
|
|
|
|
Promise.config({warnings: false});
|
|
|
|
|
2015-10-28 18:39:50 +01:00
|
|
|
function checkBrowserFeatures(featureList) {
|
|
|
|
if (!window.Modernizr) {
|
|
|
|
console.error("Cannot check features - Modernizr global is missing.");
|
|
|
|
return false;
|
|
|
|
}
|
2018-11-22 19:25:55 +01:00
|
|
|
let featureComplete = true;
|
|
|
|
for (let i = 0; i < featureList.length; i++) {
|
2015-10-28 18:39:50 +01:00
|
|
|
if (window.Modernizr[featureList[i]] === undefined) {
|
|
|
|
console.error(
|
|
|
|
"Looked for feature '%s' but Modernizr has no results for this. " +
|
2018-11-22 19:25:55 +01:00
|
|
|
"Has it been configured correctly?", featureList[i],
|
2015-10-28 18:39:50 +01:00
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (window.Modernizr[featureList[i]] === false) {
|
|
|
|
console.error("Browser missing feature: '%s'", featureList[i]);
|
|
|
|
// toggle flag rather than return early so we log all missing features
|
|
|
|
// rather than just the first.
|
|
|
|
featureComplete = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return featureComplete;
|
|
|
|
}
|
|
|
|
|
2017-03-08 15:57:13 +01:00
|
|
|
// Parse the given window.location and return parameters that can be used when calling
|
|
|
|
// MatrixChat.showScreen(screen, params)
|
|
|
|
function getScreenFromLocation(location) {
|
|
|
|
const fragparts = parseQsFromFragment(location);
|
|
|
|
return {
|
|
|
|
screen: fragparts.location.substring(1),
|
|
|
|
params: fragparts.params,
|
2018-11-22 19:25:55 +01:00
|
|
|
};
|
2017-03-08 15:57:13 +01:00
|
|
|
}
|
|
|
|
|
2015-07-15 21:33:12 +02:00
|
|
|
// Here, we do some crude URL analysis to allow
|
2016-02-23 11:57:50 +01:00
|
|
|
// deep-linking.
|
2015-07-15 20:25:36 +02:00
|
|
|
function routeUrl(location) {
|
2016-06-08 19:46:21 +02:00
|
|
|
if (!window.matrixChat) return;
|
|
|
|
|
2017-03-08 15:57:13 +01:00
|
|
|
console.log("Routing URL ", location.href);
|
|
|
|
const s = getScreenFromLocation(location);
|
|
|
|
window.matrixChat.showScreen(s.screen, s.params);
|
2015-07-15 20:25:36 +02:00
|
|
|
}
|
|
|
|
|
2015-07-20 21:20:17 +02:00
|
|
|
function onHashChange(ev) {
|
2015-08-06 15:58:52 +02:00
|
|
|
if (decodeURIComponent(window.location.hash) == lastLocationHashSet) {
|
|
|
|
// we just set this: no need to route it!
|
|
|
|
return;
|
|
|
|
}
|
2015-07-20 21:20:17 +02:00
|
|
|
routeUrl(window.location);
|
|
|
|
}
|
|
|
|
|
2015-07-15 21:33:12 +02:00
|
|
|
// This will be called whenever the SDK changes screens,
|
|
|
|
// so a web page can update the URL bar appropriately.
|
2018-09-03 14:01:52 +02:00
|
|
|
function onNewScreen(screen) {
|
2016-04-13 23:18:26 +02:00
|
|
|
console.log("newscreen "+screen);
|
2018-11-22 19:25:55 +01:00
|
|
|
const hash = '#/' + screen;
|
2017-03-08 15:57:13 +01:00
|
|
|
lastLocationHashSet = hash;
|
|
|
|
window.location.hash = hash;
|
2018-11-22 19:25:55 +01:00
|
|
|
}
|
2015-07-15 20:25:36 +02:00
|
|
|
|
2015-07-15 21:33:12 +02:00
|
|
|
// We use this to work out what URL the SDK should
|
|
|
|
// pass through when registering to allow the user to
|
|
|
|
// click back to the client having registered.
|
|
|
|
// It's up to us to recognise if we're loaded with
|
|
|
|
// this URL and tell MatrixClient to resume registration.
|
2016-12-24 04:18:12 +01:00
|
|
|
//
|
|
|
|
// If we're in electron, we should never pass through a file:// URL otherwise
|
|
|
|
// the identity server will try to 302 the browser to it, which breaks horribly.
|
|
|
|
// so in that instance, hardcode to use riot.im/app for now instead.
|
2018-09-03 14:01:52 +02:00
|
|
|
function makeRegistrationUrl(params) {
|
2017-02-24 12:45:28 +01:00
|
|
|
let url;
|
2019-01-23 16:25:04 +01:00
|
|
|
if (window.location.protocol === "vector:") {
|
2017-02-24 12:45:28 +01:00
|
|
|
url = 'https://riot.im/app/#/register';
|
|
|
|
} else {
|
|
|
|
url = (
|
|
|
|
window.location.protocol + '//' +
|
|
|
|
window.location.host +
|
|
|
|
window.location.pathname +
|
|
|
|
'#/register'
|
|
|
|
);
|
2016-12-24 04:18:12 +01:00
|
|
|
}
|
2017-02-24 12:45:28 +01:00
|
|
|
|
|
|
|
const keys = Object.keys(params);
|
|
|
|
for (let i = 0; i < keys.length; ++i) {
|
|
|
|
if (i == 0) {
|
|
|
|
url += '?';
|
|
|
|
} else {
|
|
|
|
url += '&';
|
|
|
|
}
|
|
|
|
const k = keys[i];
|
|
|
|
url += k + '=' + encodeURIComponent(params[k]);
|
2016-12-24 04:18:12 +01:00
|
|
|
}
|
2017-02-24 12:45:28 +01:00
|
|
|
return url;
|
2015-07-15 21:33:12 +02:00
|
|
|
}
|
|
|
|
|
2018-11-22 19:25:55 +01:00
|
|
|
export function getConfig(configJsonFilename) {
|
2018-10-03 02:27:19 +02:00
|
|
|
return new Promise(function(resolve, reject) {
|
|
|
|
request(
|
|
|
|
{ method: "GET", url: configJsonFilename },
|
|
|
|
(err, response, body) => {
|
|
|
|
if (err || response.status < 200 || response.status >= 300) {
|
|
|
|
// Lack of a config isn't an error, we should
|
|
|
|
// just use the defaults.
|
|
|
|
// Also treat a blank config as no config, assuming
|
|
|
|
// the status code is 0, because we don't get 404s
|
|
|
|
// from file: URIs so this is the only way we can
|
|
|
|
// not fail if the file doesn't exist when loading
|
|
|
|
// from a file:// URI.
|
|
|
|
if (response) {
|
|
|
|
if (response.status == 404 || (response.status == 0 && body == '')) {
|
|
|
|
resolve({});
|
|
|
|
}
|
2016-11-03 15:43:10 +01:00
|
|
|
}
|
2018-10-03 02:27:19 +02:00
|
|
|
reject({err: err, response: response});
|
|
|
|
return;
|
2016-11-02 18:57:27 +01:00
|
|
|
}
|
2016-06-07 23:01:56 +02:00
|
|
|
|
2018-10-03 02:27:19 +02:00
|
|
|
// We parse the JSON ourselves rather than use the JSON
|
|
|
|
// parameter, since this throws a parse error on empty
|
|
|
|
// which breaks if there's no config.json and we're
|
|
|
|
// loading from the filesystem (see above).
|
|
|
|
resolve(JSON.parse(body));
|
2018-10-05 17:41:45 +02:00
|
|
|
},
|
2018-10-03 02:27:19 +02:00
|
|
|
);
|
2018-10-05 17:41:45 +02:00
|
|
|
});
|
2016-05-25 02:08:09 +02:00
|
|
|
}
|
|
|
|
|
2017-06-16 16:05:14 +02:00
|
|
|
function onTokenLoginCompleted() {
|
2016-08-11 02:55:51 +02:00
|
|
|
// if we did a token login, we're now left with the token, hs and is
|
|
|
|
// url as query params in the url; a little nasty but let's redirect to
|
|
|
|
// clear them.
|
2018-11-22 19:25:55 +01:00
|
|
|
const parsedUrl = url.parse(window.location.href);
|
2017-06-16 16:05:14 +02:00
|
|
|
parsedUrl.search = "";
|
2018-11-22 19:25:55 +01:00
|
|
|
const formatted = url.format(parsedUrl);
|
2017-06-16 16:05:14 +02:00
|
|
|
console.log("Redirecting to " + formatted + " to drop loginToken " +
|
|
|
|
"from queryparams");
|
|
|
|
window.location.href = formatted;
|
2016-08-11 02:55:51 +02:00
|
|
|
}
|
|
|
|
|
2016-05-25 02:08:09 +02:00
|
|
|
async function loadApp() {
|
2018-12-19 23:05:04 +01:00
|
|
|
if (window.vector_indexeddb_worker_script === undefined) {
|
|
|
|
// If this is missing, something has probably gone wrong with
|
|
|
|
// the bundling. The js-sdk will just fall back to accessing
|
|
|
|
// indexeddb directly with no worker script, but we want to
|
|
|
|
// make sure the indexeddb script is present, so fail hard.
|
|
|
|
throw new Error("Missing indexeddb worker script!");
|
|
|
|
}
|
2018-09-03 14:01:52 +02:00
|
|
|
MatrixClientPeg.setIndexedDbWorkerScript(window.vector_indexeddb_worker_script);
|
|
|
|
CallHandler.setConferenceHandler(VectorConferenceHandler);
|
|
|
|
|
|
|
|
window.addEventListener('hashchange', onHashChange);
|
|
|
|
|
2018-10-04 21:11:34 +02:00
|
|
|
await loadOlm();
|
2018-09-26 17:44:52 +02:00
|
|
|
|
2017-05-23 17:44:54 +02:00
|
|
|
await loadLanguage();
|
2017-05-23 15:12:53 +02:00
|
|
|
|
2016-08-11 13:44:49 +02:00
|
|
|
const fragparts = parseQsFromFragment(window.location);
|
|
|
|
const params = parseQs(window.location);
|
|
|
|
|
2018-12-18 18:42:55 +01:00
|
|
|
// set the platform for react sdk
|
|
|
|
if (window.ipcRenderer) {
|
|
|
|
console.log("Using Electron platform");
|
2018-12-21 20:14:25 +01:00
|
|
|
const plaf = new ElectronPlatform();
|
|
|
|
PlatformPeg.set(plaf);
|
|
|
|
|
|
|
|
// Electron only: see if we need to do a one-time data
|
|
|
|
// migration
|
|
|
|
if (window.localStorage.getItem('mx_user_id') === null) {
|
|
|
|
console.log("Migrating session from old origin...");
|
|
|
|
await plaf.migrateFromOldOrigin();
|
|
|
|
console.log("Origin migration complete");
|
|
|
|
}
|
2018-12-18 18:42:55 +01:00
|
|
|
} else {
|
|
|
|
console.log("Using Web platform");
|
|
|
|
PlatformPeg.set(new WebPlatform());
|
|
|
|
}
|
2016-11-02 16:12:51 +01:00
|
|
|
|
2017-11-17 05:00:30 +01:00
|
|
|
// Load the config file. First try to load up a domain-specific config of the
|
|
|
|
// form "config.$domain.json" and if that fails, fall back to config.json.
|
|
|
|
let configJson;
|
|
|
|
let configError;
|
|
|
|
try {
|
2018-09-05 16:38:00 +02:00
|
|
|
configJson = await getVectorConfig();
|
2017-11-17 05:00:30 +01:00
|
|
|
} catch (e) {
|
|
|
|
configError = e;
|
|
|
|
}
|
2018-03-12 17:15:17 +01:00
|
|
|
|
2017-11-27 19:03:58 +01:00
|
|
|
// XXX: We call this twice, once here and once in MatrixChat as a prop. We call it here to ensure
|
2018-03-12 17:15:17 +01:00
|
|
|
// granular settings are loaded correctly and to avoid duplicating the override logic for the theme.
|
2017-11-17 05:00:30 +01:00
|
|
|
SdkConfig.put(configJson);
|
|
|
|
|
2016-08-11 13:44:49 +02:00
|
|
|
// don't try to redirect to the native apps if we're
|
2017-11-17 05:00:30 +01:00
|
|
|
// verifying a 3pid (but after we've loaded the config)
|
2018-09-28 12:23:46 +02:00
|
|
|
// or if the user is following a deep link
|
|
|
|
// (https://github.com/vector-im/riot-web/issues/7378)
|
|
|
|
const preventRedirect = fragparts.params.client_secret || fragparts.location.length > 0;
|
2016-08-11 13:44:49 +02:00
|
|
|
|
|
|
|
if (!preventRedirect) {
|
2018-09-03 21:38:30 +02:00
|
|
|
const isIos = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
|
|
|
|
const isAndroid = /Android/.test(navigator.userAgent);
|
|
|
|
if (isIos || isAndroid) {
|
2019-04-04 02:11:25 +02:00
|
|
|
if (document.cookie.indexOf("riot_mobile_redirect_to_guide=false") === -1) {
|
2018-09-03 21:38:30 +02:00
|
|
|
window.location = "mobile_guide/";
|
2016-08-11 13:44:49 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-05-13 18:14:01 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-11 01:48:02 +02:00
|
|
|
|
2017-10-20 19:41:39 +02:00
|
|
|
// as quickly as we possibly can, set a default theme...
|
|
|
|
let a;
|
2019-02-11 18:50:39 +01:00
|
|
|
const theme = SettingsStore.getValue("theme");
|
2017-10-20 19:41:39 +02:00
|
|
|
for (let i = 0; (a = document.getElementsByTagName("link")[i]); i++) {
|
|
|
|
const href = a.getAttribute("href");
|
2017-11-15 16:55:33 +01:00
|
|
|
if (!href) continue;
|
2017-10-20 19:41:39 +02:00
|
|
|
// shouldn't we be using the 'title' tag rather than the href?
|
|
|
|
const match = href.match(/^bundles\/.*\/theme-(.*)\.css$/);
|
|
|
|
if (match) {
|
2017-11-08 15:55:30 +01:00
|
|
|
if (match[1] === theme) {
|
2017-11-05 01:40:13 +01:00
|
|
|
// remove the disabled flag off the stylesheet
|
2018-03-12 17:15:17 +01:00
|
|
|
|
|
|
|
// Firefox requires setting the attribute to false, so do
|
|
|
|
// that instead of removing it. Related:
|
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=1281135
|
|
|
|
a.disabled = false;
|
2017-11-08 15:55:30 +01:00
|
|
|
|
|
|
|
// in case the Tinter.tint() in MatrixChat fires before the
|
2017-11-14 16:17:32 +01:00
|
|
|
// CSS has actually loaded (which in practice happens)...
|
|
|
|
|
2018-07-24 13:38:49 +02:00
|
|
|
// This if fixes Tinter.setTheme to not fire on Firefox
|
|
|
|
// in case it is the first time loading Riot.
|
|
|
|
// `InstallTrigger` is a Object which only exists on Firefox
|
|
|
|
// (it is used for their Plugins) and can be used as a
|
2018-11-22 19:25:55 +01:00
|
|
|
// feature check.
|
2018-07-24 13:38:49 +02:00
|
|
|
// Firefox loads css always before js. This is why we dont use
|
|
|
|
// onload or it's EventListener as thoose will never trigger.
|
2018-05-31 22:32:29 +02:00
|
|
|
if (typeof InstallTrigger !== 'undefined') {
|
2017-11-08 15:55:30 +01:00
|
|
|
Tinter.setTheme(theme);
|
2018-05-31 22:32:29 +02:00
|
|
|
} else {
|
2018-07-24 13:38:49 +02:00
|
|
|
// FIXME: we should probably block loading the app or even
|
|
|
|
// showing a spinner until the theme is loaded, to avoid
|
|
|
|
// flashes of unstyled content.
|
2018-05-31 22:32:29 +02:00
|
|
|
a.onload = () => {
|
|
|
|
Tinter.setTheme(theme);
|
|
|
|
};
|
|
|
|
}
|
2018-03-12 17:15:17 +01:00
|
|
|
} else {
|
|
|
|
// Firefox requires this to not be done via `setAttribute`
|
|
|
|
// or via HTML.
|
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=1281135
|
|
|
|
a.disabled = true;
|
2017-10-20 19:41:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-03 14:01:52 +02:00
|
|
|
const validBrowser = checkBrowserFeatures([
|
|
|
|
"displaytable", "flexbox", "es5object", "es5function", "localstorage",
|
|
|
|
"objectfit", "indexeddb", "webworkers",
|
|
|
|
]);
|
|
|
|
|
|
|
|
const acceptInvalidBrowser = window.localStorage && window.localStorage.getItem('mx_accepts_unsupported_browser');
|
2017-04-22 00:08:49 +02:00
|
|
|
|
2016-04-13 22:01:24 +02:00
|
|
|
console.log("Vector starting at "+window.location);
|
2016-06-08 19:46:21 +02:00
|
|
|
if (configError) {
|
|
|
|
window.matrixChat = ReactDOM.render(<div className="error">
|
|
|
|
Unable to load config file: please refresh the page to try again.
|
|
|
|
</div>, document.getElementById('matrixchat'));
|
2018-09-03 14:01:52 +02:00
|
|
|
} else if (validBrowser || acceptInvalidBrowser) {
|
2017-06-03 13:50:47 +02:00
|
|
|
const platform = PlatformPeg.get();
|
|
|
|
platform.startUpdater();
|
|
|
|
|
2017-03-09 11:04:15 +01:00
|
|
|
const MatrixChat = sdk.getComponent('structures.MatrixChat');
|
2015-11-10 00:13:46 +01:00
|
|
|
window.matrixChat = ReactDOM.render(
|
2015-11-30 19:10:09 +01:00
|
|
|
<MatrixChat
|
|
|
|
onNewScreen={onNewScreen}
|
2017-02-24 12:45:28 +01:00
|
|
|
makeRegistrationUrl={makeRegistrationUrl}
|
2015-11-30 19:10:09 +01:00
|
|
|
ConferenceHandler={VectorConferenceHandler}
|
2015-12-17 16:01:07 +01:00
|
|
|
config={configJson}
|
2016-08-11 02:55:51 +02:00
|
|
|
realQueryParams={params}
|
|
|
|
startingFragmentQueryParams={fragparts.params}
|
2017-11-12 00:47:03 +01:00
|
|
|
enableGuest={!configJson.disable_guests}
|
2017-06-16 16:05:14 +02:00
|
|
|
onTokenLoginCompleted={onTokenLoginCompleted}
|
2017-03-08 15:57:13 +01:00
|
|
|
initialScreenAfterLogin={getScreenFromLocation(window.location)}
|
2017-06-03 13:50:47 +02:00
|
|
|
defaultDeviceDisplayName={platform.getDefaultDeviceDisplayName()}
|
2016-08-11 02:55:51 +02:00
|
|
|
/>,
|
2018-11-22 19:25:55 +01:00
|
|
|
document.getElementById('matrixchat'),
|
2015-10-28 18:39:50 +01:00
|
|
|
);
|
2017-05-27 21:39:52 +02:00
|
|
|
} else {
|
2015-10-28 18:39:50 +01:00
|
|
|
console.error("Browser is missing required features.");
|
|
|
|
// take to a different landing page to AWOOOOOGA at the user
|
2018-11-22 19:25:55 +01:00
|
|
|
const CompatibilityPage = sdk.getComponent("structures.CompatibilityPage");
|
2015-11-10 00:13:46 +01:00
|
|
|
window.matrixChat = ReactDOM.render(
|
2015-10-28 18:39:50 +01:00
|
|
|
<CompatibilityPage onAccept={function() {
|
2017-04-22 03:17:22 +02:00
|
|
|
if (window.localStorage) window.localStorage.setItem('mx_accepts_unsupported_browser', true);
|
2015-10-28 18:39:50 +01:00
|
|
|
console.log("User accepts the compatibility risks.");
|
|
|
|
loadApp();
|
|
|
|
}} />,
|
2018-11-22 19:25:55 +01:00
|
|
|
document.getElementById('matrixchat'),
|
2015-10-28 18:39:50 +01:00
|
|
|
);
|
2016-03-15 19:38:24 +01:00
|
|
|
}
|
2015-10-28 18:39:50 +01:00
|
|
|
}
|
|
|
|
|
2018-10-04 21:11:34 +02:00
|
|
|
function loadOlm() {
|
|
|
|
/* Load Olm. We try the WebAssembly version first, and then the legacy,
|
|
|
|
* asm.js version if that fails. For this reason we need to wait for this
|
|
|
|
* to finish before continuing to load the rest of the app. In future
|
|
|
|
* we could somehow pass a promise down to react-sdk and have it wait on
|
|
|
|
* that so olm can be loading in parallel with the rest of the app.
|
|
|
|
*
|
|
|
|
* We also need to tell the Olm js to look for its wasm file at the same
|
|
|
|
* level as index.html. It really should be in the same place as the js,
|
2019-01-28 15:09:28 +01:00
|
|
|
* ie. in the bundle directory, but as far as I can tell this is
|
|
|
|
* completely impossible with webpack. We do, however, use a hashed
|
|
|
|
* filename to avoid caching issues.
|
2018-10-04 21:11:34 +02:00
|
|
|
*/
|
|
|
|
return Olm.init({
|
2019-01-28 15:09:28 +01:00
|
|
|
locateFile: () => olmWasmPath,
|
2018-10-04 21:11:34 +02:00
|
|
|
}).then(() => {
|
|
|
|
console.log("Using WebAssembly Olm");
|
|
|
|
}).catch((e) => {
|
|
|
|
console.log("Failed to load Olm: trying legacy version");
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const s = document.createElement('script');
|
2019-01-28 15:09:28 +01:00
|
|
|
s.src = 'olm_legacy.js'; // XXX: This should be cache-busted too
|
2018-10-04 21:11:34 +02:00
|
|
|
s.onload = resolve;
|
|
|
|
s.onerror = reject;
|
|
|
|
document.body.appendChild(s);
|
|
|
|
}).then(() => {
|
|
|
|
// Init window.Olm, ie. the one just loaded by the script tag,
|
|
|
|
// not 'Olm' which is still the failed wasm version.
|
|
|
|
return window.Olm.init();
|
|
|
|
}).then(() => {
|
|
|
|
console.log("Using legacy Olm");
|
|
|
|
}).catch((e) => {
|
|
|
|
console.log("Both WebAssembly and asm.js Olm failed!", e);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-23 17:44:54 +02:00
|
|
|
async function loadLanguage() {
|
2017-11-18 06:15:35 +01:00
|
|
|
const prefLang = SettingsStore.getValue("language", null, /*excludeDefault=*/true);
|
2017-05-25 17:47:12 +02:00
|
|
|
let langs = [];
|
|
|
|
|
|
|
|
if (!prefLang) {
|
|
|
|
languageHandler.getLanguagesFromBrowser().forEach((l) => {
|
|
|
|
langs.push(...languageHandler.getNormalizedLanguageKeys(l));
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
langs = [prefLang];
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
await languageHandler.setLanguage(langs);
|
2017-11-26 01:46:47 +01:00
|
|
|
document.documentElement.setAttribute("lang", languageHandler.getCurrentLanguage());
|
2017-05-25 17:47:12 +02:00
|
|
|
} catch (e) {
|
|
|
|
console.error("Unable to set language", e);
|
|
|
|
}
|
2017-05-23 15:12:53 +02:00
|
|
|
}
|
|
|
|
|
2017-05-23 17:44:54 +02:00
|
|
|
loadApp();
|