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