egirlskey/packages/backend/src/server/api/endpoints/notes/edit.ts

469 lines
14 KiB
TypeScript
Raw Normal View History

2023-09-22 19:05:42 +00:00
import ms from 'ms';
import { In } from 'typeorm';
import { Inject, Injectable } from '@nestjs/common';
import type { MiUser } from '@/models/User.js';
import type { UsersRepository, NotesRepository, BlockingsRepository, DriveFilesRepository, ChannelsRepository } from '@/models/_.js';
import type { MiDriveFile } from '@/models/DriveFile.js';
import type { MiNote } from '@/models/Note.js';
import type { MiChannel } from '@/models/Channel.js';
import type { Config } from '@/config.js';
2023-09-22 19:05:42 +00:00
import { Endpoint } from '@/server/api/endpoint-base.js';
import { NoteEntityService } from '@/core/entities/NoteEntityService.js';
import { NoteEditService } from '@/core/NoteEditService.js';
import { DI } from '@/di-symbols.js';
2024-03-02 16:36:49 +00:00
import { isPureRenote } from '@/misc/is-pure-renote.js';
import { IdentifiableError } from '@/misc/identifiable-error.js';
2023-09-22 19:05:42 +00:00
import { ApiError } from '../../error.js';
export const meta = {
tags: ['notes'],
2023-09-22 19:05:42 +00:00
requireCredential: true,
2024-03-02 16:36:49 +00:00
prohibitMoved: true,
2023-09-22 19:05:42 +00:00
limit: {
duration: ms('1hour'),
max: 300,
},
kind: 'write:notes',
2023-09-22 19:05:42 +00:00
res: {
type: 'object',
2023-09-22 19:05:42 +00:00
optional: false,
nullable: false,
properties: {
createdNote: {
type: 'object',
2023-09-22 19:05:42 +00:00
optional: false,
nullable: false,
ref: 'Note',
2023-09-22 19:05:42 +00:00
},
},
},
errors: {
noSuchRenoteTarget: {
message: 'No such renote target.',
code: 'NO_SUCH_RENOTE_TARGET',
id: 'b5c90186-4ab0-49c8-9bba-a1f76c282ba4',
2023-09-22 19:05:42 +00:00
},
cannotReRenote: {
message: 'You can not Renote a pure Renote.',
code: 'CANNOT_RENOTE_TO_A_PURE_RENOTE',
id: 'fd4cc33e-2a37-48dd-99cc-9b806eb2031a',
2023-09-22 19:05:42 +00:00
},
2024-03-02 16:36:49 +00:00
cannotRenoteDueToVisibility: {
message: 'You can not Renote due to target visibility.',
code: 'CANNOT_RENOTE_DUE_TO_VISIBILITY',
id: 'be9529e9-fe72-4de0-ae43-0b363c4938af',
},
2023-09-22 19:05:42 +00:00
noSuchReplyTarget: {
message: 'No such reply target.',
code: 'NO_SUCH_REPLY_TARGET',
id: '749ee0f6-d3da-459a-bf02-282e2da4292c',
2023-09-22 19:05:42 +00:00
},
2024-03-02 16:36:49 +00:00
cannotReplyToInvisibleNote: {
message: 'You cannot reply to an invisible Note.',
code: 'CANNOT_REPLY_TO_AN_INVISIBLE_NOTE',
id: 'b98980fa-3780-406c-a935-b6d0eeee10d1',
},
2023-09-22 19:05:42 +00:00
cannotReplyToPureRenote: {
message: 'You can not reply to a pure Renote.',
code: 'CANNOT_REPLY_TO_A_PURE_RENOTE',
id: '3ac74a84-8fd5-4bb0-870f-01804f82ce15',
2023-09-22 19:05:42 +00:00
},
2024-03-02 16:36:49 +00:00
maxLength: {
message: 'You tried posting a note which is too long.',
code: 'MAX_LENGTH',
id: '3ac74a84-8fd5-4bb0-870f-01804f82ce16',
},
cannotReplyToSpecifiedVisibilityNoteWithExtendedVisibility: {
message: 'You cannot reply to a specified visibility note with extended visibility.',
code: 'CANNOT_REPLY_TO_SPECIFIED_VISIBILITY_NOTE_WITH_EXTENDED_VISIBILITY',
id: 'ed940410-535c-4d5e-bfa3-af798671e93c',
},
2023-09-22 19:05:42 +00:00
cannotCreateAlreadyExpiredPoll: {
message: 'Poll is already expired.',
code: 'CANNOT_CREATE_ALREADY_EXPIRED_POLL',
id: '04da457d-b083-4055-9082-955525eda5a5',
2023-09-22 19:05:42 +00:00
},
noSuchChannel: {
message: 'No such channel.',
code: 'NO_SUCH_CHANNEL',
id: 'b1653923-5453-4edc-b786-7c4f39bb0bbb',
2023-09-22 19:05:42 +00:00
},
youHaveBeenBlocked: {
message: 'You have been blocked by this user.',
code: 'YOU_HAVE_BEEN_BLOCKED',
id: 'b390d7e1-8a5e-46ed-b625-06271cafd3d3',
2023-09-22 19:05:42 +00:00
},
2024-03-02 16:36:49 +00:00
noSuchFile: {
message: 'Some files are not found.',
code: 'NO_SUCH_FILE',
id: 'b6992544-63e7-67f0-fa7f-32444b1b5306',
},
2023-09-22 19:05:42 +00:00
accountLocked: {
message: 'You migrated. Your account is now locked.',
code: 'ACCOUNT_LOCKED',
id: 'd390d7e1-8a5e-46ed-b625-06271cafd3d3',
2023-09-22 19:05:42 +00:00
},
needsEditId: {
message: 'You need to specify `editId`.',
code: 'NEEDS_EDIT_ID',
id: 'd697edc8-8c73-4de8-bded-35fd198b79e5',
2023-09-22 19:05:42 +00:00
},
noSuchNote: {
message: 'No such note.',
code: 'NO_SUCH_NOTE',
id: 'eef6c173-3010-4a23-8674-7c4fcaeba719',
2023-09-22 19:05:42 +00:00
},
youAreNotTheAuthor: {
message: 'You are not the author of this note.',
code: 'YOU_ARE_NOT_THE_AUTHOR',
id: 'c6e61685-411d-43d0-b90a-a448d2539001',
2023-09-22 19:05:42 +00:00
},
cannotPrivateRenote: {
message: 'You can not perform a private renote.',
code: 'CANNOT_PRIVATE_RENOTE',
id: '19a50f1c-84fa-4e33-81d3-17834ccc0ad8',
2023-09-22 19:05:42 +00:00
},
notLocalUser: {
message: 'You are not a local user.',
code: 'NOT_LOCAL_USER',
id: 'b907f407-2aa0-4283-800b-a2c56290b822',
2023-09-22 19:05:42 +00:00
},
2023-11-03 14:35:12 +00:00
cannotRenoteOutsideOfChannel: {
message: 'Cannot renote outside of channel.',
code: 'CANNOT_RENOTE_OUTSIDE_OF_CHANNEL',
id: '33510210-8452-094c-6227-4a6c05d99f00',
},
2023-12-04 14:45:26 +00:00
cannotQuoteaQuoteOfCurrentPost: {
message: 'Cannot quote a quote of edited note.',
code: 'CANNOT_QUOTE_A_QUOTE_OF_EDITED_NOTE',
id: '33510210-8452-094c-6227-4a6c05d99f01',
},
cannotQuoteCurrentPost: {
message: 'Cannot quote the current note.',
code: 'CANNOT_QUOTE_THE_CURRENT_NOTE',
id: '33510210-8452-094c-6227-4a6c05d99f02',
},
containsProhibitedWords: {
message: 'Cannot post because it contains prohibited words.',
code: 'CONTAINS_PROHIBITED_WORDS',
id: 'aa6e01d3-a85c-669d-758a-76aab43af334',
},
2024-03-02 16:36:49 +00:00
containsTooManyMentions: {
message: 'Cannot post because it exceeds the allowed number of mentions.',
code: 'CONTAINS_TOO_MANY_MENTIONS',
id: '4de0363a-3046-481b-9b0f-feff3e211025',
},
2023-09-22 19:05:42 +00:00
},
} as const;
export const paramDef = {
type: 'object',
2023-09-22 19:05:42 +00:00
properties: {
editId: { type: 'string', format: 'misskey:id' },
visibility: { type: 'string', enum: ['public', 'home', 'followers', 'specified'], default: 'public' },
2023-09-22 19:05:42 +00:00
visibleUserIds: {
type: 'array',
2023-09-22 19:05:42 +00:00
uniqueItems: true,
items: {
type: 'string',
format: 'misskey:id',
2023-09-22 19:05:42 +00:00
},
},
cw: { type: 'string', nullable: true, minLength: 1, maxLength: 500 },
localOnly: { type: 'boolean', default: false },
reactionAcceptance: { type: 'string', nullable: true, enum: [null, 'likeOnly', 'likeOnlyForRemote', 'nonSensitiveOnly', 'nonSensitiveOnlyForLocalLikeOnlyForRemote'], default: null },
noExtractMentions: { type: 'boolean', default: false },
noExtractHashtags: { type: 'boolean', default: false },
noExtractEmojis: { type: 'boolean', default: false },
replyId: { type: 'string', format: 'misskey:id', nullable: true },
renoteId: { type: 'string', format: 'misskey:id', nullable: true },
channelId: { type: 'string', format: 'misskey:id', nullable: true },
text: {
type: 'string',
minLength: 1,
nullable: true,
},
2023-09-22 19:05:42 +00:00
fileIds: {
type: 'array',
2023-09-22 19:05:42 +00:00
uniqueItems: true,
minItems: 1,
maxItems: 16,
items: { type: 'string', format: 'misskey:id' },
2023-09-22 19:05:42 +00:00
},
mediaIds: {
type: 'array',
2023-09-22 19:05:42 +00:00
uniqueItems: true,
minItems: 1,
maxItems: 16,
items: { type: 'string', format: 'misskey:id' },
2023-09-22 19:05:42 +00:00
},
poll: {
type: 'object',
2023-09-22 19:05:42 +00:00
nullable: true,
properties: {
choices: {
type: 'array',
2023-09-22 19:05:42 +00:00
uniqueItems: true,
minItems: 2,
maxItems: 10,
2024-03-02 16:36:49 +00:00
items: { type: 'string', minLength: 1, maxLength: 150 },
2023-09-22 19:05:42 +00:00
},
multiple: { type: 'boolean' },
expiresAt: { type: 'integer', nullable: true },
expiredAfter: { type: 'integer', nullable: true, minimum: 1 },
2023-09-22 19:05:42 +00:00
},
required: ['choices'],
2023-09-22 19:05:42 +00:00
},
},
2024-03-02 16:36:49 +00:00
// (re)note with text, files and poll are optional
if: {
properties: {
renoteId: {
type: 'null',
2023-09-22 19:05:42 +00:00
},
2024-03-02 16:36:49 +00:00
fileIds: {
type: 'null',
},
mediaIds: {
type: 'null',
},
poll: {
type: 'null',
2023-09-22 19:05:42 +00:00
},
},
2024-03-02 16:36:49 +00:00
},
then: {
properties: {
text: {
type: 'string',
minLength: 1,
pattern: '[^\\s]+',
},
2023-09-22 19:05:42 +00:00
},
2024-03-02 16:36:49 +00:00
required: ['text'],
},
2023-09-22 19:05:42 +00:00
} as const;
@Injectable()
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
constructor(
@Inject(DI.config)
private config: Config,
2023-09-22 19:05:42 +00:00
@Inject(DI.usersRepository)
private usersRepository: UsersRepository,
@Inject(DI.notesRepository)
private notesRepository: NotesRepository,
@Inject(DI.blockingsRepository)
private blockingsRepository: BlockingsRepository,
@Inject(DI.driveFilesRepository)
private driveFilesRepository: DriveFilesRepository,
@Inject(DI.channelsRepository)
private channelsRepository: ChannelsRepository,
private noteEntityService: NoteEntityService,
private noteEditService: NoteEditService,
) {
super(meta, paramDef, async (ps, me) => {
if (ps.text && (ps.text.length > this.config.maxNoteLength)) {
throw new ApiError(meta.errors.maxLength);
}
2023-09-22 19:05:42 +00:00
let visibleUsers: MiUser[] = [];
if (ps.visibleUserIds) {
visibleUsers = await this.usersRepository.findBy({
id: In(ps.visibleUserIds),
});
}
let files: MiDriveFile[] = [];
const fileIds = ps.fileIds ?? ps.mediaIds ?? null;
if (fileIds != null) {
files = await this.driveFilesRepository.createQueryBuilder('file')
.where('file.userId = :userId AND file.id IN (:...fileIds)', {
userId: me.id,
fileIds,
})
.orderBy('array_position(ARRAY[:...fileIds], "id"::text)')
.setParameters({ fileIds })
.getMany();
if (files.length !== fileIds.length) {
2024-03-02 16:36:49 +00:00
throw new ApiError(meta.errors.noSuchFile);
2023-09-22 19:05:42 +00:00
}
}
let renote: MiNote | null = null;
2023-12-04 14:45:26 +00:00
if (ps.renoteId === ps.editId) {
throw new ApiError(meta.errors.cannotQuoteCurrentPost);
}
2024-03-02 16:36:49 +00:00
2023-09-22 19:05:42 +00:00
if (ps.renoteId != null) {
// Fetch renote to note
renote = await this.notesRepository.findOneBy({ id: ps.renoteId });
if (renote == null) {
throw new ApiError(meta.errors.noSuchRenoteTarget);
2024-03-02 16:36:49 +00:00
} else if (isPureRenote(renote)) {
2023-09-22 19:05:42 +00:00
throw new ApiError(meta.errors.cannotReRenote);
}
2023-12-04 14:45:26 +00:00
if (renote.renoteId === ps.editId) {
throw new ApiError(meta.errors.cannotQuoteaQuoteOfCurrentPost);
}
2023-09-22 19:05:42 +00:00
// Check blocking
if (renote.userId !== me.id) {
2024-02-09 18:22:06 +00:00
const blockExist = await this.blockingsRepository.exists({
2023-09-22 19:05:42 +00:00
where: {
blockerId: renote.userId,
blockeeId: me.id,
},
});
if (blockExist) {
throw new ApiError(meta.errors.youHaveBeenBlocked);
}
}
2023-11-03 14:35:12 +00:00
2024-03-02 16:36:49 +00:00
if (renote.visibility === 'followers' && renote.userId !== me.id) {
// 他人のfollowers noteはreject
throw new ApiError(meta.errors.cannotRenoteDueToVisibility);
} else if (renote.visibility === 'specified') {
// specified / direct noteはreject
throw new ApiError(meta.errors.cannotRenoteDueToVisibility);
}
2023-11-03 14:35:12 +00:00
if (renote.channelId && renote.channelId !== ps.channelId) {
// チャンネルのノートに対しリノート要求がきたとき、チャンネル外へのリノート可否をチェック
// リートのユースケースのうち、チャンネル内→チャンネル外は少数だと考えられるため、JOINはせず必要な時に都度取得する
const renoteChannel = await this.channelsRepository.findOneById(renote.channelId);
if (renoteChannel == null) {
// リノートしたいノートが書き込まれているチャンネルが無い
throw new ApiError(meta.errors.noSuchChannel);
} else if (!renoteChannel.allowRenoteToExternal) {
// リノート作成のリクエストだが、対象チャンネルがリノート禁止だった場合
throw new ApiError(meta.errors.cannotRenoteOutsideOfChannel);
}
}
2023-09-22 19:05:42 +00:00
}
let reply: MiNote | null = null;
if (ps.replyId != null) {
// Fetch reply
reply = await this.notesRepository.findOneBy({ id: ps.replyId });
if (reply == null) {
throw new ApiError(meta.errors.noSuchReplyTarget);
2024-03-02 16:36:49 +00:00
} else if (isPureRenote(reply)) {
2023-09-22 19:05:42 +00:00
throw new ApiError(meta.errors.cannotReplyToPureRenote);
2024-03-02 16:36:49 +00:00
} else if (!await this.noteEntityService.isVisibleForMe(reply, me.id)) {
throw new ApiError(meta.errors.cannotReplyToInvisibleNote);
} else if (reply.visibility === 'specified' && ps.visibility !== 'specified') {
throw new ApiError(meta.errors.cannotReplyToSpecifiedVisibilityNoteWithExtendedVisibility);
2023-09-22 19:05:42 +00:00
}
// Check blocking
if (reply.userId !== me.id) {
2024-02-09 18:22:06 +00:00
const blockExist = await this.blockingsRepository.exists({
2023-09-22 19:05:42 +00:00
where: {
blockerId: reply.userId,
blockeeId: me.id,
},
});
if (blockExist) {
throw new ApiError(meta.errors.youHaveBeenBlocked);
}
}
}
if (ps.poll) {
if (typeof ps.poll.expiresAt === 'number') {
if (ps.poll.expiresAt < Date.now()) {
throw new ApiError(meta.errors.cannotCreateAlreadyExpiredPoll);
}
} else if (typeof ps.poll.expiredAfter === 'number') {
ps.poll.expiresAt = Date.now() + ps.poll.expiredAfter;
}
}
let channel: MiChannel | null = null;
if (ps.channelId != null) {
channel = await this.channelsRepository.findOneBy({ id: ps.channelId, isArchived: false });
if (channel == null) {
throw new ApiError(meta.errors.noSuchChannel);
}
}
try {
// 投稿を作成
const note = await this.noteEditService.edit(me, ps.editId!, {
files: files,
poll: ps.poll ? {
choices: ps.poll.choices,
multiple: ps.poll.multiple ?? false,
expiresAt: ps.poll.expiresAt ? new Date(ps.poll.expiresAt) : null,
} : undefined,
text: ps.text ?? undefined,
reply,
renote,
cw: ps.cw,
localOnly: ps.localOnly,
reactionAcceptance: ps.reactionAcceptance,
visibility: ps.visibility,
visibleUsers,
channel,
apMentions: ps.noExtractMentions ? [] : undefined,
apHashtags: ps.noExtractHashtags ? [] : undefined,
apEmojis: ps.noExtractEmojis ? [] : undefined,
});
2023-09-22 19:05:42 +00:00
return {
createdNote: await this.noteEntityService.pack(note, me),
};
} catch (e) {
// TODO: 他のErrorもここでキャッチしてエラーメッセージを当てるようにしたい
if (e instanceof IdentifiableError) {
2024-03-02 16:36:49 +00:00
if (e.id === '689ee33f-f97c-479a-ac49-1b9f8140af99') {
throw new ApiError(meta.errors.containsProhibitedWords);
} else if (e.id === '9f466dab-c856-48cd-9e65-ff90ff750580') {
throw new ApiError(meta.errors.containsTooManyMentions);
}
}
throw e;
}
2023-09-22 19:05:42 +00:00
});
}
2023-09-22 20:54:35 +00:00
}