2022-06-14 04:01:23 -05:00
|
|
|
import ms from 'ms';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 15:33:11 -05:00
|
|
|
import type { UsersRepository, NotesRepository } from '@/models/index.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { NoteDeleteService } from '@/core/NoteDeleteService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-26 20:07:39 -06:00
|
|
|
import { ApiError } from '../../error.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { GetterService } from '../../common/GetterService.js';
|
2019-05-10 01:53:53 -05:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['notes'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2019-05-10 01:53:53 -05:00
|
|
|
|
|
|
|
kind: 'write:notes',
|
|
|
|
|
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 300,
|
2021-12-09 08:58:30 -06:00
|
|
|
minInterval: ms('1sec'),
|
2019-05-10 01:53:53 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: 'efd4a259-2442-496b-8dd7-b255aa1a160f',
|
2019-05-10 01:53:53 -05:00
|
|
|
},
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2019-05-10 01:53:53 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['noteId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 13:27:08 -05:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
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 01:53:53 -05:00
|
|
|
}
|
2022-09-17 13:27:08 -05:00
|
|
|
}
|