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