2018-04-07 19:30:37 +02:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-04-24 11:13:06 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-04-07 19:30:37 +02:00
|
|
|
import Note, { pack } from '../../../../models/note';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a note
|
|
|
|
*
|
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
|
|
|
*/
|
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
|
|
|
// Get 'noteId' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [noteId, noteIdErr] = $.type(ID).get(params.noteId);
|
2018-04-07 19:30:37 +02:00
|
|
|
if (noteIdErr) return rej('invalid noteId param');
|
|
|
|
|
|
|
|
// Get note
|
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: noteId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Serialize
|
|
|
|
res(await pack(note, user, {
|
|
|
|
detail: true
|
|
|
|
}));
|
|
|
|
});
|