egirlskey/src/web/app/boot.js

111 lines
3.5 KiB
JavaScript
Raw Normal View History

2017-01-01 02:23:09 +00:00
/**
2017-05-18 05:12:27 +00:00
* MISSKEY BOOT LOADER
* (ENTRY POINT)
2017-01-01 02:23:09 +00:00
*/
2016-12-31 11:26:22 +00:00
2017-05-18 05:12:27 +00:00
/**
* ドメインに基づいて適切なスクリプトを読み込みます
* ユーザーの言語およびモバイル端末か否かも考慮します
2017-05-24 12:06:19 +00:00
* webpackは介さないためrequireやimportは使えません
2017-05-18 05:12:27 +00:00
*/
'use strict';
2017-06-16 23:56:39 +00:00
// Chromeで確認したことなのですが、constやletを用いたとしても
// グローバルなスコープで定数/変数を定義するとwindowのプロパティ
// としてそれがアクセスできるようになる訳ではありませんが、普通に
// コンソールから定数/変数名を入力するとアクセスできてしまいます。
2017-06-17 00:53:02 +00:00
// ブロック内に入れてスコープを非グローバル化するとそれが防げます
2017-06-16 23:56:39 +00:00
// (Chrome以外のブラウザでは検証していません)
2017-06-06 17:02:56 +00:00
{
// Get the current url information
const url = new URL(location.href);
2017-03-17 15:02:41 +00:00
2017-06-06 17:02:56 +00:00
// Extarct the (sub) domain part of the current url
//
// e.g.
// misskey.alice => misskey
// misskey.strawberry.pasta => misskey
2017-06-16 23:37:41 +00:00
// dev.misskey.arisu.tachibana => dev
2017-11-20 18:40:09 +00:00
let app = url.host == 'localhost'
? 'misskey'
: url.host.split('.')[0];
2017-06-06 17:02:56 +00:00
// Detect the user language
// Note: The default language is English
let lang = navigator.language.split('-')[0];
if (!/^(en|ja)$/.test(lang)) lang = 'en';
// Detect the user agent
const ua = navigator.userAgent.toLowerCase();
const isMobile = /mobile|iphone|ipad|android/.test(ua);
2016-12-31 11:26:22 +00:00
2017-06-06 17:02:56 +00:00
// Get the <head> element
const head = document.getElementsByTagName('head')[0];
// If mobile, insert the viewport meta tag
if (isMobile) {
const meta = document.createElement('meta');
meta.setAttribute('name', 'viewport');
2017-08-10 17:00:51 +00:00
meta.setAttribute('content',
'width=device-width,' +
'initial-scale=1,' +
'minimum-scale=1,' +
'maximum-scale=1,' +
'user-scalable=no');
2017-06-06 17:02:56 +00:00
head.appendChild(meta);
}
// Switch desktop or mobile version
if (app == 'misskey') {
app = isMobile ? 'mobile' : 'desktop';
}
// Load an app script
// Note: 'async' make it possible to load the script asyncly.
// 'defer' make it possible to run the script when the dom loaded.
const script = document.createElement('script');
script.setAttribute('src', `/assets/${app}.${VERSION}.${lang}.js`);
script.setAttribute('async', 'true');
script.setAttribute('defer', 'true');
head.appendChild(script);
2017-11-28 06:05:55 +00:00
// 1秒経ってもスクリプトがロードされない場合はバージョンが古くて
// 404になっているせいかもしれないので、バージョンを確認して古ければ更新する
//
// 読み込まれたスクリプトからこのタイマーを解除できるように、
// グローバルにタイマーIDを代入しておく
window.mkBootTimer = window.setTimeout(async () => {
// Fetch meta
const res = await fetch(API + '/meta', {
method: 'POST',
cache: 'no-cache'
});
// Parse
const meta = await res.json();
// Compare versions
if (meta.version != VERSION) {
alert(
'Misskeyの新しいバージョンがあります。ページを再度読み込みします。' +
'\n\n' +
'New version of Misskey available. The page will be reloaded.');
2017-11-28 06:41:41 +00:00
// Clear cache (serive worker)
try {
navigator.serviceWorker.controller.postMessage('clear');
2017-12-08 05:59:43 +00:00
navigator.serviceWorker.getRegistrations().then(registrations => {
registrations.forEach(registration => registration.unregister());
});
2017-11-28 06:41:41 +00:00
} catch (e) {
console.error(e);
}
2017-11-28 06:05:55 +00:00
// Force reload
location.reload(true);
}
}, 1000);
2017-06-06 17:02:56 +00:00
}