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