jormungandr-bite/src/models/auth-session.ts

50 lines
980 B
TypeScript
Raw Normal View History

2018-02-01 16:06:01 -07:00
import * as mongo from 'mongodb';
2018-06-17 18:54:53 -06:00
const deepcopy = require('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-02-01 16:06:01 -07:00
import { pack as packApp } from './app';
2017-01-16 17:12:33 -07:00
2018-03-28 23:48:47 -06:00
const AuthSession = db.get<IAuthSession>('authSessions');
2018-02-01 16:06:01 -07:00
export default AuthSession;
export interface IAuthSession {
_id: mongo.ObjectID;
2018-03-28 23:48:47 -06:00
createdAt: Date;
appId: mongo.ObjectID;
userId: mongo.ObjectID;
token: string;
2018-02-01 16:06:01 -07:00
}
/**
* Pack an auth session for API response
*
* @param {any} session
* @param {any} me?
* @return {Promise<any>}
*/
export const pack = (
session: any,
me?: any
) => new Promise<any>(async (resolve, reject) => {
let _session: any;
// TODO: Populate session if it ID
_session = deepcopy(session);
// Me
2018-10-15 20:38:09 -06:00
if (me && !isObjectId(me)) {
2018-02-01 16:06:01 -07:00
if (typeof me === 'string') {
me = new mongo.ObjectID(me);
} else {
me = me._id;
}
}
delete _session._id;
// Populate app
2018-03-28 23:48:47 -06:00
_session.app = await packApp(_session.appId, me);
2018-02-01 16:06:01 -07:00
resolve(_session);
});