get array for alsoKnownAs

This commit is contained in:
Namekuji 2023-05-30 23:10:12 -04:00
parent 2619c141ab
commit b1d0b291ff
No known key found for this signature in database
GPG Key ID: B541BD6E646CABC7
3 changed files with 88 additions and 64 deletions

View File

@ -1,4 +1,4 @@
import type { User, UserDetailedNotMeOnly } from "@/models/entities/user.js"; import type { User } from "@/models/entities/user.js";
import { Users } from "@/models/index.js"; import { Users } from "@/models/index.js";
import { resolveUser } from "@/remote/resolve-user.js"; import { resolveUser } from "@/remote/resolve-user.js";
import acceptAllFollowRequests from "@/services/following/requests/accept-all.js"; import acceptAllFollowRequests from "@/services/following/requests/accept-all.js";
@ -6,10 +6,9 @@ import { publishToFollowers } from "@/services/i/update.js";
import { publishMainStream } from "@/services/stream.js"; import { publishMainStream } from "@/services/stream.js";
import { DAY } from "@/const.js"; import { DAY } from "@/const.js";
import { apiLogger } from "../../logger.js"; import { apiLogger } from "../../logger.js";
import { UserProfiles } from "@/models/index.js";
import config from "@/config/index.js";
import define from "../../define.js"; import define from "../../define.js";
import { ApiError } from "../../error.js"; import { ApiError } from "../../error.js";
import { parse } from "@/misc/acct.js";
export const meta = { export const meta = {
tags: ["users"], tags: ["users"],
@ -38,49 +37,57 @@ export const meta = {
code: "URI_NULL", code: "URI_NULL",
id: "bf326f31-d430-4f97-9933-5d61e4d48a23", id: "bf326f31-d430-4f97-9933-5d61e4d48a23",
}, },
alreadyMoved: {
message: 'You have already moved your account.',
code: 'ALREADY_MOVED',
id: '56f20ec9-fd06-4fa5-841b-edd6d7d4fa31',
},
yourself: {
message: 'You can\'t set yourself as your own alias.',
code: 'FORBIDDEN_TO_SET_YOURSELF',
id: '25c90186-4ab0-49c8-9bba-a1fa6c202ba4',
},
}, },
} as const; } as const;
export const paramDef = { export const paramDef = {
type: "object", type: "object",
properties: { properties: {
alsoKnownAs: { type: "string" }, alsoKnownAs: {
type: 'array',
maxItems: 10,
uniqueItems: true,
items: { type: 'string' },
},
}, },
required: ["alsoKnownAs"], required: ["alsoKnownAs"],
} as const; } as const;
export default define(meta, paramDef, async (ps, user) => { export default define(meta, paramDef, async (ps, user) => {
if (!ps.alsoKnownAs) throw new ApiError(meta.errors.noSuchUser); if (!ps.alsoKnownAs) throw new ApiError(meta.errors.noSuchUser);
if (user.movedToUri) throw new ApiError(meta.errors.alreadyMoved);
let unfiltered: string = ps.alsoKnownAs; const newAka = new Set<string>();
const updates = {} as Partial<User>;
if (!unfiltered) { for (const line of ps.alsoKnownAs) {
updates.alsoKnownAs = null; if (!line) throw new ApiError(meta.errors.noSuchUser);
} else { const { username, host } = parse(line);
if (unfiltered.startsWith("acct:")) unfiltered = unfiltered.substring(5);
if (unfiltered.startsWith("@")) unfiltered = unfiltered.substring(1);
if (!unfiltered.includes("@")) throw new ApiError(meta.errors.notRemote);
const userAddress: string[] = unfiltered.split("@"); const aka = await resolveUser(username, host).catch((e) => {
const knownAs = await resolveUser(userAddress[0], userAddress[1]).catch( apiLogger.warn(`failed to resolve remote user: ${e}`);
(e) => { throw new ApiError(meta.errors.noSuchUser);
apiLogger.warn(`failed to resolve remote user: ${e}`); });
throw new ApiError(meta.errors.noSuchUser);
},
);
const toUrl: string | null = knownAs.uri; if (aka.id === user.id) throw new ApiError(meta.errors.yourself);
if (!toUrl) { if (!aka.uri) throw new ApiError(meta.errors.uriNull);
throw new ApiError(meta.errors.uriNull);
} newAka.add(aka.uri);
if (updates.alsoKnownAs == null || updates.alsoKnownAs.length === 0) {
updates.alsoKnownAs = [toUrl];
} else {
updates.alsoKnownAs.push(toUrl);
}
} }
const updates = {
alsoKnownAs: newAka.size > 0 ? Array.from(newAka) : null,
} as Partial<User>;
await Users.update(user.id, updates); await Users.update(user.id, updates);
const iObj = await Users.pack<true, true>(user.id, user, { const iObj = await Users.pack<true, true>(user.id, user, {

View File

@ -54,7 +54,7 @@ export const paramDef = {
anyOf: [ anyOf: [
{ {
properties: { properties: {
userId: { type: "string", format: "misskey:id" }, userId: { type: "string" },
}, },
required: ["userId"], required: ["userId"],
}, },
@ -65,7 +65,6 @@ export const paramDef = {
uniqueItems: true, uniqueItems: true,
items: { items: {
type: "string", type: "string",
format: "misskey:id",
}, },
}, },
}, },
@ -95,21 +94,27 @@ export default define(meta, paramDef, async (ps, me) => {
return []; return [];
} }
const users = await Users.findBy( const isUrl = ps.userIds[0].startsWith("http");
isAdminOrModerator let users: User[];
? { if (isUrl) {
id: In(ps.userIds), users = await Users.findBy(
} isAdminOrModerator
: { ? { uri: In(ps.userIds) }
id: In(ps.userIds), : { uri: In(ps.userIds), isSuspended: false },
isSuspended: false, );
}, } else {
); users = await Users.findBy(
isAdminOrModerator
? { id: In(ps.userIds) }
: { id: In(ps.userIds), isSuspended: false },
);
}
// リクエストされた通りに並べ替え // リクエストされた通りに並べ替え
const _users: User[] = []; const _users: User[] = [];
for (const id of ps.userIds) { for (const id of ps.userIds) {
_users.push(users.find((x) => x.id === id)!); const res = users.find((x) => (isUrl ? x.uri === id : x.id === id));
if (res) _users.push(res);
} }
return await Promise.all( return await Promise.all(
@ -129,7 +134,9 @@ export default define(meta, paramDef, async (ps, me) => {
} else { } else {
const q: FindOptionsWhere<User> = const q: FindOptionsWhere<User> =
ps.userId != null ps.userId != null
? { id: ps.userId } ? ps.userId.startsWith("http")
? { uri: ps.userId }
: { id: ps.userId }
: { usernameLower: ps.username!.toLowerCase(), host: IsNull() }; : { usernameLower: ps.username!.toLowerCase(), host: IsNull() };
user = await Users.findOneBy(q); user = await Users.findOneBy(q);

View File

@ -2,14 +2,10 @@
<div class="_formRoot"> <div class="_formRoot">
<FormSection> <FormSection>
<template #label>{{ i18n.ts.moveTo }}</template> <template #label>{{ i18n.ts.moveTo }}</template>
<FormInfo warn class="_formBlock">{{ i18n.ts.moveAccountDescription }}</FormInfo>
<FormInput v-model="moveToAccount" class="_formBlock"> <FormInput v-model="moveToAccount" class="_formBlock">
<template #prefix <template #prefix><i class="ph-airplane-takeoff ph-bold ph-lg"></i></template>
><i class="ph-airplane-takeoff ph-bold ph-lg"></i
></template>
<template #label>{{ i18n.ts.moveToLabel }}</template> <template #label>{{ i18n.ts.moveToLabel }}</template>
<template #caption>{{
i18n.ts.moveAccountDescription
}}</template>
</FormInput> </FormInput>
<FormButton primary danger @click="move(moveToAccount)"> <FormButton primary danger @click="move(moveToAccount)">
{{ i18n.ts.moveAccount }} {{ i18n.ts.moveAccount }}
@ -18,19 +14,15 @@
<FormSection> <FormSection>
<template #label>{{ i18n.ts.moveFrom }}</template> <template #label>{{ i18n.ts.moveFrom }}</template>
<FormInput v-model="accountAlias" class="_formBlock"> <FormInfo warn class="_formBlock">{{ i18n.ts.moveFromDescription }}</FormInfo>
<template #prefix <FormInput v-for="(_, i) in accountAlias" v-model="accountAlias[i]" class="_formBlock">
><i class="ph-airplane-landing ph-bold ph-lg"></i <template #prefix><i class="ph-airplane-landing ph-bold ph-lg"></i></template>
></template> <template #label>{{ `#${i + 1} ${i18n.ts.moveFromLabel}` }}</template>
<template #label>{{ i18n.ts.moveFromLabel }}</template>
<template #caption>{{ i18n.ts.moveFromDescription }}</template>
</FormInput> </FormInput>
<FormButton <FormButton class="button" :disabled="accountAlias.length >= 10" inline style="margin-right: 8px" @click="add"><i
class="button" class="ph-plus ph-bold ph-lg"></i>
inline {{ i18n.ts.add }}</FormButton>
primary <FormButton class="button" inline primary @click="save">
@click="save(accountAlias.toString())"
>
<i class="ph-floppy-disk-back ph-bold ph-lg"></i> <i class="ph-floppy-disk-back ph-bold ph-lg"></i>
{{ i18n.ts.save }} {{ i18n.ts.save }}
</FormButton> </FormButton>
@ -42,17 +34,35 @@
import FormSection from "@/components/form/section.vue"; import FormSection from "@/components/form/section.vue";
import FormInput from "@/components/form/input.vue"; import FormInput from "@/components/form/input.vue";
import FormButton from "@/components/MkButton.vue"; import FormButton from "@/components/MkButton.vue";
import FormInfo from "@/components/MkInfo.vue";
import * as os from "@/os"; import * as os from "@/os";
import { i18n } from "@/i18n"; import { i18n } from "@/i18n";
import { definePageMetadata } from "@/scripts/page-metadata"; import { definePageMetadata } from "@/scripts/page-metadata";
import { $i } from "@/account";
import { toString } from 'calckey-js/built/acct';
let moveToAccount = $ref(""); let moveToAccount = $ref("");
let accountAlias = $ref(""); let accountAlias = $ref([""]);
async function save(account): Promise<void> { await init();
os.apiWithDialog("i/known-as", {
alsoKnownAs: account, async function init() {
if ($i?.alsoKnownAs && $i.alsoKnownAs.length > 0) {
const aka = await os.api('users/show', { userIds: $i.alsoKnownAs });
accountAlias = (aka && aka.length > 0) ? aka.map(user => `@${toString(user)}`) : [''];
}
}
async function save(): Promise<void> {
const i = os.apiWithDialog("i/known-as", {
alsoKnownAs: accountAlias.map(e => e.trim()).filter(e => e !== ""),
}); });
$i.alsoKnownAs = i.alsoKnownAs;
await init();
}
function add(): void {
accountAlias.push('');
} }
async function move(account): Promise<void> { async function move(account): Promise<void> {