2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-04-24 04:13:06 -05:00
|
|
|
import $ from 'cafy'; import ID from '../../../../../cafy-id';
|
2018-03-29 06:32:18 -05:00
|
|
|
import Favorite from '../../../../../models/favorite';
|
2018-04-07 12:30:37 -05:00
|
|
|
import Note from '../../../../../models/note';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
2018-04-07 12:30:37 -05:00
|
|
|
* Unfavorite a note
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
2017-03-03 13:28:38 -06:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2018-04-07 12:30:37 -05:00
|
|
|
// Get 'noteId' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [noteId, noteIdErr] = $.type(ID).get(params.noteId);
|
2018-04-07 12:30:37 -05:00
|
|
|
if (noteIdErr) return rej('invalid noteId param');
|
2017-03-03 13:28:38 -06:00
|
|
|
|
|
|
|
// Get favoritee
|
2018-04-07 12:30:37 -05:00
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: noteId
|
2017-03-03 13:28:38 -06:00
|
|
|
});
|
2017-02-27 01:50:36 -06:00
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
2017-03-03 13:28:38 -06:00
|
|
|
}
|
2017-02-27 01:50:36 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
// if already favorited
|
|
|
|
const exist = await Favorite.findOne({
|
2018-04-07 12:30:37 -05:00
|
|
|
noteId: note._id,
|
2018-03-29 00:48:47 -05:00
|
|
|
userId: user._id
|
2017-03-03 13:28:38 -06:00
|
|
|
});
|
2017-02-27 01:50:36 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
if (exist === null) {
|
|
|
|
return rej('already not favorited');
|
|
|
|
}
|
2017-02-27 01:50:36 -06:00
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
// Delete favorite
|
2018-03-29 00:48:47 -05:00
|
|
|
await Favorite.remove({
|
2017-03-03 13:28:38 -06:00
|
|
|
_id: exist._id
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
2017-03-03 13:28:38 -06:00
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
|
|
|
});
|