iceshrimp-legacy/src/client/app/mios.ts

519 lines
12 KiB
TypeScript
Raw Normal View History

import autobind from 'autobind-decorator';
2018-02-21 21:05:19 +01:00
import Vue from 'vue';
2017-11-15 19:06:52 +01:00
import { EventEmitter } from 'eventemitter3';
2018-03-15 11:53:46 +01:00
import * as uuid from 'uuid';
2018-02-24 16:18:09 +01:00
2018-04-29 14:41:48 +02:00
import initStore from './store';
import { apiUrl, version, locale } from './config';
2018-04-29 14:41:48 +02:00
import Progress from './common/scripts/loading';
2017-11-15 19:06:52 +01:00
2018-04-29 15:04:51 +02:00
import Err from './common/views/components/connect-failed.vue';
import Stream from './common/scripts/stream';
2018-02-21 21:05:19 +01:00
2018-03-03 06:42:25 +01:00
//#region api requests
let spinner = null;
let pending = 0;
//#endregion
2017-11-15 19:06:52 +01:00
/**
* Misskey Operating System
*/
export default class MiOS extends EventEmitter {
/**
* Misskeyの /meta
*/
private meta: {
data: { [x: string]: any };
chachedAt: Date;
};
2018-08-19 14:07:18 +02:00
public get instanceName() {
2019-04-14 04:59:23 +02:00
return this.meta ? (this.meta.data.name || 'Misskey') : 'Misskey';
2018-08-19 14:07:18 +02:00
}
2017-11-15 19:06:52 +01:00
private isMetaFetching = false;
2018-02-22 15:53:07 +01:00
public app: Vue;
2017-11-20 23:06:36 +01:00
/**
* Whether is debug mode
*/
public get debug() {
2018-05-20 19:13:39 +02:00
return this.store ? this.store.state.device.debug : false;
2018-03-04 10:50:30 +01:00
}
2018-04-29 10:17:15 +02:00
public store: ReturnType<typeof initStore>;
2017-11-15 19:06:52 +01:00
/**
2017-11-16 17:24:44 +01:00
* A connection manager of home stream
2017-11-15 19:06:52 +01:00
*/
public stream: Stream;
2018-02-09 10:28:06 +01:00
2017-11-20 19:40:09 +01:00
/**
* A registration of service worker
*/
private swRegistration: ServiceWorkerRegistration = null;
2017-11-21 02:01:00 +01:00
/**
* Whether should register ServiceWorker
*/
private shouldRegisterSw: boolean;
2018-02-11 14:04:08 +01:00
/**
*
*/
public windows = new WindowSystem();
2017-11-21 02:01:00 +01:00
/**
* MiOSインスタンスを作成します
* @param shouldRegisterSw ServiceWorkerを登録するかどうか
*/
constructor(shouldRegisterSw = false) {
2017-11-15 19:06:52 +01:00
super();
2017-11-21 02:01:00 +01:00
this.shouldRegisterSw = shouldRegisterSw;
if (this.debug) {
(window as any).os = this;
}
}
@autobind
2017-11-20 23:06:36 +01:00
public log(...args) {
if (!this.debug) return;
console.log.apply(null, args);
}
@autobind
2017-11-20 23:06:36 +01:00
public logInfo(...args) {
if (!this.debug) return;
console.info.apply(null, args);
}
@autobind
2017-11-20 23:06:36 +01:00
public logWarn(...args) {
if (!this.debug) return;
console.warn.apply(null, args);
}
@autobind
2017-11-20 23:06:36 +01:00
public logError(...args) {
if (!this.debug) return;
console.error.apply(null, args);
}
@autobind
2018-02-26 11:23:53 +01:00
public signout() {
2018-05-27 06:49:09 +02:00
this.store.dispatch('logout');
2018-02-26 11:23:53 +01:00
location.href = '/';
}
2017-11-15 19:06:52 +01:00
/**
* Initialize MiOS (boot)
* @param callback A function that call when initialized
*/
@autobind
2017-11-15 19:06:52 +01:00
public async init(callback) {
2018-04-29 10:17:15 +02:00
this.store = initStore(this);
2017-11-15 19:06:52 +01:00
// ユーザーをフェッチしてコールバックする
const fetchme = (token, cb) => {
let me = null;
// Return when not signed in
if (token == null) {
return done();
}
// Fetch user
2018-02-24 16:18:09 +01:00
fetch(`${apiUrl}/i`, {
2017-11-15 19:06:52 +01:00
method: 'POST',
body: JSON.stringify({
i: token
})
2017-11-16 17:24:44 +01:00
})
// When success
.then(res => {
2017-11-15 19:06:52 +01:00
// When failed to authenticate user
if (res.status !== 200 && res.status < 500) {
2018-02-26 11:23:53 +01:00
return this.signout();
2017-11-15 19:06:52 +01:00
}
2017-11-16 17:24:44 +01:00
// Parse response
2017-11-15 19:06:52 +01:00
res.json().then(i => {
me = i;
2018-04-07 20:58:11 +02:00
me.token = token;
2017-11-15 19:06:52 +01:00
done();
});
2017-11-16 17:24:44 +01:00
})
// When failure
.catch(() => {
2017-11-15 19:06:52 +01:00
// Render the error screen
2018-02-21 21:05:19 +01:00
document.body.innerHTML = '<div id="err"></div>';
new Vue({
render: createEl => createEl(Err)
}).$mount('#err');
2017-11-16 17:24:44 +01:00
2017-11-15 19:06:52 +01:00
Progress.done();
});
function done() {
if (cb) cb(me);
}
};
// フェッチが完了したとき
2018-05-27 06:49:09 +02:00
const fetched = () => {
2018-02-09 10:28:06 +01:00
this.emit('signedin');
2017-11-15 19:06:52 +01:00
2018-10-09 08:08:31 +02:00
this.initStream();
2017-11-15 19:06:52 +01:00
// Finish init
callback();
2017-11-20 19:40:09 +01:00
2017-11-20 23:06:36 +01:00
// Init service worker
2019-03-06 01:24:16 +01:00
if (this.shouldRegisterSw) {
2019-05-03 01:22:44 +02:00
// #4813
//this.getMeta().then(data => {
// this.registerSw(data.swPublickey);
//});
2019-03-06 01:24:16 +01:00
}
2017-11-15 19:06:52 +01:00
};
2017-11-20 23:06:36 +01:00
// キャッシュがあったとき
2018-05-27 06:49:09 +02:00
if (this.store.state.i != null) {
if (this.store.state.i.token == null) {
2018-04-07 21:44:59 +02:00
this.signout();
return;
}
2017-11-20 23:06:36 +01:00
// とりあえずキャッシュされたデータでお茶を濁して(?)おいて、
2018-05-27 06:49:09 +02:00
fetched();
2017-11-15 19:06:52 +01:00
// 後から新鮮なデータをフェッチ
2018-05-27 06:49:09 +02:00
fetchme(this.store.state.i.token, freshData => {
this.store.dispatch('mergeMe', freshData);
2017-11-15 19:06:52 +01:00
});
} else {
2018-11-28 08:19:02 +01:00
// Get token from cookie or localStorage
const i = (document.cookie.match(/i=(\w+)/) || [null, null])[1] || localStorage.getItem('i');
2017-11-15 19:06:52 +01:00
2018-04-29 10:17:15 +02:00
fetchme(i, me => {
if (me) {
2018-05-27 06:49:09 +02:00
this.store.dispatch('login', me);
fetched();
2018-04-29 10:17:15 +02:00
} else {
2018-10-20 04:24:02 +02:00
this.initStream();
2018-04-29 10:17:15 +02:00
// Finish init
callback();
}
});
2017-11-15 19:06:52 +01:00
}
}
2018-10-09 08:08:31 +02:00
@autobind
private initStream() {
this.stream = new Stream(this);
if (this.store.getters.isSignedIn) {
const main = this.stream.useSharedConnection('main');
// 自分の情報が更新されたとき
main.on('meUpdated', i => {
this.store.dispatch('mergeMe', i);
});
main.on('readAllNotifications', () => {
this.store.dispatch('mergeMe', {
hasUnreadNotification: false
});
});
main.on('unreadNotification', () => {
this.store.dispatch('mergeMe', {
hasUnreadNotification: true
});
});
main.on('readAllMessagingMessages', () => {
this.store.dispatch('mergeMe', {
hasUnreadMessagingMessage: false
});
});
main.on('unreadMessagingMessage', () => {
this.store.dispatch('mergeMe', {
hasUnreadMessagingMessage: true
});
});
main.on('unreadMention', () => {
this.store.dispatch('mergeMe', {
hasUnreadMentions: true
});
});
main.on('readAllUnreadMentions', () => {
this.store.dispatch('mergeMe', {
hasUnreadMentions: false
});
});
main.on('unreadSpecifiedNote', () => {
this.store.dispatch('mergeMe', {
hasUnreadSpecifiedNotes: true
});
});
main.on('readAllUnreadSpecifiedNotes', () => {
this.store.dispatch('mergeMe', {
hasUnreadSpecifiedNotes: false
});
});
main.on('clientSettingUpdated', x => {
this.store.commit('settings/set', {
key: x.key,
value: x.value
});
});
// トークンが再生成されたとき
// このままではMisskeyが利用できないので強制的にサインアウトさせる
main.on('myTokenRegenerated', () => {
alert(locale['common']['my-token-regenerated'])
2018-10-09 08:08:31 +02:00
this.signout();
});
}
}
2017-11-20 23:06:36 +01:00
/**
* Register service worker
*/
@autobind
2019-03-06 01:24:16 +01:00
private registerSw(swPublickey) {
2017-11-20 23:06:36 +01:00
// Check whether service worker and push manager supported
const isSwSupported =
('serviceWorker' in navigator) && ('PushManager' in window);
// Reject when browser not service worker supported
if (!isSwSupported) return;
// Reject when not signed in to Misskey
2018-05-27 06:49:09 +02:00
if (!this.store.getters.isSignedIn) return;
2017-11-20 23:06:36 +01:00
// When service worker activated
navigator.serviceWorker.ready.then(registration => {
this.log('[sw] ready: ', registration);
this.swRegistration = registration;
// Options of pushManager.subscribe
// SEE: https://developer.mozilla.org/en-US/docs/Web/API/PushManager/subscribe#Parameters
2017-11-20 23:06:36 +01:00
const opts = {
// A boolean indicating that the returned push subscription
// will only be used for messages whose effect is made visible to the user.
userVisibleOnly: true,
// A public key your push server will use to send
// messages to client apps via a push server.
2019-03-06 01:24:16 +01:00
applicationServerKey: urlBase64ToUint8Array(swPublickey)
2017-11-20 23:06:36 +01:00
};
// Subscribe push notification
this.swRegistration.pushManager.subscribe(opts).then(subscription => {
this.log('[sw] Subscribe OK:', subscription);
function encode(buffer: ArrayBuffer) {
return btoa(String.fromCharCode.apply(null, new Uint8Array(buffer)));
}
// Register
this.api('sw/register', {
endpoint: subscription.endpoint,
auth: encode(subscription.getKey('auth')),
publickey: encode(subscription.getKey('p256dh'))
});
2017-11-23 01:52:45 +01:00
})
// When subscribe failed
.catch(async (err: Error) => {
2017-11-20 23:06:36 +01:00
this.logError('[sw] Subscribe Error:', err);
2017-11-22 22:26:22 +01:00
2017-11-23 01:52:45 +01:00
// 通知が許可されていなかったとき
if (err.name == 'NotAllowedError') {
this.logError('[sw] Subscribe failed due to notification not allowed');
return;
}
2017-11-22 22:26:22 +01:00
// 違うapplicationServerKey (または gcm_sender_id)のサブスクリプションが
// 既に存在していることが原因でエラーになった可能性があるので、
// そのサブスクリプションを解除しておく
const subscription = await this.swRegistration.pushManager.getSubscription();
if (subscription) subscription.unsubscribe();
2017-11-20 19:40:09 +01:00
});
2017-11-20 23:06:36 +01:00
});
// The path of service worker script
const sw = `/sw.${version}.js`;
2017-11-20 23:06:36 +01:00
// Register service worker
navigator.serviceWorker.register(sw).then(registration => {
// 登録成功
this.logInfo('[sw] Registration successful with scope: ', registration.scope);
2017-11-20 19:40:09 +01:00
}).catch(err => {
2017-11-20 23:06:36 +01:00
// 登録失敗 :(
this.logError('[sw] Registration failed: ', err);
2017-11-20 19:40:09 +01:00
});
}
2018-03-15 11:53:46 +01:00
public requests = [];
2017-11-15 19:06:52 +01:00
/**
* Misskey APIにリクエストします
* @param endpoint
* @param data
*/
@autobind
public api(endpoint: string, data: { [x: string]: any } = {}, silent = false): Promise<{ [x: string]: any }> {
2018-11-15 21:26:36 +01:00
if (!silent) {
if (++pending === 1) {
spinner = document.createElement('div');
spinner.setAttribute('id', 'wait');
document.body.appendChild(spinner);
}
2018-03-03 06:42:25 +01:00
}
2018-04-13 20:40:12 +02:00
const onFinally = () => {
2018-11-15 21:26:36 +01:00
if (!silent) {
if (--pending === 0) spinner.parentNode.removeChild(spinner);
}
2018-04-13 20:40:12 +02:00
};
const promise = new Promise((resolve, reject) => {
// Append a credential
if (this.store.getters.isSignedIn) (data as any).i = this.store.state.i.token;
const req = {
id: uuid(),
date: new Date(),
name: endpoint,
data,
res: null,
status: null
};
if (this.debug) {
this.requests.push(req);
}
// Send request
fetch(endpoint.indexOf('://') > -1 ? endpoint : `${apiUrl}/${endpoint}`, {
method: 'POST',
body: JSON.stringify(data),
credentials: endpoint === 'signin' ? 'include' : 'omit',
cache: 'no-cache'
}).then(async (res) => {
const body = res.status === 204 ? null : await res.json();
2018-03-15 11:53:46 +01:00
if (this.debug) {
req.status = res.status;
req.res = body;
2018-03-15 11:53:46 +01:00
}
if (res.status === 200) {
resolve(body);
} else if (res.status === 204) {
resolve();
} else {
reject(body.error);
}
}).catch(reject);
2018-03-03 06:42:25 +01:00
});
2018-04-13 20:40:12 +02:00
promise.then(onFinally, onFinally);
return promise;
2017-11-15 19:06:52 +01:00
}
2018-11-01 03:51:49 +01:00
/**
* Misskeyのメタ情報を取得します
*/
@autobind
public getMetaSync() {
return this.meta ? this.meta.data : null;
}
2017-11-15 19:06:52 +01:00
/**
* Misskeyのメタ情報を取得します
* @param force
*/
@autobind
2017-11-15 19:06:52 +01:00
public getMeta(force = false) {
return new Promise<{ [x: string]: any }>(async (res, rej) => {
if (this.isMetaFetching) {
this.once('_meta_fetched_', () => {
res(this.meta.data);
});
return;
}
const expire = 1000 * 60; // 1min
// forceが有効, meta情報を保持していない or 期限切れ
if (force || this.meta == null || Date.now() - this.meta.chachedAt.getTime() > expire) {
this.isMetaFetching = true;
2018-11-02 15:27:47 +01:00
const meta = await this.api('meta', {
detail: false
});
2017-11-15 19:06:52 +01:00
this.meta = {
data: meta,
chachedAt: new Date()
};
this.isMetaFetching = false;
this.emit('_meta_fetched_');
res(meta);
} else {
res(this.meta.data);
}
});
}
}
2018-03-15 11:53:46 +01:00
class WindowSystem extends EventEmitter {
public windows = new Set();
2018-02-11 14:04:08 +01:00
public add(window) {
this.windows.add(window);
2018-03-15 11:53:46 +01:00
this.emit('added', window);
2018-02-11 14:04:08 +01:00
}
public remove(window) {
this.windows.delete(window);
2018-03-15 11:53:46 +01:00
this.emit('removed', window);
2018-02-11 14:04:08 +01:00
}
public getAll() {
return this.windows;
}
}
/**
* Convert the URL safe base64 string to a Uint8Array
* @param base64String base64 string
*/
function urlBase64ToUint8Array(base64String: string): Uint8Array {
const padding = '='.repeat((4 - base64String.length % 4) % 4);
const base64 = (base64String + padding)
.replace(/-/g, '+')
.replace(/_/g, '/');
const rawData = window.atob(base64);
const outputArray = new Uint8Array(rawData.length);
for (let i = 0; i < rawData.length; ++i) {
outputArray[i] = rawData.charCodeAt(i);
}
return outputArray;
}