2021-08-19 07:55:45 -05:00
|
|
|
import define from '../../define';
|
|
|
|
import { Users } from '@/models/index';
|
2018-11-22 17:01:14 -06:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2018-11-22 17:01:14 -06:00
|
|
|
requireModerator: true,
|
|
|
|
|
2021-03-06 07:34:11 -06:00
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
nullable: false, optional: false,
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2018-11-22 17:01:14 -06:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} 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, me) => {
|
2019-04-07 07:50:36 -05:00
|
|
|
const user = await Users.findOne(ps.userId as string);
|
2018-11-22 17:01:14 -06:00
|
|
|
|
|
|
|
if (user == null) {
|
2019-02-21 20:46:58 -06:00
|
|
|
throw new Error('user not found');
|
2018-11-22 17:01:14 -06:00
|
|
|
}
|
|
|
|
|
2020-02-18 02:53:56 -06:00
|
|
|
if ((me.isModerator && !me.isAdmin) && user.isAdmin) {
|
2019-02-21 20:46:58 -06:00
|
|
|
throw new Error('cannot show info of admin');
|
2018-11-22 17:01:14 -06:00
|
|
|
}
|
|
|
|
|
2020-08-09 11:32:27 -05:00
|
|
|
return {
|
|
|
|
...user,
|
|
|
|
token: user.token != null ? '<MASKED>' : user.token,
|
|
|
|
};
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|