2020-08-05 18:38:55 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2020-08-07 16:50:18 +02:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-08-05 18:38:55 +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.
|
|
|
|
*/
|
|
|
|
|
2020-04-20 19:47:45 +02:00
|
|
|
// import {RecordRequester, ReplayRequester} from "./matrix/net/request/replay.js";
|
2020-08-05 17:36:44 +02:00
|
|
|
import {createFetchRequest} from "./matrix/net/request/fetch.js";
|
2020-08-07 16:50:18 +02:00
|
|
|
import {xhrRequest} from "./matrix/net/request/xhr.js";
|
2020-04-20 21:56:10 +02:00
|
|
|
import {SessionContainer} from "./matrix/SessionContainer.js";
|
2020-04-20 21:41:10 +02:00
|
|
|
import {StorageFactory} from "./matrix/storage/idb/StorageFactory.js";
|
2020-04-20 21:26:39 +02:00
|
|
|
import {SessionInfoStorage} from "./matrix/sessioninfo/localstorage/SessionInfoStorage.js";
|
|
|
|
import {BrawlViewModel} from "./domain/BrawlViewModel.js";
|
2020-10-06 18:06:11 +02:00
|
|
|
import {Navigation} from "./domain/navigation/Navigation.js";
|
|
|
|
import {URLRouter} from "./domain/navigation/URLRouter.js";
|
2020-04-20 21:26:39 +02:00
|
|
|
import {BrawlView} from "./ui/web/BrawlView.js";
|
2020-04-20 21:56:10 +02:00
|
|
|
import {Clock} from "./ui/web/dom/Clock.js";
|
2020-10-06 18:06:11 +02:00
|
|
|
import {HashObservable} from "./ui/web/dom/HashObservable.js";
|
2020-04-20 21:26:39 +02:00
|
|
|
import {OnlineStatus} from "./ui/web/dom/OnlineStatus.js";
|
2020-09-17 10:19:09 +02:00
|
|
|
import {CryptoDriver} from "./ui/web/dom/CryptoDriver.js";
|
2020-09-10 18:41:23 +02:00
|
|
|
import {WorkerPool} from "./utils/WorkerPool.js";
|
2020-09-11 10:43:17 +02:00
|
|
|
import {OlmWorker} from "./matrix/e2ee/OlmWorker.js";
|
2019-02-26 22:45:58 +01:00
|
|
|
|
2020-08-27 13:24:55 +02:00
|
|
|
function addScript(src) {
|
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
var s = document.createElement("script");
|
|
|
|
s.setAttribute("src", src );
|
|
|
|
s.onload=resolve;
|
|
|
|
s.onerror=reject;
|
|
|
|
document.body.appendChild(s);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function loadOlm(olmPaths) {
|
2020-08-27 13:31:14 +02:00
|
|
|
// make crypto.getRandomValues available without
|
|
|
|
// a prefix on IE11, needed by olm to work
|
|
|
|
if (window.msCrypto && !window.crypto) {
|
|
|
|
window.crypto = window.msCrypto;
|
|
|
|
}
|
2020-08-27 13:24:55 +02:00
|
|
|
if (olmPaths) {
|
|
|
|
if (window.WebAssembly) {
|
|
|
|
await addScript(olmPaths.wasmBundle);
|
|
|
|
await window.Olm.init({locateFile: () => olmPaths.wasm});
|
|
|
|
} else {
|
|
|
|
await addScript(olmPaths.legacyBundle);
|
|
|
|
await window.Olm.init();
|
|
|
|
}
|
|
|
|
return window.Olm;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-09-10 18:41:23 +02:00
|
|
|
// make path relative to basePath,
|
|
|
|
// assuming it and basePath are relative to document
|
|
|
|
function relPath(path, basePath) {
|
|
|
|
const idx = basePath.lastIndexOf("/");
|
|
|
|
const dir = idx === -1 ? "" : basePath.slice(0, idx);
|
|
|
|
const dirCount = dir.length ? dir.split("/").length : 0;
|
|
|
|
return "../".repeat(dirCount) + path;
|
|
|
|
}
|
|
|
|
|
2020-09-11 10:43:17 +02:00
|
|
|
async function loadOlmWorker(paths) {
|
2020-09-10 18:41:23 +02:00
|
|
|
const workerPool = new WorkerPool(paths.worker, 4);
|
|
|
|
await workerPool.init();
|
|
|
|
const path = relPath(paths.olm.legacyBundle, paths.worker);
|
|
|
|
await workerPool.sendAll({type: "load_olm", path});
|
2020-09-11 10:43:17 +02:00
|
|
|
const olmWorker = new OlmWorker(workerPool);
|
|
|
|
return olmWorker;
|
2020-09-10 18:41:23 +02:00
|
|
|
}
|
|
|
|
|
2020-08-07 16:50:18 +02:00
|
|
|
// Don't use a default export here, as we use multiple entries during legacy build,
|
|
|
|
// which does not support default exports,
|
|
|
|
// see https://github.com/rollup/plugins/tree/master/packages/multi-entry
|
2020-09-16 18:28:48 +02:00
|
|
|
export async function main(container, paths, legacyExtras) {
|
2019-06-26 22:31:36 +02:00
|
|
|
try {
|
2020-09-22 09:30:13 +02:00
|
|
|
// TODO: add .legacy to .hydrogen (container) in (legacy)platform.createAndMountRootView; and use .hydrogen:not(.legacy) if needed for modern stuff
|
2020-09-11 11:28:59 +02:00
|
|
|
const isIE11 = !!window.MSInputMethodContext && !!document.documentMode;
|
|
|
|
if (isIE11) {
|
|
|
|
document.body.className += " ie11";
|
|
|
|
} else {
|
|
|
|
document.body.className += " not-ie11";
|
|
|
|
}
|
2019-12-23 14:29:19 +01:00
|
|
|
// to replay:
|
|
|
|
// const fetchLog = await (await fetch("/fetchlogs/constrainterror.json")).json();
|
|
|
|
// const replay = new ReplayRequester(fetchLog, {delay: false});
|
|
|
|
// const request = replay.request;
|
|
|
|
|
|
|
|
// to record:
|
2020-08-05 17:36:44 +02:00
|
|
|
// const recorder = new RecordRequester(createFetchRequest(clock.createTimeout));
|
2019-12-23 14:29:19 +01:00
|
|
|
// const request = recorder.request;
|
|
|
|
// window.getBrawlFetchLog = () => recorder.log();
|
2020-04-20 21:56:10 +02:00
|
|
|
const clock = new Clock();
|
2020-08-07 16:50:18 +02:00
|
|
|
let request;
|
|
|
|
if (typeof fetch === "function") {
|
|
|
|
request = createFetchRequest(clock.createTimeout);
|
|
|
|
} else {
|
|
|
|
request = xhrRequest;
|
|
|
|
}
|
2020-09-22 09:30:13 +02:00
|
|
|
const sessionInfoStorage = new SessionInfoStorage("hydrogen_sessions_v1");
|
2020-04-20 22:49:14 +02:00
|
|
|
const storageFactory = new StorageFactory();
|
2020-04-18 19:16:16 +02:00
|
|
|
|
2020-09-14 14:07:20 +02:00
|
|
|
const olmPromise = loadOlm(paths.olm);
|
2020-09-10 18:41:23 +02:00
|
|
|
// if wasm is not supported, we'll want
|
|
|
|
// to run some olm operations in a worker (mainly for IE11)
|
|
|
|
let workerPromise;
|
2020-09-11 10:53:15 +02:00
|
|
|
if (!window.WebAssembly) {
|
2020-09-11 10:43:17 +02:00
|
|
|
workerPromise = loadOlmWorker(paths);
|
2020-09-11 10:53:15 +02:00
|
|
|
}
|
2020-09-10 18:41:23 +02:00
|
|
|
|
2020-10-06 18:06:11 +02:00
|
|
|
const navigation = new Navigation(function allowsChild(parent, child) {
|
|
|
|
const {type} = child;
|
|
|
|
switch (parent?.type) {
|
|
|
|
case undefined:
|
|
|
|
// allowed root segments
|
|
|
|
return type === "login" || type === "session";
|
|
|
|
case "session":
|
|
|
|
return type === "room" || type === "settings";
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
const urlRouter = new URLRouter(new HashObservable(), navigation);
|
|
|
|
urlRouter.start();
|
|
|
|
|
2019-07-31 00:07:04 +02:00
|
|
|
const vm = new BrawlViewModel({
|
2020-04-20 21:56:10 +02:00
|
|
|
createSessionContainer: () => {
|
|
|
|
return new SessionContainer({
|
|
|
|
random: Math.random,
|
|
|
|
onlineStatus: new OnlineStatus(),
|
2020-04-20 22:49:14 +02:00
|
|
|
storageFactory,
|
2020-04-20 21:56:10 +02:00
|
|
|
sessionInfoStorage,
|
|
|
|
request,
|
|
|
|
clock,
|
2020-09-17 10:19:09 +02:00
|
|
|
cryptoDriver: new CryptoDriver(legacyExtras?.crypto),
|
2020-09-14 14:07:20 +02:00
|
|
|
olmPromise,
|
2020-09-10 18:41:23 +02:00
|
|
|
workerPromise,
|
2020-04-20 21:56:10 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
sessionInfoStorage,
|
2020-04-20 22:49:14 +02:00
|
|
|
storageFactory,
|
2020-04-20 21:56:10 +02:00
|
|
|
clock,
|
2020-10-06 18:06:11 +02:00
|
|
|
urlRouter,
|
|
|
|
navigation
|
2019-07-31 00:07:04 +02:00
|
|
|
});
|
2020-04-22 20:53:38 +02:00
|
|
|
window.__brawlViewModel = vm;
|
2019-07-31 00:07:04 +02:00
|
|
|
await vm.load();
|
2020-09-18 12:05:35 +02:00
|
|
|
// TODO: replace with platform.createAndMountRootView(vm, container);
|
2019-07-31 00:07:04 +02:00
|
|
|
const view = new BrawlView(vm);
|
|
|
|
container.appendChild(view.mount());
|
2019-06-26 22:31:36 +02:00
|
|
|
} catch(err) {
|
2019-06-02 14:59:30 +02:00
|
|
|
console.error(`${err.message}:\n${err.stack}`);
|
2019-06-26 22:31:36 +02:00
|
|
|
}
|
2019-02-04 23:31:08 +01:00
|
|
|
}
|