2018-04-24 04:13:06 -05:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-04-07 12:30:37 -05:00
|
|
|
import Note, { pack } from '../../../../models/note';
|
2018-06-17 19:54:53 -05:00
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2018-04-07 12:30:37 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a note
|
|
|
|
*/
|
2018-07-05 12:58:29 -05:00
|
|
|
export default (params: any, user: ILocalUser) => 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');
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}));
|
|
|
|
});
|