2019-02-05 11:48:08 +09:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../../misc/cafy-id';
|
2018-03-29 20:32:18 +09:00
|
|
|
import Favorite from '../../../../../models/favorite';
|
2018-04-08 02:30:37 +09:00
|
|
|
import Note from '../../../../../models/note';
|
2018-11-02 13:47:44 +09:00
|
|
|
import define from '../../../define';
|
2019-02-22 11:46:58 +09:00
|
|
|
import { ApiError } from '../../../error';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
2018-10-22 05:16:27 +09:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
desc: {
|
2018-08-29 06:59:43 +09:00
|
|
|
'ja-JP': '指定した投稿のお気に入りを解除します。',
|
|
|
|
'en-US': 'Unfavorite a note.'
|
2018-07-17 04:36:44 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
2018-10-22 05:16:27 +09:00
|
|
|
kind: 'favorite-write',
|
|
|
|
|
|
|
|
params: {
|
2018-11-02 03:32:24 +09:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-10-22 05:16:27 +09:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID.'
|
|
|
|
}
|
2018-11-02 03:32:24 +09:00
|
|
|
}
|
2019-02-22 11:46:58 +09: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-22 05:16:27 +09:00
|
|
|
}
|
2018-07-17 04:36:44 +09:00
|
|
|
};
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
2017-03-04 04:28:38 +09:00
|
|
|
// Get favoritee
|
2018-04-08 02:30:37 +09:00
|
|
|
const note = await Note.findOne({
|
2018-10-22 05:16:27 +09:00
|
|
|
_id: ps.noteId
|
2017-03-04 04:28:38 +09:00
|
|
|
});
|
2017-02-27 16:50:36 +09:00
|
|
|
|
2018-04-08 02:30:37 +09:00
|
|
|
if (note === null) {
|
2019-02-22 11:46:58 +09:00
|
|
|
throw new ApiError(meta.errors.noSuchNote);
|
2017-03-04 04:28:38 +09:00
|
|
|
}
|
2017-02-27 16:50:36 +09:00
|
|
|
|
2017-03-04 04:28:38 +09:00
|
|
|
// if already favorited
|
|
|
|
const exist = await Favorite.findOne({
|
2018-04-08 02:30:37 +09:00
|
|
|
noteId: note._id,
|
2018-03-29 14:48:47 +09:00
|
|
|
userId: user._id
|
2017-03-04 04:28:38 +09:00
|
|
|
});
|
2017-02-27 16:50:36 +09:00
|
|
|
|
2017-03-04 04:28:38 +09:00
|
|
|
if (exist === null) {
|
2019-02-22 11:46:58 +09:00
|
|
|
throw new ApiError(meta.errors.notFavorited);
|
2017-03-04 04:28:38 +09:00
|
|
|
}
|
2017-02-27 16:50:36 +09:00
|
|
|
|
2017-03-04 04:28:38 +09:00
|
|
|
// Delete favorite
|
2018-03-29 14:48:47 +09:00
|
|
|
await Favorite.remove({
|
2017-03-04 04:28:38 +09:00
|
|
|
_id: exist._id
|
2016-12-29 07:49:51 +09:00
|
|
|
});
|
2017-03-04 04:28:38 +09:00
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
return;
|
|
|
|
});
|