Sharkey/src/server/api/endpoints/notes/unrenote.ts

53 lines
1.1 KiB
TypeScript
Raw Normal View History

2019-05-10 09:53:53 +03:00
import $ from 'cafy';
import { ID } from '@/misc/cafy-id.js';
import deleteNote from '@/services/note/delete.js';
import define from '../../define.js';
2019-05-10 09:53:53 +03:00
import * as ms from 'ms';
import { getNote } from '../../common/getters.js';
import { ApiError } from '../../error.js';
import { Notes, Users } from '@/models/index.js';
2019-05-10 09:53:53 +03:00
export const meta = {
tags: ['notes'],
2020-02-15 14:33:32 +02:00
requireCredential: true as const,
2019-05-10 09:53:53 +03:00
kind: 'write:notes',
limit: {
duration: ms('1hour'),
max: 300,
minInterval: ms('1sec')
},
params: {
noteId: {
validator: $.type(ID),
}
},
errors: {
noSuchNote: {
message: 'No such note.',
code: 'NO_SUCH_NOTE',
id: 'efd4a259-2442-496b-8dd7-b255aa1a160f'
},
}
};
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,
renoteId: note.id
});
for (const note of renotes) {
deleteNote(await Users.findOneOrFail(user.id), note);
2019-05-10 09:53:53 +03:00
}
});