2019-02-04 19:48:08 -07:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../../misc/cafy-id';
|
2018-03-29 05:32:18 -06:00
|
|
|
import Favorite from '../../../../../models/favorite';
|
2018-04-07 11:30:37 -06:00
|
|
|
import Note from '../../../../../models/note';
|
2018-11-01 22:47:44 -06:00
|
|
|
import define from '../../../define';
|
2019-02-21 19:46:58 -07:00
|
|
|
import { ApiError } from '../../../error';
|
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': 'Unfavorite a note.'
|
2018-07-16 13:36:44 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
2018-10-21 14:16:27 -06:00
|
|
|
kind: 'favorite-write',
|
|
|
|
|
|
|
|
params: {
|
2018-11-01 12:32:24 -06:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-10-21 14:16:27 -06:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID.'
|
|
|
|
}
|
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: '80848a2c-398f-4343-baa9-df1d57696c56'
|
|
|
|
},
|
|
|
|
|
|
|
|
notFavorited: {
|
|
|
|
message: 'You have not marked that note a favorite.',
|
|
|
|
code: 'NOT_FAVORITED',
|
|
|
|
id: 'b625fc69-635e-45e9-86f4-dbefbef35af5'
|
|
|
|
},
|
2018-10-21 14:16:27 -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
|
2018-04-07 11:30:37 -06:00
|
|
|
const note = await Note.findOne({
|
2018-10-21 14:16:27 -06:00
|
|
|
_id: ps.noteId
|
2017-03-03 12:28:38 -07:00
|
|
|
});
|
2017-02-27 00:50:36 -07:00
|
|
|
|
2018-04-07 11:30:37 -06:00
|
|
|
if (note === null) {
|
2019-02-21 19:46:58 -07:00
|
|
|
throw new ApiError(meta.errors.noSuchNote);
|
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
|
|
|
|
const exist = await Favorite.findOne({
|
2018-04-07 11:30:37 -06:00
|
|
|
noteId: note._id,
|
2018-03-28 23:48:47 -06:00
|
|
|
userId: user._id
|
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 (exist === null) {
|
2019-02-21 19:46:58 -07:00
|
|
|
throw new ApiError(meta.errors.notFavorited);
|
2017-03-03 12:28:38 -07:00
|
|
|
}
|
2017-02-27 00:50:36 -07:00
|
|
|
|
2017-03-03 12:28:38 -07:00
|
|
|
// Delete favorite
|
2018-03-28 23:48:47 -06:00
|
|
|
await Favorite.remove({
|
2017-03-03 12:28:38 -07:00
|
|
|
_id: exist._id
|
2016-12-28 15:49:51 -07:00
|
|
|
});
|
2017-03-03 12:28:38 -07:00
|
|
|
|
2019-02-21 19:46:58 -07:00
|
|
|
return;
|
|
|
|
});
|