2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import * as os from '@/os.js';
|
2021-04-22 13:29:33 +00:00
|
|
|
|
|
|
|
export async function lookupUser() {
|
2021-11-18 09:45:58 +00:00
|
|
|
const { canceled, result } = await os.inputText({
|
2022-01-28 02:39:49 +00:00
|
|
|
title: i18n.ts.usernameOrUserId,
|
2021-04-22 13:29:33 +00:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
const show = (user) => {
|
2023-08-13 12:02:25 +00:00
|
|
|
os.pageWindow(`/admin/user/${user.id}`);
|
2021-04-22 13:29:33 +00:00
|
|
|
};
|
|
|
|
|
2023-09-04 04:33:38 +00:00
|
|
|
const usernamePromise = os.api('users/show', Misskey.acct.parse(result));
|
2021-04-22 13:29:33 +00:00
|
|
|
const idPromise = os.api('users/show', { userId: result });
|
|
|
|
let _notFound = false;
|
|
|
|
const notFound = () => {
|
|
|
|
if (_notFound) {
|
2021-11-18 09:45:58 +00:00
|
|
|
os.alert({
|
2021-04-22 13:29:33 +00:00
|
|
|
type: 'error',
|
2022-12-22 07:01:59 +00:00
|
|
|
text: i18n.ts.noSuchUser,
|
2021-04-22 13:29:33 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
_notFound = true;
|
|
|
|
}
|
|
|
|
};
|
2022-05-07 05:19:15 +00:00
|
|
|
usernamePromise.then(show).catch(err => {
|
|
|
|
if (err.code === 'NO_SUCH_USER') {
|
2021-04-22 13:29:33 +00:00
|
|
|
notFound();
|
|
|
|
}
|
|
|
|
});
|
2022-05-07 05:19:15 +00:00
|
|
|
idPromise.then(show).catch(err => {
|
2021-04-22 13:29:33 +00:00
|
|
|
notFound();
|
|
|
|
});
|
|
|
|
}
|
2023-11-13 22:58:18 +00:00
|
|
|
|
|
|
|
export async function lookupUserByEmail() {
|
|
|
|
const { canceled, result } = await os.inputText({
|
|
|
|
title: i18n.ts.emailAddress,
|
|
|
|
type: 'email',
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
try {
|
|
|
|
const user = await os.apiWithDialog('admin/accounts/find-by-email', { email: result });
|
|
|
|
|
|
|
|
os.pageWindow(`/admin/user/${user.id}`);
|
|
|
|
} catch (err) {
|
|
|
|
if (err.code === 'USER_NOT_FOUND') {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: i18n.ts.noSuchUser,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|