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