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