2021-11-12 12:47:04 +02:00
|
|
|
import ms from 'ms';
|
2022-02-27 04:07:39 +02:00
|
|
|
import create from '@/services/note/create.js';
|
|
|
|
import define from '../../define.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
|
|
|
import { User } from '@/models/entities/user.js';
|
|
|
|
import { Users, DriveFiles, Notes, Channels, Blockings } from '@/models/index.js';
|
|
|
|
import { DriveFile } from '@/models/entities/drive-file.js';
|
|
|
|
import { Note } from '@/models/entities/note.js';
|
|
|
|
import { noteVisibilities } from '../../../../types.js';
|
|
|
|
import { Channel } from '@/models/entities/channel.js';
|
|
|
|
import { MAX_NOTE_TEXT_LENGTH } from '@/const.js';
|
2022-04-08 13:01:38 +03:00
|
|
|
import { In } from 'typeorm';
|
2018-07-05 16:35:35 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2018-07-15 21:25:35 +03:00
|
|
|
|
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
2021-12-09 16:58:30 +02:00
|
|
|
max: 300,
|
2018-07-15 21:25:35 +03:00
|
|
|
},
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
kind: 'write:notes',
|
2018-07-15 21:25:35 +03:00
|
|
|
|
2018-07-05 17:47:36 +03:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 02:45:27 +02:00
|
|
|
properties: {
|
2018-07-05 17:47:36 +03:00
|
|
|
createdNote: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'Note',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
|
|
|
},
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchRenoteTarget: {
|
|
|
|
message: 'No such renote target.',
|
|
|
|
code: 'NO_SUCH_RENOTE_TARGET',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'b5c90186-4ab0-49c8-9bba-a1f76c282ba4',
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
cannotReRenote: {
|
|
|
|
message: 'You can not Renote a pure Renote.',
|
|
|
|
code: 'CANNOT_RENOTE_TO_A_PURE_RENOTE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'fd4cc33e-2a37-48dd-99cc-9b806eb2031a',
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
noSuchReplyTarget: {
|
|
|
|
message: 'No such reply target.',
|
|
|
|
code: 'NO_SUCH_REPLY_TARGET',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '749ee0f6-d3da-459a-bf02-282e2da4292c',
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
cannotReplyToPureRenote: {
|
|
|
|
message: 'You can not reply to a pure Renote.',
|
|
|
|
code: 'CANNOT_REPLY_TO_A_PURE_RENOTE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '3ac74a84-8fd5-4bb0-870f-01804f82ce15',
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
2019-03-06 15:55:47 +02:00
|
|
|
cannotCreateAlreadyExpiredPoll: {
|
|
|
|
message: 'Poll is already expired.',
|
|
|
|
code: 'CANNOT_CREATE_ALREADY_EXPIRED_POLL',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '04da457d-b083-4055-9082-955525eda5a5',
|
2020-08-18 16:44:21 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
noSuchChannel: {
|
|
|
|
message: 'No such channel.',
|
|
|
|
code: 'NO_SUCH_CHANNEL',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'b1653923-5453-4edc-b786-7c4f39bb0bbb',
|
2020-08-18 16:44:21 +03:00
|
|
|
},
|
2021-08-17 15:48:59 +03:00
|
|
|
|
|
|
|
youHaveBeenBlocked: {
|
|
|
|
message: 'You have been blocked by this user.',
|
|
|
|
code: 'YOU_HAVE_BEEN_BLOCKED',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'b390d7e1-8a5e-46ed-b625-06271cafd3d3',
|
2021-08-17 15:48:59 +03:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-04-07 20:30:37 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
visibility: { type: 'string', enum: ['public', 'home', 'followers', 'specified'], default: "public" },
|
|
|
|
visibleUserIds: { type: 'array', uniqueItems: true, items: {
|
|
|
|
type: 'string', format: 'misskey:id',
|
|
|
|
} },
|
2022-04-03 07:57:26 +03:00
|
|
|
text: { type: 'string', maxLength: MAX_NOTE_TEXT_LENGTH, nullable: true },
|
2022-02-19 07:05:32 +02:00
|
|
|
cw: { type: 'string', nullable: true, maxLength: 100 },
|
|
|
|
localOnly: { type: 'boolean', default: false },
|
|
|
|
noExtractMentions: { type: 'boolean', default: false },
|
|
|
|
noExtractHashtags: { type: 'boolean', default: false },
|
|
|
|
noExtractEmojis: { type: 'boolean', default: false },
|
2022-04-03 07:57:26 +03:00
|
|
|
fileIds: {
|
|
|
|
type: 'array',
|
|
|
|
uniqueItems: true,
|
|
|
|
minItems: 1,
|
|
|
|
maxItems: 16,
|
|
|
|
items: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
mediaIds: {
|
|
|
|
deprecated: true,
|
|
|
|
description: 'Use `fileIds` instead. If both are specified, this property is discarded.',
|
|
|
|
type: 'array',
|
|
|
|
uniqueItems: true,
|
|
|
|
minItems: 1,
|
|
|
|
maxItems: 16,
|
|
|
|
items: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
2022-02-19 07:05:32 +02:00
|
|
|
replyId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
|
|
renoteId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
|
|
channelId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
|
|
poll: {
|
2022-04-03 07:57:26 +03:00
|
|
|
type: 'object',
|
|
|
|
nullable: true,
|
2022-02-19 07:05:32 +02:00
|
|
|
properties: {
|
|
|
|
choices: {
|
2022-04-03 07:57:26 +03:00
|
|
|
type: 'array',
|
|
|
|
uniqueItems: true,
|
|
|
|
minItems: 2,
|
|
|
|
maxItems: 10,
|
|
|
|
items: { type: 'string', minLength: 1, maxLength: 50 },
|
2022-02-19 07:05:32 +02:00
|
|
|
},
|
|
|
|
multiple: { type: 'boolean', default: false },
|
|
|
|
expiresAt: { type: 'integer', nullable: true },
|
|
|
|
expiredAfter: { type: 'integer', nullable: true, minimum: 1 },
|
|
|
|
},
|
|
|
|
required: ['choices'],
|
|
|
|
},
|
|
|
|
},
|
2022-04-03 07:57:26 +03:00
|
|
|
anyOf: [
|
|
|
|
{
|
|
|
|
// (re)note with text, files and poll are optional
|
|
|
|
properties: {
|
|
|
|
text: { type: 'string', maxLength: MAX_NOTE_TEXT_LENGTH, nullable: false },
|
|
|
|
},
|
|
|
|
required: ['text'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// (re)note with files, text and poll are optional
|
|
|
|
required: ['fileIds'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// (re)note with files, text and poll are optional
|
|
|
|
required: ['mediaIds'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// (re)note with poll, text and files are optional
|
|
|
|
properties: {
|
|
|
|
poll: { type: 'object', nullable: false, },
|
|
|
|
},
|
|
|
|
required: ['poll'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// pure renote
|
|
|
|
required: ['renoteId'],
|
|
|
|
},
|
|
|
|
],
|
2022-02-19 07:05:32 +02:00
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2019-04-07 15:50:36 +03:00
|
|
|
let visibleUsers: User[] = [];
|
2018-11-01 20:32:24 +02:00
|
|
|
if (ps.visibleUserIds) {
|
2022-04-08 13:01:38 +03:00
|
|
|
visibleUsers = await Users.findBy({
|
|
|
|
id: In(ps.visibleUserIds),
|
|
|
|
});
|
2018-04-28 22:30:51 +03:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
let files: DriveFile[] = [];
|
2018-09-05 13:32:46 +03:00
|
|
|
const fileIds = ps.fileIds != null ? ps.fileIds : ps.mediaIds != null ? ps.mediaIds : null;
|
|
|
|
if (fileIds != null) {
|
2022-04-08 13:01:38 +03:00
|
|
|
files = await DriveFiles.findBy({
|
|
|
|
userId: user.id,
|
|
|
|
id: In(fileIds),
|
|
|
|
});
|
2018-04-07 20:30:37 +03:00
|
|
|
}
|
|
|
|
|
2022-03-26 08:34:00 +02:00
|
|
|
let renote: Note | null;
|
2018-11-01 20:32:24 +02:00
|
|
|
if (ps.renoteId != null) {
|
2018-04-07 20:30:37 +03:00
|
|
|
// Fetch renote to note
|
2022-03-26 08:34:00 +02:00
|
|
|
renote = await Notes.findOneBy({ id: ps.renoteId });
|
2018-04-07 20:30:37 +03:00
|
|
|
|
|
|
|
if (renote == null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.noSuchRenoteTarget);
|
2022-04-03 07:57:26 +03:00
|
|
|
} else if (renote.renoteId && !renote.text && !renote.fileIds && !renote.poll) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.cannotReRenote);
|
2018-04-07 20:30:37 +03:00
|
|
|
}
|
2021-08-17 15:48:59 +03:00
|
|
|
|
|
|
|
// Check blocking
|
|
|
|
if (renote.userId !== user.id) {
|
2022-03-26 08:34:00 +02:00
|
|
|
const block = await Blockings.findOneBy({
|
2021-08-17 15:48:59 +03:00
|
|
|
blockerId: renote.userId,
|
|
|
|
blockeeId: user.id,
|
|
|
|
});
|
|
|
|
if (block) {
|
|
|
|
throw new ApiError(meta.errors.youHaveBeenBlocked);
|
|
|
|
}
|
|
|
|
}
|
2018-04-07 20:30:37 +03:00
|
|
|
}
|
|
|
|
|
2022-03-26 08:34:00 +02:00
|
|
|
let reply: Note | null;
|
2018-11-01 20:32:24 +02:00
|
|
|
if (ps.replyId != null) {
|
2018-04-07 20:30:37 +03:00
|
|
|
// Fetch reply
|
2022-03-26 08:34:00 +02:00
|
|
|
reply = await Notes.findOneBy({ id: ps.replyId });
|
2018-04-07 20:30:37 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (reply == null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.noSuchReplyTarget);
|
2022-04-03 07:57:26 +03:00
|
|
|
} else if (reply.renoteId && !reply.text && !reply.fileIds && !renote.poll) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.cannotReplyToPureRenote);
|
2018-04-07 20:30:37 +03:00
|
|
|
}
|
2021-08-17 15:48:59 +03:00
|
|
|
|
|
|
|
// Check blocking
|
|
|
|
if (reply.userId !== user.id) {
|
2022-03-26 08:34:00 +02:00
|
|
|
const block = await Blockings.findOneBy({
|
2021-08-17 15:48:59 +03:00
|
|
|
blockerId: reply.userId,
|
|
|
|
blockeeId: user.id,
|
|
|
|
});
|
|
|
|
if (block) {
|
|
|
|
throw new ApiError(meta.errors.youHaveBeenBlocked);
|
|
|
|
}
|
|
|
|
}
|
2018-04-07 20:30:37 +03:00
|
|
|
}
|
|
|
|
|
2018-07-05 17:36:07 +03:00
|
|
|
if (ps.poll) {
|
2019-03-06 15:55:47 +02:00
|
|
|
if (typeof ps.poll.expiresAt === 'number') {
|
2021-11-13 12:10:14 +02:00
|
|
|
if (ps.poll.expiresAt < Date.now()) {
|
2019-03-06 15:55:47 +02:00
|
|
|
throw new ApiError(meta.errors.cannotCreateAlreadyExpiredPoll);
|
2021-11-13 12:10:14 +02:00
|
|
|
}
|
2019-03-06 15:55:47 +02:00
|
|
|
} else if (typeof ps.poll.expiredAfter === 'number') {
|
|
|
|
ps.poll.expiresAt = Date.now() + ps.poll.expiredAfter;
|
|
|
|
}
|
2018-04-07 20:30:37 +03:00
|
|
|
}
|
|
|
|
|
2020-08-18 16:44:21 +03:00
|
|
|
let channel: Channel | undefined;
|
|
|
|
if (ps.channelId != null) {
|
2022-03-26 08:34:00 +02:00
|
|
|
channel = await Channels.findOneBy({ id: ps.channelId });
|
2020-08-18 16:44:21 +03:00
|
|
|
|
|
|
|
if (channel == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchChannel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-07 20:30:37 +03:00
|
|
|
// 投稿を作成
|
2019-02-22 04:46:58 +02:00
|
|
|
const note = await create(user, {
|
2018-04-07 20:30:37 +03:00
|
|
|
createdAt: new Date(),
|
2018-09-05 13:32:46 +03:00
|
|
|
files: files,
|
2019-03-06 15:55:47 +02:00
|
|
|
poll: ps.poll ? {
|
|
|
|
choices: ps.poll.choices,
|
|
|
|
multiple: ps.poll.multiple || false,
|
2021-12-09 16:58:30 +02:00
|
|
|
expiresAt: ps.poll.expiresAt ? new Date(ps.poll.expiresAt) : null,
|
2019-04-12 19:43:22 +03:00
|
|
|
} : undefined,
|
|
|
|
text: ps.text || undefined,
|
2018-04-07 20:30:37 +03:00
|
|
|
reply,
|
|
|
|
renote,
|
2018-07-05 17:36:07 +03:00
|
|
|
cw: ps.cw,
|
2018-11-15 22:47:29 +02:00
|
|
|
localOnly: ps.localOnly,
|
2018-07-05 17:36:07 +03:00
|
|
|
visibility: ps.visibility,
|
2018-04-28 22:30:51 +03:00
|
|
|
visibleUsers,
|
2020-08-18 16:44:21 +03:00
|
|
|
channel,
|
2019-04-12 19:43:22 +03:00
|
|
|
apMentions: ps.noExtractMentions ? [] : undefined,
|
|
|
|
apHashtags: ps.noExtractHashtags ? [] : undefined,
|
|
|
|
apEmojis: ps.noExtractEmojis ? [] : undefined,
|
2018-04-07 20:30:37 +03:00
|
|
|
});
|
2019-02-22 04:46:58 +02:00
|
|
|
|
|
|
|
return {
|
2021-12-09 16:58:30 +02:00
|
|
|
createdNote: await Notes.pack(note, user),
|
2019-02-22 04:46:58 +02:00
|
|
|
};
|
|
|
|
});
|