2018-06-17 17:54:53 -07:00
|
|
|
import User, { pack, ILocalUser } from '../../../models/user';
|
|
|
|
import { IApp } from '../../../models/app';
|
2016-12-28 14:49:51 -08:00
|
|
|
|
2018-07-15 14:19:19 -07:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
ja: '自分のアカウント情報を取得します。'
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
params: {}
|
|
|
|
};
|
|
|
|
|
2018-07-05 10:58:29 -07:00
|
|
|
export default (params: any, user: ILocalUser, app: IApp) => new Promise(async (res, rej) => {
|
2018-04-11 01:40:01 -07:00
|
|
|
const isSecure = user != null && app == null;
|
|
|
|
|
2016-12-28 14:49:51 -08:00
|
|
|
// Serialize
|
2018-02-01 15:21:30 -08:00
|
|
|
res(await pack(user, user, {
|
2016-12-28 14:49:51 -08:00
|
|
|
detail: true,
|
|
|
|
includeSecrets: isSecure
|
|
|
|
}));
|
2017-03-11 14:23:13 -08:00
|
|
|
|
|
|
|
// Update lastUsedAt
|
|
|
|
User.update({ _id: user._id }, {
|
|
|
|
$set: {
|
2018-04-07 11:58:11 -07:00
|
|
|
lastUsedAt: new Date()
|
2017-03-11 14:23:13 -08:00
|
|
|
}
|
|
|
|
});
|
2016-12-28 14:49:51 -08:00
|
|
|
});
|