2019-02-04 19:48:08 -07:00
|
|
|
import $ from 'cafy';
|
2019-04-07 06:50:36 -06:00
|
|
|
import { ID } from '../../../../../misc/cafy-id';
|
2018-11-01 22:47:44 -06:00
|
|
|
import define from '../../../define';
|
2019-02-21 19:46:58 -07:00
|
|
|
import { ApiError } from '../../../error';
|
2019-02-21 22:53:03 -07:00
|
|
|
import { getNote } from '../../../common/getters';
|
2019-04-07 06:50:36 -06:00
|
|
|
import { NoteFavorites } from '../../../../../models';
|
|
|
|
import { genId } from '../../../../../misc/gen-id';
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-07-16 13:36:44 -06:00
|
|
|
export const meta = {
|
2018-10-21 14:16:27 -06:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-07-16 13:36:44 -06:00
|
|
|
desc: {
|
2018-08-28 15:59:43 -06:00
|
|
|
'ja-JP': '指定した投稿をお気に入りに登録します。',
|
|
|
|
'en-US': 'Favorite a note.'
|
2018-07-16 13:36:44 -06:00
|
|
|
},
|
|
|
|
|
2019-02-22 19:20:58 -07:00
|
|
|
tags: ['favorites'],
|
|
|
|
|
2018-07-16 13:36:44 -06:00
|
|
|
requireCredential: true,
|
|
|
|
|
2018-09-24 01:26:12 -06:00
|
|
|
kind: 'favorite-write',
|
|
|
|
|
|
|
|
params: {
|
2018-11-01 12:32:24 -06:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
2018-09-24 01:26:12 -06:00
|
|
|
desc: {
|
2018-10-21 14:16:27 -06:00
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID.'
|
2018-09-24 01:26:12 -06:00
|
|
|
}
|
2018-11-01 12:32:24 -06:00
|
|
|
}
|
2019-02-21 19:46:58 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
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'
|
|
|
|
},
|
2018-09-24 01:26:12 -06:00
|
|
|
}
|
2018-07-16 13:36:44 -06:00
|
|
|
};
|
|
|
|
|
2019-02-21 19:46:58 -07:00
|
|
|
export default define(meta, async (ps, user) => {
|
2017-03-03 12:28:38 -07:00
|
|
|
// Get favoritee
|
2019-02-21 22:53:03 -07:00
|
|
|
const note = await getNote(ps.noteId).catch(e => {
|
|
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
2017-03-03 12:28:38 -07:00
|
|
|
});
|
2017-02-27 00:50:36 -07:00
|
|
|
|
2017-03-03 12:28:38 -07:00
|
|
|
// if already favorited
|
2019-04-07 06:50:36 -06:00
|
|
|
const exist = await NoteFavorites.findOne({
|
|
|
|
noteId: note.id,
|
|
|
|
userId: user.id
|
2017-03-03 12:28:38 -07:00
|
|
|
});
|
2017-02-27 00:50:36 -07:00
|
|
|
|
2019-04-07 06:50:36 -06:00
|
|
|
if (exist != null) {
|
2019-02-21 19:46:58 -07:00
|
|
|
throw new ApiError(meta.errors.alreadyFavorited);
|
2017-03-03 12:28:38 -07:00
|
|
|
}
|
2017-02-27 00:50:36 -07:00
|
|
|
|
2017-03-03 12:28:38 -07:00
|
|
|
// Create favorite
|
2019-04-07 06:50:36 -06:00
|
|
|
await NoteFavorites.save({
|
|
|
|
id: genId(),
|
2018-03-28 23:48:47 -06:00
|
|
|
createdAt: new Date(),
|
2019-04-07 06:50:36 -06:00
|
|
|
noteId: note.id,
|
|
|
|
userId: user.id
|
2016-12-28 15:49:51 -07:00
|
|
|
});
|
2019-02-21 19:46:58 -07:00
|
|
|
});
|