diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-02 08:06:01 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-02 08:06:01 +0900 |
| commit | 9a282e37be5ba847718d198d30eb97f31d11f2a0 (patch) | |
| tree | 9e1f6bda799ca3f6cc6b489a96751cb5b48f170b /src/api/models/auth-session.ts | |
| parent | Update dependencies :rocket: (diff) | |
| download | sharkey-9a282e37be5ba847718d198d30eb97f31d11f2a0.tar.gz sharkey-9a282e37be5ba847718d198d30eb97f31d11f2a0.tar.bz2 sharkey-9a282e37be5ba847718d198d30eb97f31d11f2a0.zip | |
wip
Diffstat (limited to 'src/api/models/auth-session.ts')
| -rw-r--r-- | src/api/models/auth-session.ts | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/src/api/models/auth-session.ts b/src/api/models/auth-session.ts index b264a133e9..997ec61c20 100644 --- a/src/api/models/auth-session.ts +++ b/src/api/models/auth-session.ts @@ -1,3 +1,45 @@ +import * as mongo from 'mongodb'; +import deepcopy = require('deepcopy'); import db from '../../db/mongodb'; +import { pack as packApp } from './app'; -export default db.get('auth_sessions') as any; // fuck type definition +const AuthSession = db.get('auth_sessions'); +export default AuthSession; + +export interface IAuthSession { + _id: mongo.ObjectID; +} + +/** + * 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 + if (me && !mongo.ObjectID.prototype.isPrototypeOf(me)) { + if (typeof me === 'string') { + me = new mongo.ObjectID(me); + } else { + me = me._id; + } + } + + delete _session._id; + + // Populate app + _session.app = await packApp(_session.app_id, me); + + resolve(_session); +}); |