2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-06-14 11:01:23 +02:00
|
|
|
import ms from 'ms';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2023-09-15 07:28:29 +02:00
|
|
|
import type { UsersRepository, NotesRepository } from '@/models/_.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { NoteDeleteService } from '@/core/NoteDeleteService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-24 00:15:16 +02:00
|
|
|
import { GetterService } from '@/server/api/GetterService.js';
|
2023-06-25 14:13:15 +02:00
|
|
|
import { ApiError } from '../../error.js';
|
2019-05-10 08:53:53 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['notes'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2019-05-10 08:53:53 +02:00
|
|
|
|
|
|
|
kind: 'write:notes',
|
|
|
|
|
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 300,
|
2021-12-09 15:58:30 +01:00
|
|
|
minInterval: ms('1sec'),
|
2019-05-10 08:53:53 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'efd4a259-2442-496b-8dd7-b255aa1a160f',
|
2019-05-10 08:53:53 +02:00
|
|
|
},
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2019-05-10 08:53:53 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['noteId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
2023-08-17 14:20:58 +02:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
@Inject(DI.notesRepository)
|
|
|
|
private notesRepository: NotesRepository,
|
|
|
|
|
|
|
|
private getterService: GetterService,
|
|
|
|
private noteDeleteService: NoteDeleteService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const note = await this.getterService.getNote(ps.noteId).catch(err => {
|
|
|
|
if (err.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
|
|
|
|
const renotes = await this.notesRepository.findBy({
|
|
|
|
userId: me.id,
|
|
|
|
renoteId: note.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
for (const note of renotes) {
|
|
|
|
this.noteDeleteService.delete(await this.usersRepository.findOneByOrFail({ id: me.id }), note);
|
|
|
|
}
|
|
|
|
});
|
2019-05-10 08:53:53 +02:00
|
|
|
}
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|