egirlskey/src/client/mios.ts

237 lines
5.7 KiB
TypeScript
Raw Normal View History

2020-07-08 14:27:35 +00:00
// TODO: このファイル消したい
import autobind from 'autobind-decorator';
2017-11-15 18:06:52 +00:00
import { EventEmitter } from 'eventemitter3';
2018-02-24 15:18:09 +00:00
2020-02-19 21:08:49 +00:00
import { apiUrl, version } from './config';
import Progress from './scripts/loading';
2017-11-15 18:06:52 +00:00
import Stream from './scripts/stream';
2020-03-31 00:11:43 +00:00
import store from './store';
2018-03-03 05:42:25 +00:00
2017-11-15 18:06:52 +00:00
/**
* Misskey Operating System
*/
export default class MiOS extends EventEmitter {
2020-03-31 00:11:43 +00:00
public store: ReturnType<typeof store>;
2018-04-29 08:17:15 +00:00
2017-11-15 18:06:52 +00:00
/**
2017-11-16 16:24:44 +00:00
* A connection manager of home stream
2017-11-15 18:06:52 +00:00
*/
public stream: Stream;
2018-02-09 09:28:06 +00:00
2017-11-20 18:40:09 +00:00
/**
* A registration of service worker
*/
private swRegistration: ServiceWorkerRegistration = null;
2020-03-31 00:11:43 +00:00
constructor(vuex: MiOS['store']) {
super();
this.store = vuex;
}
@autobind
2018-02-26 10:23:53 +00:00
public signout() {
2018-05-27 04:49:09 +00:00
this.store.dispatch('logout');
2018-02-26 10:23:53 +00:00
location.href = '/';
}
2017-11-15 18:06:52 +00:00
/**
* Initialize MiOS (boot)
* @param callback A function that call when initialized
*/
@autobind
2020-02-12 20:08:01 +00:00
public async init(callback) {
const finish = () => {
callback();
2020-02-11 11:05:47 +00:00
this.store.dispatch('instance/fetch').then(() => {
// Init service worker
if (this.store.state.instance.meta.swPublickey) this.registerSw(this.store.state.instance.meta.swPublickey);
});
};
2017-11-15 18:06:52 +00:00
// ユーザーをフェッチしてコールバックする
const fetchme = (token, cb) => {
let me = null;
// Return when not signed in
2020-02-14 14:59:54 +00:00
if (token == null || token === 'null') {
2017-11-15 18:06:52 +00:00
return done();
}
// Fetch user
2018-02-24 15:18:09 +00:00
fetch(`${apiUrl}/i`, {
2017-11-15 18:06:52 +00:00
method: 'POST',
body: JSON.stringify({
i: token
})
2017-11-16 16:24:44 +00:00
})
// When success
.then(res => {
2017-11-15 18:06:52 +00:00
// When failed to authenticate user
if (res.status !== 200 && res.status < 500) {
2018-02-26 10:23:53 +00:00
return this.signout();
2017-11-15 18:06:52 +00:00
}
2017-11-16 16:24:44 +00:00
// Parse response
2017-11-15 18:06:52 +00:00
res.json().then(i => {
me = i;
2018-04-07 18:58:11 +00:00
me.token = token;
2017-11-15 18:06:52 +00:00
done();
});
2017-11-16 16:24:44 +00:00
})
// When failure
.catch(() => {
2017-11-15 18:06:52 +00:00
// Render the error screen
document.body.innerHTML = '<div id="err">Oops!</div>';
2017-11-16 16:24:44 +00:00
2017-11-15 18:06:52 +00:00
Progress.done();
});
function done() {
if (cb) cb(me);
}
};
// フェッチが完了したとき
2018-05-27 04:49:09 +00:00
const fetched = () => {
2018-02-09 09:28:06 +00:00
this.emit('signedin');
2017-11-15 18:06:52 +00:00
2018-10-09 06:08:31 +00:00
this.initStream();
2017-11-15 18:06:52 +00:00
// Finish init
2020-02-12 20:08:01 +00:00
finish();
2017-11-15 18:06:52 +00:00
};
2017-11-20 22:06:36 +00:00
// キャッシュがあったとき
2018-05-27 04:49:09 +00:00
if (this.store.state.i != null) {
if (this.store.state.i.token == null) {
2018-04-07 19:44:59 +00:00
this.signout();
return;
}
2017-11-20 22:06:36 +00:00
// とりあえずキャッシュされたデータでお茶を濁して(?)おいて、
2018-05-27 04:49:09 +00:00
fetched();
2017-11-15 18:06:52 +00:00
// 後から新鮮なデータをフェッチ
2018-05-27 04:49:09 +00:00
fetchme(this.store.state.i.token, freshData => {
this.store.dispatch('mergeMe', freshData);
2017-11-15 18:06:52 +00:00
});
} else {
// Get token from localStorage
let i = localStorage.getItem('i');
// 連携ログインの場合用にCookieを参照する
if (i == null || i === 'null') {
i = (document.cookie.match(/igi=(\w+)/) || [null, null])[1];
}
2018-04-29 08:17:15 +00:00
fetchme(i, me => {
if (me) {
2018-05-27 04:49:09 +00:00
this.store.dispatch('login', me);
fetched();
2018-04-29 08:17:15 +00:00
} else {
2018-10-20 02:24:02 +00:00
this.initStream();
2018-04-29 08:17:15 +00:00
// Finish init
2020-02-12 20:08:01 +00:00
finish();
2018-04-29 08:17:15 +00:00
}
});
2017-11-15 18:06:52 +00:00
}
}
2018-10-09 06:08:31 +00:00
@autobind
private initStream() {
this.stream = new Stream(this);
}
2017-11-20 22:06:36 +00:00
/**
* Register service worker
*/
@autobind
2019-07-23 17:16:41 +00:00
private registerSw(swPublickey: string) {
2017-11-20 22:06:36 +00: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 04:49:09 +00:00
if (!this.store.getters.isSignedIn) return;
2017-11-20 22:06:36 +00:00
// When service worker activated
navigator.serviceWorker.ready.then(registration => {
this.swRegistration = registration;
// Options of pushManager.subscribe
// SEE: https://developer.mozilla.org/en-US/docs/Web/API/PushManager/subscribe#Parameters
2017-11-20 22:06:36 +00: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 00:24:16 +00:00
applicationServerKey: urlBase64ToUint8Array(swPublickey)
2017-11-20 22:06:36 +00:00
};
// Subscribe push notification
this.swRegistration.pushManager.subscribe(opts).then(subscription => {
function encode(buffer: ArrayBuffer) {
return btoa(String.fromCharCode.apply(null, new Uint8Array(buffer)));
}
// Register
2020-03-31 00:11:43 +00:00
this.store.dispatch('api', {
endpoint: 'sw/register',
data: {
endpoint: subscription.endpoint,
auth: encode(subscription.getKey('auth')),
publickey: encode(subscription.getKey('p256dh'))
}
2017-11-20 22:06:36 +00:00
});
2017-11-23 00:52:45 +00:00
})
// When subscribe failed
.catch(async (err: Error) => {
// 通知が許可されていなかったとき
2020-04-03 23:46:54 +00:00
if (err.name === 'NotAllowedError') {
2017-11-23 00:52:45 +00:00
return;
}
2017-11-22 21:26:22 +00:00
// 違うapplicationServerKey (または gcm_sender_id)のサブスクリプションが
// 既に存在していることが原因でエラーになった可能性があるので、
// そのサブスクリプションを解除しておく
const subscription = await this.swRegistration.pushManager.getSubscription();
if (subscription) subscription.unsubscribe();
2017-11-20 18:40:09 +00:00
});
2017-11-20 22:06:36 +00:00
});
// The path of service worker script
const sw = `/sw.${version}.js`;
2017-11-20 22:06:36 +00:00
// Register service worker
navigator.serviceWorker.register(sw);
2017-11-20 18:40:09 +00:00
}
2017-11-15 18:06:52 +00:00
}
/**
* 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;
}