2018-11-01 23:47:44 -05:00
|
|
|
import define from '../define';
|
2021-01-11 05:38:34 -06:00
|
|
|
import { RegistryItems, UserProfiles, Users } from '../../../models';
|
|
|
|
import { genId } from '../../../misc/gen-id';
|
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
|
|
|
},
|
|
|
|
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['account'],
|
|
|
|
|
2020-02-15 06:33:32 -06:00
|
|
|
requireCredential: true as const,
|
2018-07-15 16:19:19 -05:00
|
|
|
|
2018-07-16 13:57:34 -05:00
|
|
|
params: {},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
ref: 'User',
|
|
|
|
},
|
2018-07-15 16:19:19 -05:00
|
|
|
};
|
|
|
|
|
2020-03-28 04:07:41 -05:00
|
|
|
export default define(meta, async (ps, user, token) => {
|
|
|
|
const isSecure = token == null;
|
|
|
|
|
2021-01-11 05:38:34 -06:00
|
|
|
// TODO: そのうち消す
|
2021-02-13 00:33:38 -06:00
|
|
|
const profile = await UserProfiles.findOneOrFail(user.id);
|
2021-01-11 05:38:34 -06:00
|
|
|
for (const [k, v] of Object.entries(profile.clientData)) {
|
|
|
|
await RegistryItems.insert({
|
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
updatedAt: new Date(),
|
|
|
|
userId: user.id,
|
|
|
|
domain: null,
|
|
|
|
scope: ['client', 'base'],
|
|
|
|
key: k,
|
|
|
|
value: v
|
|
|
|
});
|
|
|
|
}
|
|
|
|
await UserProfiles.createQueryBuilder().update()
|
|
|
|
.set({
|
|
|
|
clientData: {},
|
|
|
|
})
|
|
|
|
.where('userId = :id', { id: user.id })
|
|
|
|
.execute();
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
return await Users.pack(user, user, {
|
2016-12-28 16:49:51 -06:00
|
|
|
detail: true,
|
|
|
|
includeSecrets: isSecure
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|
|
|
|
});
|