2021-08-19 07:55:45 -05:00
|
|
|
import define from '../define';
|
|
|
|
import { Users } from '@/models/index';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-07-15 16:19:19 -05:00
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['account'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2018-07-15 16:19:19 -05:00
|
|
|
|
2018-07-16 13:57:34 -05:00
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'MeDetailed',
|
2019-04-23 08:35:26 -05:00
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2018-07-15 16:19:19 -05:00
|
|
|
|
2022-02-18 23:05:32 -06:00
|
|
|
const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps, user, token) => {
|
2020-03-28 04:07:41 -05:00
|
|
|
const isSecure = token == null;
|
|
|
|
|
2021-03-20 01:42:02 -05:00
|
|
|
// ここで渡ってきている user はキャッシュされていて古い可能性もあるので id だけ渡す
|
2022-01-18 07:27:10 -06:00
|
|
|
return await Users.pack<true, true>(user.id, user, {
|
2016-12-28 16:49:51 -06:00
|
|
|
detail: true,
|
2021-12-09 08:58:30 -06:00
|
|
|
includeSecrets: isSecure,
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|
|
|
|
});
|