2022-06-03 14:14:50 +00:00
|
|
|
import { Signins, UserProfiles, Users } from '@/models/index.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import define from '../../define.js';
|
2018-11-22 23:01:14 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2018-11-22 23:01:14 +00:00
|
|
|
requireModerator: true,
|
|
|
|
|
2021-03-06 13:34:11 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
nullable: false, optional: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-11-22 23:01:14 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2022-06-03 14:14:50 +00:00
|
|
|
const [user, profile] = await Promise.all([
|
|
|
|
Users.findOneBy({ id: ps.userId }),
|
2022-07-02 03:22:52 +00:00
|
|
|
UserProfiles.findOneBy({ userId: ps.userId }),
|
2022-06-03 14:14:50 +00:00
|
|
|
]);
|
2018-11-22 23:01:14 +00:00
|
|
|
|
2022-06-03 14:14:50 +00:00
|
|
|
if (user == null || profile == null) {
|
2019-02-22 02:46:58 +00:00
|
|
|
throw new Error('user not found');
|
2018-11-22 23:01:14 +00:00
|
|
|
}
|
|
|
|
|
2022-03-26 06:34:00 +00:00
|
|
|
const _me = await Users.findOneByOrFail({ id: me.id });
|
2022-03-25 07:27:41 +00:00
|
|
|
if ((_me.isModerator && !_me.isAdmin) && user.isAdmin) {
|
2019-02-22 02:46:58 +00:00
|
|
|
throw new Error('cannot show info of admin');
|
2018-11-22 23:01:14 +00:00
|
|
|
}
|
|
|
|
|
2022-06-03 14:14:50 +00:00
|
|
|
if (!_me.isAdmin) {
|
|
|
|
return {
|
|
|
|
isModerator: user.isModerator,
|
|
|
|
isSilenced: user.isSilenced,
|
|
|
|
isSuspended: user.isSuspended,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const maskedKeys = ['accessToken', 'accessTokenSecret', 'refreshToken'];
|
|
|
|
Object.keys(profile.integrations).forEach(integration => {
|
|
|
|
maskedKeys.forEach(key => profile.integrations[integration][key] = '<MASKED>');
|
|
|
|
});
|
|
|
|
|
|
|
|
const signins = await Signins.findBy({ userId: user.id });
|
|
|
|
|
2020-08-09 16:32:27 +00:00
|
|
|
return {
|
2022-06-03 14:14:50 +00:00
|
|
|
email: profile.email,
|
|
|
|
emailVerified: profile.emailVerified,
|
|
|
|
autoAcceptFollowed: profile.autoAcceptFollowed,
|
|
|
|
noCrawle: profile.noCrawle,
|
|
|
|
alwaysMarkNsfw: profile.alwaysMarkNsfw,
|
|
|
|
carefulBot: profile.carefulBot,
|
|
|
|
injectFeaturedNote: profile.injectFeaturedNote,
|
|
|
|
receiveAnnouncementEmail: profile.receiveAnnouncementEmail,
|
|
|
|
integrations: profile.integrations,
|
|
|
|
mutedWords: profile.mutedWords,
|
|
|
|
mutedInstances: profile.mutedInstances,
|
|
|
|
mutingNotificationTypes: profile.mutingNotificationTypes,
|
|
|
|
isModerator: user.isModerator,
|
|
|
|
isSilenced: user.isSilenced,
|
|
|
|
isSuspended: user.isSuspended,
|
2022-07-02 03:22:52 +00:00
|
|
|
lastActiveDate: user.lastActiveDate,
|
2022-07-02 15:15:03 +00:00
|
|
|
moderationNote: profile.moderationNote,
|
2022-06-03 14:14:50 +00:00
|
|
|
signins,
|
2020-08-09 16:32:27 +00:00
|
|
|
};
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|