Sharkey/src/api/models/post-reaction.ts

49 lines
1.1 KiB
TypeScript
Raw Normal View History

2018-02-02 01:06:01 +02:00
import * as mongo from 'mongodb';
import deepcopy = require('deepcopy');
2017-03-19 21:24:19 +02:00
import db from '../../db/mongodb';
2018-02-02 01:06:01 +02:00
import Reaction from './post-reaction';
import { pack as packUser } from './user';
2017-03-19 21:24:19 +02:00
2018-02-02 01:06:01 +02:00
const PostReaction = db.get<IPostReaction>('post_reactions');
export default PostReaction;
export interface IPostReaction {
_id: mongo.ObjectID;
}
/**
* Pack a reaction for API response
*
* @param {any} reaction
* @param {any} me?
* @return {Promise<any>}
*/
export const pack = (
reaction: any,
me?: any
) => new Promise<any>(async (resolve, reject) => {
let _reaction: any;
// Populate the reaction if 'reaction' is ID
if (mongo.ObjectID.prototype.isPrototypeOf(reaction)) {
_reaction = await Reaction.findOne({
_id: reaction
});
} else if (typeof reaction === 'string') {
_reaction = await Reaction.findOne({
_id: new mongo.ObjectID(reaction)
});
} else {
_reaction = deepcopy(reaction);
}
// Rename _id to id
_reaction.id = _reaction._id;
delete _reaction._id;
// Populate user
_reaction.user = await packUser(_reaction.user_id, me);
resolve(_reaction);
});