2021-11-11 18:02:25 +01:00
|
|
|
import { del, get, set } from '@/scripts/idb-proxy';
|
2020-12-19 02:55:52 +01:00
|
|
|
import { reactive } from 'vue';
|
2021-12-18 06:56:35 +01:00
|
|
|
import * as misskey from 'misskey-js';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { apiUrl } from '@/config';
|
|
|
|
import { waiting, api, popup, popupMenu, success } from '@/os';
|
|
|
|
import { unisonReload, reloadChannel } from '@/scripts/unison-reload';
|
2021-09-18 19:23:12 +02:00
|
|
|
import { showSuspendedDialog } from './scripts/show-suspended-dialog';
|
2021-10-10 08:19:16 +02:00
|
|
|
import { i18n } from './i18n';
|
2020-12-19 02:55:52 +01:00
|
|
|
|
|
|
|
// TODO: 他のタブと永続化されたstateを同期
|
|
|
|
|
2021-12-18 06:56:35 +01:00
|
|
|
type Account = misskey.entities.MeDetailed;
|
2020-12-19 02:55:52 +01:00
|
|
|
|
|
|
|
const data = localStorage.getItem('account');
|
|
|
|
|
|
|
|
// TODO: 外部からはreadonlyに
|
|
|
|
export const $i = data ? reactive(JSON.parse(data) as Account) : null;
|
|
|
|
|
2022-01-18 13:30:17 +01:00
|
|
|
export const iAmModerator = $i != null && ($i.isAdmin || $i.isModerator);
|
|
|
|
|
2021-08-20 12:38:16 +02:00
|
|
|
export async function signout() {
|
|
|
|
waiting();
|
2020-12-19 02:55:52 +01:00
|
|
|
localStorage.removeItem('account');
|
2021-08-20 12:38:16 +02:00
|
|
|
|
|
|
|
//#region Remove account
|
|
|
|
const accounts = await getAccounts();
|
|
|
|
accounts.splice(accounts.findIndex(x => x.id === $i.id), 1);
|
2021-09-04 11:09:53 +02:00
|
|
|
|
|
|
|
if (accounts.length > 0) await set('accounts', accounts);
|
|
|
|
else await del('accounts');
|
2021-08-20 12:38:16 +02:00
|
|
|
//#endregion
|
|
|
|
|
2021-09-04 11:09:53 +02:00
|
|
|
//#region Remove service worker registration
|
2021-08-21 04:51:46 +02:00
|
|
|
try {
|
2021-09-04 11:09:53 +02:00
|
|
|
if (navigator.serviceWorker.controller) {
|
|
|
|
const registration = await navigator.serviceWorker.ready;
|
|
|
|
const push = await registration.pushManager.getSubscription();
|
|
|
|
if (push) {
|
|
|
|
await fetch(`${apiUrl}/sw/unregister`, {
|
|
|
|
method: 'POST',
|
|
|
|
body: JSON.stringify({
|
|
|
|
i: $i.token,
|
|
|
|
endpoint: push.endpoint,
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (accounts.length === 0) {
|
|
|
|
await navigator.serviceWorker.getRegistrations()
|
|
|
|
.then(registrations => {
|
|
|
|
return Promise.all(registrations.map(registration => registration.unregister()));
|
|
|
|
});
|
|
|
|
}
|
2021-08-21 04:51:46 +02:00
|
|
|
} catch (e) {}
|
2021-08-20 12:38:16 +02:00
|
|
|
//#endregion
|
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
document.cookie = `igi=; path=/`;
|
2021-08-20 12:38:16 +02:00
|
|
|
|
|
|
|
if (accounts.length > 0) login(accounts[0].token);
|
2021-11-04 16:09:13 +01:00
|
|
|
else unisonReload('/');
|
2020-12-19 02:55:52 +01:00
|
|
|
}
|
|
|
|
|
2021-08-20 12:38:16 +02:00
|
|
|
export async function getAccounts(): Promise<{ id: Account['id'], token: Account['token'] }[]> {
|
|
|
|
return (await get('accounts')) || [];
|
2020-12-19 02:55:52 +01:00
|
|
|
}
|
|
|
|
|
2021-08-20 12:38:16 +02:00
|
|
|
export async function addAccount(id: Account['id'], token: Account['token']) {
|
|
|
|
const accounts = await getAccounts();
|
2020-12-19 02:55:52 +01:00
|
|
|
if (!accounts.some(x => x.id === id)) {
|
2021-08-20 12:38:16 +02:00
|
|
|
await set('accounts', accounts.concat([{ id, token }]));
|
2020-12-19 02:55:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function fetchAccount(token): Promise<Account> {
|
|
|
|
return new Promise((done, fail) => {
|
|
|
|
// Fetch user
|
|
|
|
fetch(`${apiUrl}/i`, {
|
|
|
|
method: 'POST',
|
|
|
|
body: JSON.stringify({
|
|
|
|
i: token
|
|
|
|
})
|
|
|
|
})
|
2021-09-18 19:23:12 +02:00
|
|
|
.then(res => res.json())
|
2020-12-19 02:55:52 +01:00
|
|
|
.then(res => {
|
2021-09-18 19:23:12 +02:00
|
|
|
if (res.error) {
|
|
|
|
if (res.error.id === 'a8c724b3-6e9c-4b46-b1a8-bc3ed6258370') {
|
|
|
|
showSuspendedDialog().then(() => {
|
|
|
|
signout();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
signout();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
res.token = token;
|
|
|
|
done(res);
|
2020-12-19 02:55:52 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(fail);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function updateAccount(data) {
|
|
|
|
for (const [key, value] of Object.entries(data)) {
|
|
|
|
$i[key] = value;
|
|
|
|
}
|
2021-02-11 08:06:19 +01:00
|
|
|
localStorage.setItem('account', JSON.stringify($i));
|
2020-12-19 02:55:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export function refreshAccount() {
|
2021-08-20 12:38:16 +02:00
|
|
|
return fetchAccount($i.token).then(updateAccount);
|
2020-12-19 02:55:52 +01:00
|
|
|
}
|
|
|
|
|
2021-08-20 12:38:16 +02:00
|
|
|
export async function login(token: Account['token'], redirect?: string) {
|
2020-12-19 02:55:52 +01:00
|
|
|
waiting();
|
|
|
|
if (_DEV_) console.log('logging as token ', token);
|
|
|
|
const me = await fetchAccount(token);
|
|
|
|
localStorage.setItem('account', JSON.stringify(me));
|
2021-08-20 12:38:16 +02:00
|
|
|
await addAccount(me.id, token);
|
|
|
|
|
|
|
|
if (redirect) {
|
2021-11-04 16:09:13 +01:00
|
|
|
// 他のタブは再読み込みするだけ
|
|
|
|
reloadChannel.postMessage(null);
|
|
|
|
// このページはredirectで指定された先に移動
|
2021-08-20 12:38:16 +02:00
|
|
|
location.href = redirect;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-17 13:36:56 +01:00
|
|
|
unisonReload();
|
2020-12-19 02:55:52 +01:00
|
|
|
}
|
|
|
|
|
2022-01-21 12:17:31 +01:00
|
|
|
export async function openAccountMenu(opts: {
|
|
|
|
includeCurrentAccount?: boolean;
|
|
|
|
withExtraOperation: boolean;
|
|
|
|
active?: misskey.entities.UserDetailed['id'];
|
|
|
|
onChoose?: (account: misskey.entities.UserDetailed) => void;
|
|
|
|
}, ev: MouseEvent) {
|
2021-10-10 08:19:16 +02:00
|
|
|
function showSigninDialog() {
|
2021-11-11 18:02:25 +01:00
|
|
|
popup(import('@/components/signin-dialog.vue'), {}, {
|
2021-10-10 08:19:16 +02:00
|
|
|
done: res => {
|
|
|
|
addAccount(res.id, res.i);
|
|
|
|
success();
|
|
|
|
},
|
|
|
|
}, 'closed');
|
|
|
|
}
|
|
|
|
|
|
|
|
function createAccount() {
|
2021-11-11 18:02:25 +01:00
|
|
|
popup(import('@/components/signup-dialog.vue'), {}, {
|
2021-10-10 08:19:16 +02:00
|
|
|
done: res => {
|
|
|
|
addAccount(res.id, res.i);
|
|
|
|
switchAccountWithToken(res.i);
|
|
|
|
},
|
|
|
|
}, 'closed');
|
|
|
|
}
|
|
|
|
|
2022-01-21 12:17:31 +01:00
|
|
|
async function switchAccount(account: misskey.entities.UserDetailed) {
|
2021-10-10 08:19:16 +02:00
|
|
|
const storedAccounts = await getAccounts();
|
|
|
|
const token = storedAccounts.find(x => x.id === account.id).token;
|
|
|
|
switchAccountWithToken(token);
|
|
|
|
}
|
|
|
|
|
|
|
|
function switchAccountWithToken(token: string) {
|
|
|
|
login(token);
|
|
|
|
}
|
|
|
|
|
|
|
|
const storedAccounts = await getAccounts().then(accounts => accounts.filter(x => x.id !== $i.id));
|
|
|
|
const accountsPromise = api('users/show', { userIds: storedAccounts.map(x => x.id) });
|
|
|
|
|
2022-01-21 12:17:31 +01:00
|
|
|
function createItem(account: misskey.entities.UserDetailed) {
|
|
|
|
return {
|
|
|
|
type: 'user',
|
|
|
|
user: account,
|
|
|
|
active: opts.active != null ? opts.active === account.id : false,
|
|
|
|
action: () => {
|
|
|
|
if (opts.onChoose) {
|
|
|
|
opts.onChoose(account);
|
|
|
|
} else {
|
|
|
|
switchAccount(account);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-10-10 08:19:16 +02:00
|
|
|
const accountItemPromises = storedAccounts.map(a => new Promise(res => {
|
|
|
|
accountsPromise.then(accounts => {
|
|
|
|
const account = accounts.find(x => x.id === a.id);
|
|
|
|
if (account == null) return res(null);
|
2022-01-21 12:17:31 +01:00
|
|
|
res(createItem(account));
|
2021-10-10 08:19:16 +02:00
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2022-01-21 12:17:31 +01:00
|
|
|
if (opts.withExtraOperation) {
|
|
|
|
popupMenu([...[{
|
|
|
|
type: 'link',
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.profile,
|
2022-01-21 12:17:31 +01:00
|
|
|
to: `/@${ $i.username }`,
|
|
|
|
avatar: $i,
|
|
|
|
}, null, ...(opts.includeCurrentAccount ? [createItem($i)] : []), ...accountItemPromises, {
|
|
|
|
icon: 'fas fa-plus',
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.addAccount,
|
2022-01-21 12:17:31 +01:00
|
|
|
action: () => {
|
|
|
|
popupMenu([{
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.existingAccount,
|
2022-01-21 12:17:31 +01:00
|
|
|
action: () => { showSigninDialog(); },
|
|
|
|
}, {
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.createAccount,
|
2022-01-21 12:17:31 +01:00
|
|
|
action: () => { createAccount(); },
|
|
|
|
}], ev.currentTarget || ev.target);
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
type: 'link',
|
|
|
|
icon: 'fas fa-users',
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.manageAccounts,
|
2022-01-21 12:17:31 +01:00
|
|
|
to: `/settings/accounts`,
|
|
|
|
}]], ev.currentTarget || ev.target, {
|
|
|
|
align: 'left'
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
popupMenu([...(opts.includeCurrentAccount ? [createItem($i)] : []), ...accountItemPromises], ev.currentTarget || ev.target, {
|
|
|
|
align: 'left'
|
|
|
|
});
|
|
|
|
}
|
2021-10-10 08:19:16 +02:00
|
|
|
}
|