Sharkey/src/models/reversi-matching.ts

45 lines
1 KiB
TypeScript
Raw Normal View History

2018-03-07 02:40:40 +00:00
import * as mongo from 'mongodb';
2018-06-18 00:54:53 +00:00
const deepcopy = require('deepcopy');
2018-03-29 11:32:18 +00:00
import db from '../db/mongodb';
2018-03-07 08:48:32 +00:00
import { IUser, pack as packUser } from './user';
2018-03-07 02:40:40 +00:00
2018-06-16 23:10:54 +00:00
const Matching = db.get<IMatching>('reversiMatchings');
2018-03-07 02:40:40 +00:00
export default Matching;
export interface IMatching {
_id: mongo.ObjectID;
2018-03-29 05:48:47 +00:00
createdAt: Date;
parentId: mongo.ObjectID;
childId: mongo.ObjectID;
2018-03-07 02:40:40 +00:00
}
2018-03-07 08:48:32 +00:00
/**
2018-06-16 23:10:54 +00:00
* Pack an reversi matching for API response
2018-03-07 08:48:32 +00:00
*/
export const pack = (
matching: any,
me?: string | mongo.ObjectID | IUser
) => new Promise<any>(async (resolve, reject) => {
// Me
const meId: mongo.ObjectID = me
? mongo.ObjectID.prototype.isPrototypeOf(me)
? me as mongo.ObjectID
: typeof me === 'string'
? new mongo.ObjectID(me)
: (me as IUser)._id
: null;
const _matching = deepcopy(matching);
2018-03-11 09:08:26 +00:00
// Rename _id to id
_matching.id = _matching._id;
2018-03-07 08:48:32 +00:00
delete _matching._id;
// Populate user
2018-03-29 05:48:47 +00:00
_matching.parent = await packUser(_matching.parentId, meId);
_matching.child = await packUser(_matching.childId, meId);
2018-03-07 08:48:32 +00:00
resolve(_matching);
});