2018-11-02 05:47:44 +01:00
|
|
|
import define from '../define';
|
2021-01-11 12:38:34 +01:00
|
|
|
import { RegistryItems, UserProfiles, Users } from '../../../models';
|
|
|
|
import { ensure } from '../../../prelude/ensure';
|
|
|
|
import { genId } from '../../../misc/gen-id';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-15 23:19:19 +02:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '自分のアカウント情報を取得します。'
|
2018-07-15 23:19:19 +02:00
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['account'],
|
|
|
|
|
2020-02-15 13:33:32 +01:00
|
|
|
requireCredential: true as const,
|
2018-07-15 23:19:19 +02:00
|
|
|
|
2018-07-16 20:57:34 +02:00
|
|
|
params: {},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
ref: 'User',
|
|
|
|
},
|
2018-07-15 23:19:19 +02:00
|
|
|
};
|
|
|
|
|
2020-03-28 10:07:41 +01:00
|
|
|
export default define(meta, async (ps, user, token) => {
|
|
|
|
const isSecure = token == null;
|
|
|
|
|
2021-01-11 12:38:34 +01:00
|
|
|
// TODO: そのうち消す
|
|
|
|
const profile = await UserProfiles.findOne(user.id).then(ensure);
|
|
|
|
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 14:50:36 +02:00
|
|
|
return await Users.pack(user, user, {
|
2016-12-28 23:49:51 +01:00
|
|
|
detail: true,
|
|
|
|
includeSecrets: isSecure
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|
|
|
|
});
|