mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 02:13:09 +02:00
efb0ffc4ec
* Fix API Schema Error * Delete SimpleSchema/SimpleObj and Move schemas to dedicated files * Userのスキーマを分割してみる * define packMany type * add , * Ensure enum schema and Make "as const" put once * test? * Revert "test?" This reverts commit 97dc9bfa70851bfb7d1cf38e883f8df20fb78b79. * Revert "Fix API Schema Error" This reverts commit 21b6176d974ed8e3eb73723ad21a105c5d297323. * ✌️ * clean up * test? * wip * wip * better schema def * ✌️ * fix * add minLength property * wip * wip * wip * anyOf/oneOf/allOfに対応? ~ relation.ts * refactor! * Define MinimumSchema * wip * wip * anyOf/oneOf/allOfが動作するようにUnionSchemaTypeを修正 * anyOf/oneOf/allOfが動作するようにUnionSchemaTypeを修正 * Update packages/backend/src/misc/schema.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * fix * array oneOfをより正確な型に * array oneOfをより正確な型に * wip * ✌️ * なんかもういろいろ * remove * very good schema * api schema * wip * refactor: awaitAllの型定義を変えてみる * fix * specify types in awaitAll * specify types in awaitAll * ✌️ * wip * ... * ✌️ * AllowDateはやめておく * 不必要なoptional: false, nullable: falseを廃止 * Packedが展開されないように * 続packed * wip * define note type * wip * UserDetailedをMeDetailedかUserDetailedNotMeかを区別できるように * wip * wip * wip specify user type of other schemas * ok * convertSchemaToOpenApiSchemaを改修 * convertSchemaToOpenApiSchemaを改修 * Fix * fix * ✌️ * wip * 分割代入ではなくallOfで定義するように Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
90 lines
1.9 KiB
TypeScript
90 lines
1.9 KiB
TypeScript
import $ from 'cafy';
|
|
import { ID } from '@/misc/cafy-id';
|
|
import ms from 'ms';
|
|
import create from '@/services/blocking/create';
|
|
import define from '../../define';
|
|
import { ApiError } from '../../error';
|
|
import { getUser } from '../../common/getters';
|
|
import { Blockings, NoteWatchings, Users } from '@/models/index';
|
|
|
|
export const meta = {
|
|
tags: ['account'],
|
|
|
|
limit: {
|
|
duration: ms('1hour'),
|
|
max: 100,
|
|
},
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'write:blocks',
|
|
|
|
params: {
|
|
userId: {
|
|
validator: $.type(ID),
|
|
},
|
|
},
|
|
|
|
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;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, async (ps, user) => {
|
|
const blocker = await Users.findOneOrFail(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.findOne({
|
|
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,
|
|
});
|
|
});
|