import create from "@/services/blocking/create.js"; import define from "../../define.js"; import { ApiError } from "../../error.js"; import { getUser } from "../../common/getters.js"; import { Blockings, NoteWatchings, Users } from "@/models/index.js"; import { HOUR } from "@/const.js"; export const meta = { tags: ["account"], limit: { duration: HOUR, max: 100, }, requireCredential: true, kind: "write:blocks", errors: { noSuchUser: { message: "No such user.", code: "NO_SUCH_USER", id: "7cc4f851-e2f1-4621-9633-ec9e1d00c01e", }, blockeeIsYourself: { message: "Blockee is yourself.", code: "BLOCKEE_IS_YOURSELF", id: "88b19138-f28d-42c0-8499-6a31bbd0fdc6", }, alreadyBlocking: { message: "You are already blocking that user.", code: "ALREADY_BLOCKING", id: "787fed64-acb9-464a-82eb-afbd745b9614", }, }, res: { type: "object", optional: false, nullable: false, ref: "UserDetailedNotMe", }, } as const; export const paramDef = { type: "object", properties: { userId: { type: "string", format: "misskey:id" }, }, required: ["userId"], } as const; export default define(meta, paramDef, async (ps, user) => { const blocker = await Users.findOneByOrFail({ id: user.id }); // 自分自身 if (user.id === ps.userId) { throw new ApiError(meta.errors.blockeeIsYourself); } // Get blockee const blockee = await getUser(ps.userId).catch((e) => { if (e.id === "15348ddd-432d-49c2-8a5a-8069753becff") throw new ApiError(meta.errors.noSuchUser); throw e; }); // Check if already blocking const exist = await Blockings.findOneBy({ blockerId: blocker.id, blockeeId: blockee.id, }); if (exist != null) { throw new ApiError(meta.errors.alreadyBlocking); } await create(blocker, blockee); NoteWatchings.delete({ userId: blocker.id, noteUserId: blockee.id, }); return await Users.pack(blockee.id, blocker, { detail: true, }); });