2018-06-18 02:54:53 +02:00
|
|
|
import User, { pack, ILocalUser } from '../../../models/user';
|
|
|
|
import { IApp } from '../../../models/app';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show myself
|
|
|
|
*/
|
2018-07-05 19:58:29 +02:00
|
|
|
export default (params: any, user: ILocalUser, app: IApp) => new Promise(async (res, rej) => {
|
2018-04-11 10:40:01 +02:00
|
|
|
const isSecure = user != null && app == null;
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
// Serialize
|
2018-02-02 00:21:30 +01:00
|
|
|
res(await pack(user, user, {
|
2016-12-28 23:49:51 +01:00
|
|
|
detail: true,
|
|
|
|
includeSecrets: isSecure
|
|
|
|
}));
|
2017-03-11 23:23:13 +01:00
|
|
|
|
|
|
|
// Update lastUsedAt
|
|
|
|
User.update({ _id: user._id }, {
|
|
|
|
$set: {
|
2018-04-07 20:58:11 +02:00
|
|
|
lastUsedAt: new Date()
|
2017-03-11 23:23:13 +01:00
|
|
|
}
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|