2023-07-27 07:31:52 +02:00
|
|
|
/*
|
2024-02-13 16:59:27 +01:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-09-04 06:33:38 +02:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-09-19 09:37:43 +02:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import * as os from '@/os.js';
|
2024-01-04 10:32:46 +01:00
|
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
2021-04-22 15:29:33 +02:00
|
|
|
|
|
|
|
export async function lookupUser() {
|
2021-11-18 10:45:58 +01:00
|
|
|
const { canceled, result } = await os.inputText({
|
2022-01-28 03:39:49 +01:00
|
|
|
title: i18n.ts.usernameOrUserId,
|
2021-04-22 15:29:33 +02:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
const show = (user) => {
|
2023-08-13 14:02:25 +02:00
|
|
|
os.pageWindow(`/admin/user/${user.id}`);
|
2021-04-22 15:29:33 +02:00
|
|
|
};
|
|
|
|
|
2024-01-04 10:32:46 +01:00
|
|
|
const usernamePromise = misskeyApi('users/show', Misskey.acct.parse(result));
|
|
|
|
const idPromise = misskeyApi('users/show', { userId: result });
|
2021-04-22 15:29:33 +02:00
|
|
|
let _notFound = false;
|
|
|
|
const notFound = () => {
|
|
|
|
if (_notFound) {
|
2021-11-18 10:45:58 +01:00
|
|
|
os.alert({
|
2021-04-22 15:29:33 +02:00
|
|
|
type: 'error',
|
2022-12-22 08:01:59 +01:00
|
|
|
text: i18n.ts.noSuchUser,
|
2021-04-22 15:29:33 +02:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
_notFound = true;
|
|
|
|
}
|
|
|
|
};
|
2022-05-07 07:19:15 +02:00
|
|
|
usernamePromise.then(show).catch(err => {
|
|
|
|
if (err.code === 'NO_SUCH_USER') {
|
2021-04-22 15:29:33 +02:00
|
|
|
notFound();
|
|
|
|
}
|
|
|
|
});
|
2022-05-07 07:19:15 +02:00
|
|
|
idPromise.then(show).catch(err => {
|
2021-04-22 15:29:33 +02:00
|
|
|
notFound();
|
|
|
|
});
|
|
|
|
}
|
2023-11-13 23:58:18 +01: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-05-27 10:21:05 +02:00
|
|
|
|
|
|
|
export async function lookupFile() {
|
|
|
|
const { canceled, result: q } = await os.inputText({
|
|
|
|
title: i18n.ts.fileIdOrUrl,
|
|
|
|
minLength: 1,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
const show = (file) => {
|
|
|
|
os.pageWindow(`/admin/file/${file.id}`);
|
|
|
|
};
|
|
|
|
|
|
|
|
misskeyApi('admin/drive/show-file', q.startsWith('http://') || q.startsWith('https://') ? { url: q.trim() } : { fileId: q.trim() }).then(file => {
|
|
|
|
show(file);
|
|
|
|
}).catch(err => {
|
|
|
|
if (err.code === 'NO_SUCH_FILE') {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: i18n.ts.notFound,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|