2017-01-01 03:23:09 +01:00
|
|
|
/**
|
|
|
|
* boot
|
|
|
|
*/
|
2016-12-31 12:26:22 +01:00
|
|
|
|
|
|
|
const riot = require('riot');
|
2017-01-13 17:16:30 +01:00
|
|
|
require('velocity-animate');
|
2017-02-12 23:39:54 +01:00
|
|
|
const api = require('./common/scripts/api');
|
2017-02-18 08:37:22 +01:00
|
|
|
const signout = require('./common/scripts/signout');
|
|
|
|
const generateDefaultUserdata = require('./common/scripts/generate-default-userdata');
|
2017-02-18 08:55:18 +01:00
|
|
|
const mixins = require('./common/mixins');
|
2017-02-18 08:57:16 +01:00
|
|
|
const checkForUpdate = require('./common/scripts/check-for-update');
|
2017-02-02 21:22:12 +01:00
|
|
|
require('./common/tags');
|
2016-12-31 12:26:22 +01:00
|
|
|
|
2017-01-01 03:23:09 +01:00
|
|
|
/**
|
|
|
|
* MISSKEY ENTORY POINT!
|
|
|
|
*/
|
2016-12-31 12:26:22 +01:00
|
|
|
|
|
|
|
document.domain = CONFIG.host;
|
|
|
|
|
|
|
|
// ↓ iOS待ちPolyfill (SEE: http://caniuse.com/#feat=fetch)
|
2017-01-13 17:16:30 +01:00
|
|
|
require('whatwg-fetch');
|
2016-12-31 12:26:22 +01:00
|
|
|
|
|
|
|
// ↓ NodeList、HTMLCollectionで forEach を使えるようにする
|
|
|
|
if (NodeList.prototype.forEach === undefined) {
|
2017-01-01 03:17:17 +01:00
|
|
|
NodeList.prototype.forEach = Array.prototype.forEach;
|
2016-12-31 12:26:22 +01:00
|
|
|
}
|
|
|
|
if (HTMLCollection.prototype.forEach === undefined) {
|
2017-01-01 03:17:17 +01:00
|
|
|
HTMLCollection.prototype.forEach = Array.prototype.forEach;
|
2016-12-31 12:26:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ↓ iOSでプライベートモードだとlocalStorageが使えないので既存のメソッドを上書きする
|
|
|
|
try {
|
2017-01-01 03:17:17 +01:00
|
|
|
localStorage.setItem('kyoppie', 'yuppie');
|
2016-12-31 12:26:22 +01:00
|
|
|
} catch (e) {
|
2017-01-01 03:17:17 +01:00
|
|
|
Storage.prototype.setItem = () => { }; // noop
|
2016-12-31 12:26:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check for Update
|
|
|
|
checkForUpdate();
|
|
|
|
|
|
|
|
// ユーザーをフェッチしてコールバックする
|
|
|
|
module.exports = callback => {
|
|
|
|
// Get cached account data
|
2017-01-01 03:17:17 +01:00
|
|
|
let cachedMe = JSON.parse(localStorage.getItem('me'));
|
2016-12-31 12:26:22 +01:00
|
|
|
|
2017-02-18 02:28:04 +01:00
|
|
|
if (cachedMe && cachedMe.data && cachedMe.data.cache) {
|
2017-01-01 03:17:17 +01:00
|
|
|
fetched(cachedMe);
|
2016-12-31 12:26:22 +01:00
|
|
|
|
|
|
|
// 後から新鮮なデータをフェッチ
|
2017-02-06 08:40:42 +01:00
|
|
|
fetchme(cachedMe.token, freshData => {
|
2017-01-01 03:17:17 +01:00
|
|
|
Object.assign(cachedMe, freshData);
|
|
|
|
cachedMe.trigger('updated');
|
|
|
|
});
|
|
|
|
} else {
|
2016-12-31 12:26:22 +01:00
|
|
|
// キャッシュ無効なのにキャッシュが残ってたら掃除
|
2017-02-18 02:28:04 +01:00
|
|
|
if (cachedMe) {
|
2017-01-01 03:17:17 +01:00
|
|
|
localStorage.removeItem('me');
|
|
|
|
}
|
2017-01-01 03:23:09 +01:00
|
|
|
|
2017-02-06 08:40:42 +01:00
|
|
|
// Get token from cookie
|
|
|
|
const i = (document.cookie.match(/i=(!\w+)/) || [null, null])[1];
|
|
|
|
|
|
|
|
fetchme(i, fetched);
|
2017-01-01 03:17:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function fetched(me) {
|
2017-02-18 02:28:04 +01:00
|
|
|
if (me) {
|
2017-01-01 03:17:17 +01:00
|
|
|
riot.observable(me);
|
2017-01-01 03:23:09 +01:00
|
|
|
|
2017-01-21 13:08:40 +01:00
|
|
|
me.update = data => {
|
|
|
|
if (data) Object.assign(me, data);
|
|
|
|
me.trigger('updated');
|
|
|
|
};
|
|
|
|
|
2017-01-01 03:17:17 +01:00
|
|
|
if (me.data.cache) {
|
|
|
|
localStorage.setItem('me', JSON.stringify(me));
|
2017-01-01 03:23:09 +01:00
|
|
|
|
2017-01-01 03:17:17 +01:00
|
|
|
me.on('updated', () => {
|
2016-12-31 12:26:22 +01:00
|
|
|
// キャッシュ更新
|
2017-01-01 03:17:17 +01:00
|
|
|
localStorage.setItem('me', JSON.stringify(me));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2017-01-01 03:23:09 +01:00
|
|
|
|
2017-01-01 03:17:17 +01:00
|
|
|
mixins(me);
|
2017-01-01 03:23:09 +01:00
|
|
|
|
2017-01-01 03:17:17 +01:00
|
|
|
const init = document.getElementById('init');
|
|
|
|
init.parentNode.removeChild(init);
|
2017-01-01 03:23:09 +01:00
|
|
|
|
2017-01-01 03:17:17 +01:00
|
|
|
const app = document.createElement('div');
|
|
|
|
app.setAttribute('id', 'app');
|
|
|
|
document.body.appendChild(app);
|
2017-01-01 03:23:09 +01:00
|
|
|
|
2017-01-01 03:17:17 +01:00
|
|
|
try {
|
|
|
|
callback(me);
|
|
|
|
} catch (e) {
|
|
|
|
panic(e);
|
|
|
|
}
|
|
|
|
}
|
2016-12-31 12:26:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// ユーザーをフェッチしてコールバックする
|
2017-02-06 08:40:42 +01:00
|
|
|
function fetchme(token, cb) {
|
2017-01-01 03:17:17 +01:00
|
|
|
let me = null;
|
2016-12-31 12:26:22 +01:00
|
|
|
|
|
|
|
// Return when not signed in
|
2017-01-01 03:17:17 +01:00
|
|
|
if (token == null) {
|
|
|
|
return done();
|
|
|
|
}
|
2016-12-31 12:26:22 +01:00
|
|
|
|
|
|
|
// Fetch user
|
2017-02-18 02:28:04 +01:00
|
|
|
fetch(CONFIG.api.url + '/i', {
|
2017-01-01 03:17:17 +01:00
|
|
|
method: 'POST',
|
2017-02-11 18:19:19 +01:00
|
|
|
body: JSON.stringify({
|
|
|
|
i: token
|
|
|
|
})
|
2017-01-01 03:17:17 +01:00
|
|
|
}).then(res => {
|
2016-12-31 12:26:22 +01:00
|
|
|
// When failed to authenticate user
|
2017-01-01 03:17:17 +01:00
|
|
|
if (res.status !== 200) {
|
2017-01-01 03:19:42 +01:00
|
|
|
return signout();
|
2017-01-01 03:17:17 +01:00
|
|
|
}
|
2017-01-01 03:23:09 +01:00
|
|
|
|
2017-01-01 03:17:17 +01:00
|
|
|
res.json().then(i => {
|
|
|
|
me = i;
|
|
|
|
me.token = token;
|
2016-12-31 12:26:22 +01:00
|
|
|
|
|
|
|
// initialize it if user data is empty
|
2017-02-18 02:28:04 +01:00
|
|
|
me.data ? done() : init();
|
2017-01-01 03:17:17 +01:00
|
|
|
});
|
2017-02-06 08:40:42 +01:00
|
|
|
}, () => {
|
2017-02-18 02:28:04 +01:00
|
|
|
riot.mount(document.body.appendChild(document.createElement('mk-core-error')), {
|
2017-02-06 08:40:42 +01:00
|
|
|
retry: () => {
|
|
|
|
fetchme(token, cb);
|
|
|
|
}
|
|
|
|
});
|
2017-01-01 03:17:17 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
function done() {
|
2017-02-18 02:28:04 +01:00
|
|
|
if (cb) cb(me);
|
2017-01-01 03:17:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function init() {
|
2017-01-01 03:19:32 +01:00
|
|
|
const data = generateDefaultUserdata();
|
2017-01-01 03:17:17 +01:00
|
|
|
api(token, 'i/appdata/set', {
|
|
|
|
data: JSON.stringify(data)
|
|
|
|
}).then(() => {
|
|
|
|
me.data = data;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
2016-12-31 12:26:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function panic(e) {
|
2017-01-01 03:17:17 +01:00
|
|
|
console.error(e);
|
|
|
|
document.body.innerHTML = '<div id="error"><p>致命的な問題が発生しました。</p></div>';
|
2017-02-18 02:28:04 +01:00
|
|
|
// TODO: Report the bug
|
2016-12-31 12:26:22 +01:00
|
|
|
}
|