jormungandr-bite/src/models/note-reaction.ts

67 lines
1.4 KiB
TypeScript
Raw Normal View History

2018-02-01 16:06:01 -07:00
import * as mongo from 'mongodb';
2018-04-27 04:12:15 -06:00
import $ from 'cafy';
import * as deepcopy from 'deepcopy';
2018-03-29 05:32:18 -06:00
import db from '../db/mongodb';
2018-10-15 20:38:09 -06:00
import isObjectId from '../misc/is-objectid';
2018-04-07 11:30:37 -06:00
import Reaction from './note-reaction';
2018-02-01 16:06:01 -07:00
import { pack as packUser } from './user';
2017-03-19 13:24:19 -06:00
2018-04-07 11:30:37 -06:00
const NoteReaction = db.get<INoteReaction>('noteReactions');
2018-10-28 06:41:39 -06:00
NoteReaction.createIndex('noteId');
NoteReaction.createIndex('userId');
2018-04-07 11:30:37 -06:00
NoteReaction.createIndex(['userId', 'noteId'], { unique: true });
export default NoteReaction;
2018-02-01 16:06:01 -07:00
2018-04-07 11:30:37 -06:00
export interface INoteReaction {
2018-02-01 16:06:01 -07:00
_id: mongo.ObjectID;
2018-03-28 23:48:47 -06:00
createdAt: Date;
2018-04-07 11:30:37 -06:00
noteId: mongo.ObjectID;
2018-03-28 23:48:47 -06:00
userId: mongo.ObjectID;
2018-02-03 22:52:33 -07:00
reaction: string;
2018-02-01 16:06:01 -07:00
}
2018-05-02 03:06:16 -06:00
export const validateReaction = $.str.or([
'like',
'love',
'laugh',
'hmm',
'surprise',
'congrats',
'angry',
'confused',
2018-08-11 06:08:34 -06:00
'rip',
'pudding'
]);
2018-02-01 16:06:01 -07:00
/**
* Pack a reaction for API response
*/
export const pack = (
reaction: any,
me?: any
) => new Promise<any>(async (resolve, reject) => {
let _reaction: any;
// Populate the reaction if 'reaction' is ID
2018-10-15 20:38:09 -06:00
if (isObjectId(reaction)) {
2018-02-01 16:06:01 -07:00
_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
2018-03-28 23:48:47 -06:00
_reaction.user = await packUser(_reaction.userId, me);
2018-02-01 16:06:01 -07:00
resolve(_reaction);
});