2015-06-23 11:41:25 -04:00
|
|
|
/*
|
2016-01-06 23:17:56 -05:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-06-23 11:41:25 -04: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2016-10-13 05:57:10 -04:00
|
|
|
// for ES6 stuff like startsWith() that Safari doesn't handle
|
|
|
|
// and babel doesn't do by default
|
2016-10-14 13:03:22 -04:00
|
|
|
// Note we use this, as well as the babel transform-runtime plugin
|
2016-10-13 05:57:10 -04:00
|
|
|
// since transform-runtime does not cover instance methods
|
|
|
|
// such as "foobar".includes("foo") which bits of our library
|
2016-10-14 13:03:22 -04:00
|
|
|
// code use, but the babel transform-runtime plugin allows the
|
|
|
|
// regenerator runtime to be injected early enough in the process
|
|
|
|
// (it can't be here as it's too late: the alternative is to put
|
|
|
|
// the babel-polyfill as the first 'entry' in the webpack config).
|
2016-10-13 05:57:10 -04:00
|
|
|
// https://babeljs.io/docs/plugins/transform-runtime/
|
|
|
|
require('babel-polyfill');
|
|
|
|
|
2015-12-01 13:05:43 -05:00
|
|
|
// CSS requires: just putting them here for now as CSS is going to be
|
2016-10-26 08:32:26 -04:00
|
|
|
// refactored "soon" anyway
|
|
|
|
require('../build/components.css');
|
2015-12-01 13:05:43 -05:00
|
|
|
require('gemini-scrollbar/gemini-scrollbar.css');
|
|
|
|
require('gfm.css/gfm.css');
|
|
|
|
require('highlight.js/styles/github.css');
|
2016-05-27 00:47:01 -04:00
|
|
|
require('draft-js/dist/Draft.css');
|
2015-12-01 13:05:43 -05:00
|
|
|
|
2016-04-17 16:06:51 -04:00
|
|
|
|
|
|
|
// add React and ReactPerf to the global namespace, to make them easier to
|
|
|
|
// access via the console
|
|
|
|
global.React = require("react");
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
|
|
global.ReactPerf = require("react-addons-perf");
|
|
|
|
}
|
|
|
|
|
2015-10-28 13:39:50 -04:00
|
|
|
var RunModernizrTests = require("./modernizr"); // this side-effects a global
|
2015-11-09 18:13:46 -05:00
|
|
|
var ReactDOM = require("react-dom");
|
2015-09-22 13:49:04 -04:00
|
|
|
var sdk = require("matrix-react-sdk");
|
2015-11-30 12:31:32 -05:00
|
|
|
sdk.loadSkin(require('../component-index'));
|
2015-11-30 13:10:09 -05:00
|
|
|
var VectorConferenceHandler = require('../VectorConferenceHandler');
|
2016-02-03 11:16:14 -05:00
|
|
|
var UpdateChecker = require("./updater");
|
2016-05-24 20:08:09 -04:00
|
|
|
var q = require('q');
|
|
|
|
var request = require('browser-request');
|
2016-08-12 06:01:01 -04:00
|
|
|
|
|
|
|
import UAParser from 'ua-parser-js';
|
2016-08-10 20:55:51 -04:00
|
|
|
import url from 'url';
|
2015-06-09 12:40:42 -04:00
|
|
|
|
2016-08-09 19:15:04 -04:00
|
|
|
import {parseQs, parseQsFromFragment} from './url_utils';
|
2015-10-12 05:11:02 -04:00
|
|
|
|
2015-08-06 09:58:52 -04:00
|
|
|
var lastLocationHashSet = null;
|
|
|
|
|
2015-11-30 13:10:09 -05:00
|
|
|
var CallHandler = require("matrix-react-sdk/lib/CallHandler");
|
|
|
|
CallHandler.setConferenceHandler(VectorConferenceHandler);
|
|
|
|
|
2015-10-28 13:39:50 -04: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 11:56:03 -04:00
|
|
|
"displaytable", "flexbox", "es5object", "es5function", "localstorage",
|
|
|
|
"objectfit"
|
2015-10-28 13:39:50 -04:00
|
|
|
]);
|
2015-10-08 17:42:09 -04:00
|
|
|
|
2015-07-15 15:33:12 -04:00
|
|
|
// Here, we do some crude URL analysis to allow
|
2016-02-23 05:57:50 -05:00
|
|
|
// deep-linking.
|
2015-07-15 14:25:36 -04:00
|
|
|
function routeUrl(location) {
|
2016-06-08 13:46:21 -04:00
|
|
|
if (!window.matrixChat) return;
|
|
|
|
|
2016-08-09 19:15:04 -04:00
|
|
|
console.log("Routing URL "+location);
|
2016-03-23 11:58:00 -04:00
|
|
|
var fragparts = parseQsFromFragment(location);
|
|
|
|
window.matrixChat.showScreen(fragparts.location.substring(1),
|
|
|
|
fragparts.params);
|
2015-07-15 14:25:36 -04:00
|
|
|
}
|
|
|
|
|
2015-07-20 15:20:17 -04:00
|
|
|
function onHashChange(ev) {
|
2015-08-06 09:58:52 -04:00
|
|
|
if (decodeURIComponent(window.location.hash) == lastLocationHashSet) {
|
|
|
|
// we just set this: no need to route it!
|
|
|
|
return;
|
|
|
|
}
|
2015-07-20 15:20:17 -04:00
|
|
|
routeUrl(window.location);
|
|
|
|
}
|
|
|
|
|
2016-02-03 11:50:05 -05:00
|
|
|
function onVersion(current, latest) {
|
|
|
|
window.matrixChat.onVersion(current, latest);
|
2016-02-03 11:16:14 -05:00
|
|
|
}
|
|
|
|
|
2015-07-15 15:33:12 -04:00
|
|
|
var loaded = false;
|
2015-10-05 10:32:34 -04:00
|
|
|
var lastLoadedScreen = null;
|
2015-07-15 15:33:12 -04:00
|
|
|
|
|
|
|
// This will be called whenever the SDK changes screens,
|
|
|
|
// so a web page can update the URL bar appropriately.
|
2015-11-10 20:31:37 -05:00
|
|
|
var onNewScreen = function(screen) {
|
2016-04-13 17:18:26 -04:00
|
|
|
console.log("newscreen "+screen);
|
2015-10-05 10:32:34 -04:00
|
|
|
if (!loaded) {
|
|
|
|
lastLoadedScreen = screen;
|
|
|
|
} else {
|
2015-11-10 20:31:37 -05:00
|
|
|
var hash = '#/' + screen;
|
|
|
|
lastLocationHashSet = hash;
|
|
|
|
window.location.hash = hash;
|
2016-01-11 20:23:39 -05:00
|
|
|
if (ga) ga('send', 'pageview', window.location.pathname + window.location.search + window.location.hash);
|
2015-10-05 10:32:34 -04:00
|
|
|
}
|
2015-07-15 14:25:36 -04:00
|
|
|
}
|
|
|
|
|
2015-07-15 15:33:12 -04: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';
|
|
|
|
}
|
|
|
|
|
2016-08-12 06:01:01 -04:00
|
|
|
|
2016-08-12 06:40:25 -04:00
|
|
|
function getDefaultDeviceDisplayName() {
|
2016-08-12 06:01:01 -04:00
|
|
|
// strip query-string and fragment from uri
|
|
|
|
let u = url.parse(window.location.href);
|
|
|
|
u.search = "";
|
|
|
|
u.hash = "";
|
|
|
|
let app_name = u.format();
|
|
|
|
|
|
|
|
let ua = new UAParser();
|
|
|
|
return app_name + " via " + ua.getBrowser().name +
|
|
|
|
" on " + ua.getOS().name;
|
|
|
|
}
|
|
|
|
|
2015-07-31 10:50:47 -04:00
|
|
|
window.addEventListener('hashchange', onHashChange);
|
|
|
|
window.onload = function() {
|
2016-04-13 16:01:24 -04:00
|
|
|
console.log("window.onload");
|
2015-10-28 13:39:50 -04:00
|
|
|
if (!validBrowser) {
|
|
|
|
return;
|
|
|
|
}
|
2016-02-03 11:50:05 -05:00
|
|
|
UpdateChecker.setVersionListener(onVersion);
|
2016-02-03 11:16:14 -05:00
|
|
|
UpdateChecker.run();
|
2015-07-31 10:50:47 -04:00
|
|
|
routeUrl(window.location);
|
|
|
|
loaded = true;
|
2015-10-05 10:32:34 -04:00
|
|
|
if (lastLoadedScreen) {
|
|
|
|
onNewScreen(lastLoadedScreen);
|
|
|
|
lastLoadedScreen = null;
|
|
|
|
}
|
2015-07-31 10:50:47 -04:00
|
|
|
}
|
|
|
|
|
2016-05-24 20:08:09 -04:00
|
|
|
function getConfig() {
|
|
|
|
let deferred = q.defer();
|
2016-06-07 17:01:56 -04:00
|
|
|
|
2016-05-24 20:08:09 -04:00
|
|
|
request(
|
|
|
|
{ method: "GET", url: "config.json", json: true },
|
|
|
|
(err, response, body) => {
|
|
|
|
if (err || response.status < 200 || response.status >= 300) {
|
2016-06-08 13:46:21 -04:00
|
|
|
deferred.reject({err: err, response: response});
|
2016-06-09 04:56:57 -04:00
|
|
|
return;
|
2016-05-24 20:08:09 -04:00
|
|
|
}
|
2016-06-07 17:01:56 -04:00
|
|
|
|
2016-05-24 20:08:09 -04:00
|
|
|
deferred.resolve(body);
|
|
|
|
}
|
|
|
|
);
|
2016-06-07 17:01:56 -04:00
|
|
|
|
2016-05-24 20:08:09 -04:00
|
|
|
return deferred.promise;
|
|
|
|
}
|
|
|
|
|
2016-08-10 20:55:51 -04:00
|
|
|
function onLoadCompleted() {
|
|
|
|
// 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.
|
|
|
|
if (window.location.search) {
|
|
|
|
var parsedUrl = url.parse(window.location.href);
|
|
|
|
parsedUrl.search = "";
|
|
|
|
var formatted = url.format(parsedUrl);
|
|
|
|
console.log("Redirecting to " + formatted + " to drop loginToken " +
|
|
|
|
"from queryparams");
|
|
|
|
window.location.href = formatted;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-24 20:08:09 -04:00
|
|
|
async function loadApp() {
|
2016-08-11 07:44:49 -04:00
|
|
|
const fragparts = parseQsFromFragment(window.location);
|
|
|
|
const params = parseQs(window.location);
|
|
|
|
|
|
|
|
// don't try to redirect to the native apps if we're
|
2016-08-11 07:49:57 -04:00
|
|
|
// verifying a 3pid
|
2016-08-11 07:44:49 -04:00
|
|
|
const preventRedirect = Boolean(fragparts.params.client_secret);
|
|
|
|
|
|
|
|
if (!preventRedirect) {
|
|
|
|
if (/iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream) {
|
2016-09-19 08:29:49 -04:00
|
|
|
if (confirm("Riot is not supported on mobile web. Install the app?")) {
|
2016-08-11 07:44:49 -04:00
|
|
|
window.location = "https://itunes.apple.com/us/app/vector.im/id1083446067";
|
|
|
|
return;
|
|
|
|
}
|
2016-05-10 19:48:02 -04:00
|
|
|
}
|
2016-08-11 07:44:49 -04:00
|
|
|
else if (/Android/.test(navigator.userAgent)) {
|
2016-09-19 08:29:49 -04:00
|
|
|
if (confirm("Riot is not supported on mobile web. Install the app?")) {
|
2016-08-11 07:44:49 -04:00
|
|
|
window.location = "https://play.google.com/store/apps/details?id=im.vector.alpha";
|
|
|
|
return;
|
|
|
|
}
|
2016-05-13 12:14:01 -04:00
|
|
|
}
|
|
|
|
}
|
2016-05-10 19:48:02 -04:00
|
|
|
|
2016-06-08 13:46:21 -04:00
|
|
|
let configJson;
|
2016-06-09 04:59:37 -04:00
|
|
|
let configError;
|
2016-06-08 13:46:21 -04:00
|
|
|
try {
|
|
|
|
configJson = await getConfig();
|
|
|
|
} catch (e) {
|
|
|
|
// On 404 errors, carry on without a config,
|
|
|
|
// but on other errors, fail, otherwise it will
|
|
|
|
// lead to subtle errors where the app runs with
|
2016-06-09 05:38:51 -04:00
|
|
|
// the default config if it fails to fetch config.json.
|
2016-06-08 13:46:21 -04:00
|
|
|
if (e.response.status != 404) {
|
|
|
|
configError = e;
|
|
|
|
}
|
|
|
|
}
|
2016-06-07 17:01:56 -04:00
|
|
|
|
2016-04-13 16:01:24 -04:00
|
|
|
console.log("Vector starting at "+window.location);
|
2016-06-08 13:46:21 -04: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'));
|
|
|
|
} else if (validBrowser) {
|
2015-11-30 13:10:09 -05:00
|
|
|
var MatrixChat = sdk.getComponent('structures.MatrixChat');
|
2016-08-10 20:55:51 -04:00
|
|
|
|
2015-11-09 18:13:46 -05:00
|
|
|
window.matrixChat = ReactDOM.render(
|
2015-11-30 13:10:09 -05:00
|
|
|
<MatrixChat
|
|
|
|
onNewScreen={onNewScreen}
|
|
|
|
registrationUrl={makeRegistrationUrl()}
|
|
|
|
ConferenceHandler={VectorConferenceHandler}
|
2015-12-17 10:01:07 -05:00
|
|
|
config={configJson}
|
2016-08-10 20:55:51 -04:00
|
|
|
realQueryParams={params}
|
|
|
|
startingFragmentQueryParams={fragparts.params}
|
|
|
|
enableGuest={true}
|
|
|
|
onLoadCompleted={onLoadCompleted}
|
2016-08-12 06:40:25 -04:00
|
|
|
defaultDeviceDisplayName={getDefaultDeviceDisplayName()}
|
2016-08-10 20:55:51 -04:00
|
|
|
/>,
|
2015-10-28 13:39:50 -04:00
|
|
|
document.getElementById('matrixchat')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
console.error("Browser is missing required features.");
|
|
|
|
// take to a different landing page to AWOOOOOGA at the user
|
2015-12-01 10:45:38 -05:00
|
|
|
var CompatibilityPage = sdk.getComponent("structures.CompatibilityPage");
|
2015-11-09 18:13:46 -05:00
|
|
|
window.matrixChat = ReactDOM.render(
|
2015-10-28 13:39:50 -04:00
|
|
|
<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')
|
|
|
|
);
|
2016-03-15 14:38:24 -04:00
|
|
|
}
|
2015-10-28 13:39:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
loadApp();
|