misskey/src/client/app/boot.js

158 lines
4.0 KiB
JavaScript
Raw Normal View History

2016-12-31 18:23:09 -08:00
/**
2017-05-17 22:12:27 -07:00
* MISSKEY BOOT LOADER
* (ENTRY POINT)
2016-12-31 18:23:09 -08:00
*/
2016-12-31 03:26:22 -08:00
2017-05-17 22:12:27 -07:00
/**
* ドメインに基づいて適切なスクリプトを読み込みます
* ユーザーの言語およびモバイル端末か否かも考慮します
2017-05-24 05:06:19 -07:00
* webpackは介さないためrequireやimportは使えません
2017-05-17 22:12:27 -07:00
*/
'use strict';
2018-04-21 00:21:12 -07:00
(function() {
2018-04-21 00:18:58 -07:00
// キャッシュ削除要求があれば従う
if (localStorage.getItem('shouldFlush') == 'true') {
refresh();
return;
}
2018-04-15 23:59:43 -07:00
2018-05-23 13:28:46 -07:00
//#region Load settings
let settings = null;
const vuex = localStorage.getItem('vuex');
if (vuex) {
settings = JSON.parse(vuex);
}
//#endregion
2017-06-06 10:02:56 -07:00
// Get the current url information
const url = new URL(location.href);
2017-03-17 08:02:41 -07:00
2018-03-26 22:13:12 -07:00
//#region Detect app name
let app = null;
2018-08-21 09:48:08 -07:00
if (`${url.pathname}/`.startsWith('/docs/')) app = 'docs';
if (`${url.pathname}/`.startsWith('/dev/')) app = 'dev';
if (`${url.pathname}/`.startsWith('/auth/')) app = 'auth';
2018-03-26 22:13:12 -07:00
//#endregion
2017-06-06 10:02:56 -07:00
2018-05-20 10:13:39 -07:00
//#region Detect the user language
2018-08-22 09:37:05 -07:00
let lang = null;
2018-08-21 09:48:08 -07:00
2018-08-22 09:37:05 -07:00
if (LANGS.includes(navigator.language)) {
lang = navigator.language;
} else {
2018-08-22 09:55:39 -07:00
lang = LANGS.find(x => x.split('-')[0] == navigator.language);
2018-05-20 10:13:39 -07:00
2018-08-22 09:37:05 -07:00
if (lang == null) {
// Fallback
lang = 'en-US';
}
}
2018-05-20 10:13:39 -07:00
2018-08-25 03:39:06 -07:00
if (settings && settings.device.lang &&
LANGS.includes(settings.device.lang)) {
2018-08-25 01:06:40 -07:00
lang = settings.device.lang;
2018-08-25 03:39:06 -07:00
}
2018-05-20 10:13:39 -07:00
//#endregion
2017-06-06 10:02:56 -07:00
// Detect the user agent
const ua = navigator.userAgent.toLowerCase();
const isMobile = /mobile|iphone|ipad|android/.test(ua);
2016-12-31 03:26:22 -08:00
2017-06-06 10:02:56 -07: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 10:00:51 -07:00
meta.setAttribute('content',
'width=device-width,' +
'initial-scale=1,' +
'minimum-scale=1,' +
'maximum-scale=1,' +
'user-scalable=no');
2017-06-06 10:02:56 -07:00
head.appendChild(meta);
}
// Switch desktop or mobile version
2018-03-26 22:13:12 -07:00
if (app == null) {
2017-06-06 10:02:56 -07:00
app = isMobile ? 'mobile' : 'desktop';
}
2018-04-19 11:41:24 -07:00
// Dark/Light
2018-05-23 13:28:46 -07:00
if (settings) {
if (settings.device.darkmode) {
document.documentElement.setAttribute('data-darkmode', 'true');
}
2018-04-19 11:41:24 -07:00
}
2018-03-14 20:56:50 -07:00
// Script version
2018-03-02 14:32:18 -08:00
const ver = localStorage.getItem('v') || VERSION;
2018-04-21 00:40:16 -07:00
// Get salt query
const salt = localStorage.getItem('salt')
2018-09-01 07:12:51 -07:00
? `?salt=${localStorage.getItem('salt')}`
2018-04-21 00:40:16 -07:00
: '';
2017-06-06 10:02:56 -07:00
// 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');
2018-05-20 10:13:39 -07:00
script.setAttribute('src', `/assets/${app}.${ver}.${lang}.js${salt}`);
2017-06-06 10:02:56 -07:00
script.setAttribute('async', 'true');
script.setAttribute('defer', 'true');
head.appendChild(script);
2017-11-27 22:05:55 -08:00
2018-04-13 13:23:13 -07:00
// 3秒経ってもスクリプトがロードされない場合はバージョンが古くて
2017-11-27 22:05:55 -08:00
// 404になっているせいかもしれないので、バージョンを確認して古ければ更新する
//
// 読み込まれたスクリプトからこのタイマーを解除できるように、
// グローバルにタイマーIDを代入しておく
window.mkBootTimer = window.setTimeout(async () => {
// Fetch meta
2018-08-21 09:50:13 -07:00
const res = await fetch('/api/meta', {
2017-11-27 22:05:55 -08:00
method: 'POST',
cache: 'no-cache'
});
// Parse
const meta = await res.json();
// Compare versions
if (meta.clientVersion != ver) {
localStorage.setItem('v', meta.clientVersion);
2018-04-12 14:06:18 -07:00
2017-11-27 22:05:55 -08:00
alert(
'Misskeyの新しいバージョンがあります。ページを再度読み込みします。' +
'\n\n' +
'New version of Misskey available. The page will be reloaded.');
2018-04-15 23:59:43 -07:00
refresh();
}
}, 3000);
function refresh() {
localStorage.setItem('shouldFlush', 'false');
2017-12-07 21:59:43 -08:00
2018-04-21 00:40:16 -07:00
// Random
localStorage.setItem('salt', Math.random().toString());
2018-04-15 23:59:43 -07:00
// Clear cache (serive worker)
try {
navigator.serviceWorker.controller.postMessage('clear');
2017-11-27 22:41:41 -08:00
2018-04-15 23:59:43 -07:00
navigator.serviceWorker.getRegistrations().then(registrations => {
registrations.forEach(registration => registration.unregister());
});
} catch (e) {
console.error(e);
2017-11-27 22:05:55 -08:00
}
2018-04-15 23:59:43 -07:00
// Force reload
location.reload(true);
2018-04-15 23:59:43 -07:00
}
2018-04-21 00:21:12 -07:00
})();