jormungandr-bite/src/server/api/endpoints/notes/favorites/create.ts
2019-05-17 00:19:23 +09:00

72 lines
1.5 KiB
TypeScript

import $ from 'cafy';
import { ID } from '../../../../../misc/cafy-id';
import define from '../../../define';
import { ApiError } from '../../../error';
import { getNote } from '../../../common/getters';
import { NoteFavorites } from '../../../../../models';
import { genId } from '../../../../../misc/gen-id';
export const meta = {
stability: 'stable',
desc: {
'ja-JP': '指定した投稿をお気に入りに登録します。',
'en-US': 'Favorite a note.'
},
tags: ['notes', 'favorites'],
requireCredential: true,
kind: 'write:favorites',
params: {
noteId: {
validator: $.type(ID),
desc: {
'ja-JP': '対象の投稿のID',
'en-US': 'Target note ID.'
}
}
},
errors: {
noSuchNote: {
message: 'No such note.',
code: 'NO_SUCH_NOTE',
id: '6dd26674-e060-4816-909a-45ba3f4da458'
},
alreadyFavorited: {
message: 'The note has already been marked as a favorite.',
code: 'ALREADY_FAVORITED',
id: 'a402c12b-34dd-41d2-97d8-4d2ffd96a1a6'
},
}
};
export default define(meta, async (ps, user) => {
// Get favoritee
const note = await getNote(ps.noteId).catch(e => {
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
throw e;
});
// if already favorited
const exist = await NoteFavorites.findOne({
noteId: note.id,
userId: user.id
});
if (exist != null) {
throw new ApiError(meta.errors.alreadyFavorited);
}
// Create favorite
await NoteFavorites.save({
id: genId(),
createdAt: new Date(),
noteId: note.id,
userId: user.id
});
});