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