2015-06-23 17:41:25 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2015-10-28 18:39:50 +01:00
|
|
|
var RunModernizrTests = require("./modernizr"); // this side-effects a global
|
2015-06-09 18:40:42 +02:00
|
|
|
var React = require("react");
|
2015-09-22 19:49:04 +02:00
|
|
|
var sdk = require("matrix-react-sdk");
|
2015-09-25 12:43:28 +02:00
|
|
|
sdk.loadSkin(require('../skins/vector/skindex'));
|
2015-09-30 17:52:45 +02:00
|
|
|
sdk.loadModule(require('../modules/VectorConferenceHandler'));
|
2015-06-09 18:40:42 +02:00
|
|
|
|
2015-10-12 11:11:02 +02:00
|
|
|
var qs = require("querystring");
|
|
|
|
|
2015-08-06 15:58:52 +02:00
|
|
|
var lastLocationHashSet = null;
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
var featureComplete = true;
|
|
|
|
for (var i = 0; i < featureList.length; i++) {
|
|
|
|
if (window.Modernizr[featureList[i]] === undefined) {
|
|
|
|
console.error(
|
|
|
|
"Looked for feature '%s' but Modernizr has no results for this. " +
|
|
|
|
"Has it been configured correctly?", featureList[i]
|
|
|
|
);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
var validBrowser = checkBrowserFeatures([
|
2015-10-29 16:56:03 +01:00
|
|
|
"displaytable", "flexbox", "es5object", "es5function", "localstorage",
|
|
|
|
"objectfit"
|
2015-10-28 18:39:50 +01:00
|
|
|
]);
|
2015-10-08 23:42:09 +02:00
|
|
|
|
2015-10-12 11:11:02 +02:00
|
|
|
// We want to support some name / value pairs in the fragment
|
2015-10-12 18:41:56 +02:00
|
|
|
// so we're re-using query string like format
|
2015-10-12 11:11:02 +02:00
|
|
|
function parseQsFromFragment(location) {
|
2015-10-08 23:42:09 +02:00
|
|
|
var hashparts = location.hash.split('?');
|
2015-10-12 11:11:02 +02:00
|
|
|
if (hashparts.length > 1) {
|
|
|
|
return qs.parse(hashparts[1]);
|
2015-10-08 23:42:09 +02:00
|
|
|
}
|
2015-10-12 11:11:02 +02:00
|
|
|
return {};
|
2015-10-08 23:42:09 +02:00
|
|
|
}
|
|
|
|
|
2015-07-15 21:33:12 +02:00
|
|
|
// Here, we do some crude URL analysis to allow
|
|
|
|
// deep-linking. We only support registration
|
|
|
|
// deep-links in this example.
|
2015-07-15 20:25:36 +02:00
|
|
|
function routeUrl(location) {
|
|
|
|
if (location.hash.indexOf('#/register') == 0) {
|
2015-10-12 11:11:02 +02:00
|
|
|
window.matrixChat.showScreen('register', parseQsFromFragment(location));
|
2015-10-08 23:42:09 +02:00
|
|
|
} else if (location.hash.indexOf('#/login/cas') == 0) {
|
2015-10-12 11:11:02 +02:00
|
|
|
window.matrixChat.showScreen('cas_login', parseQsFromFragment(location));
|
2015-07-20 21:20:17 +02:00
|
|
|
} else {
|
|
|
|
window.matrixChat.showScreen(location.hash.substring(2));
|
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
|
|
|
var loaded = false;
|
2015-10-05 16:32:34 +02:00
|
|
|
var lastLoadedScreen = null;
|
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.
|
2015-07-15 20:25:36 +02:00
|
|
|
var onNewScreen = function(screen) {
|
2015-10-05 16:32:34 +02:00
|
|
|
if (!loaded) {
|
|
|
|
lastLoadedScreen = screen;
|
|
|
|
} else {
|
|
|
|
var hash = '#/' + screen;
|
|
|
|
lastLocationHashSet = hash;
|
|
|
|
window.location.hash = hash;
|
|
|
|
}
|
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.
|
|
|
|
var makeRegistrationUrl = function() {
|
|
|
|
return window.location.protocol + '//' +
|
|
|
|
window.location.host +
|
|
|
|
window.location.pathname +
|
|
|
|
'#/register';
|
|
|
|
}
|
|
|
|
|
2015-07-31 16:50:47 +02:00
|
|
|
window.addEventListener('hashchange', onHashChange);
|
|
|
|
window.onload = function() {
|
2015-10-28 18:39:50 +01:00
|
|
|
if (!validBrowser) {
|
|
|
|
return;
|
|
|
|
}
|
2015-07-31 16:50:47 +02:00
|
|
|
routeUrl(window.location);
|
|
|
|
loaded = true;
|
2015-10-05 16:32:34 +02:00
|
|
|
if (lastLoadedScreen) {
|
|
|
|
onNewScreen(lastLoadedScreen);
|
|
|
|
lastLoadedScreen = null;
|
|
|
|
}
|
2015-07-31 16:50:47 +02:00
|
|
|
}
|
|
|
|
|
2015-10-28 18:39:50 +01:00
|
|
|
function loadApp() {
|
|
|
|
if (validBrowser) {
|
|
|
|
var MatrixChat = sdk.getComponent('pages.MatrixChat');
|
|
|
|
window.matrixChat = React.render(
|
|
|
|
<MatrixChat onNewScreen={onNewScreen} registrationUrl={makeRegistrationUrl()} />,
|
|
|
|
document.getElementById('matrixchat')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
console.error("Browser is missing required features.");
|
|
|
|
// take to a different landing page to AWOOOOOGA at the user
|
|
|
|
var CompatibilityPage = require("../skins/vector/views/pages/CompatibilityPage");
|
|
|
|
window.matrixChat = React.render(
|
|
|
|
<CompatibilityPage onAccept={function() {
|
|
|
|
validBrowser = true;
|
|
|
|
console.log("User accepts the compatibility risks.");
|
|
|
|
loadApp();
|
|
|
|
window.onload(); // still do the same code paths for compatible clients
|
|
|
|
}} />,
|
|
|
|
document.getElementById('matrixchat')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
loadApp();
|