iceshrimp-legacy/packages/backend/src/server/api/endpoints/notes/unrenote.ts

54 lines
1.1 KiB
TypeScript
Raw Normal View History

2019-05-10 08:53:53 +02:00
import $ from 'cafy';
import { ID } from '@/misc/cafy-id';
import deleteNote from '@/services/note/delete';
import define from '../../define';
2021-11-12 11:47:04 +01:00
import ms from 'ms';
import { getNote } from '../../common/getters';
import { ApiError } from '../../error';
import { Notes, Users } from '@/models/index';
2019-05-10 08:53:53 +02:00
export const meta = {
tags: ['notes'],
2020-02-15 13:33:32 +01:00
requireCredential: true as const,
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
},
params: {
noteId: {
validator: $.type(ID),
2021-12-09 15:58:30 +01:00
},
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
},
2019-05-10 08:53:53 +02:00
};
2022-01-02 18:12:50 +01:00
// eslint-disable-next-line import/no-default-export
2019-05-10 08:53:53 +02:00
export default define(meta, async (ps, user) => {
const note = await getNote(ps.noteId).catch(e => {
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
throw e;
});
const renotes = await Notes.find({
userId: user.id,
2021-12-09 15:58:30 +01:00
renoteId: note.id,
2019-05-10 08:53:53 +02:00
});
for (const note of renotes) {
deleteNote(await Users.findOneOrFail(user.id), note);
2019-05-10 08:53:53 +02:00
}
});