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