2018-11-22 23:01:14 +00:00
|
|
|
import $ from 'cafy';
|
2021-03-23 08:43:07 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
2018-11-22 23:01:14 +00:00
|
|
|
import define from '../../define';
|
|
|
|
import * as bcrypt from 'bcryptjs';
|
|
|
|
import rndstr from 'rndstr';
|
2019-04-10 06:04:27 +00:00
|
|
|
import { Users, UserProfiles } from '../../../../models';
|
2018-11-22 23:01:14 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2018-11-22 23:01:14 +00:00
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
password: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
minLength: 8,
|
|
|
|
maxLength: 8
|
|
|
|
}
|
|
|
|
}
|
2018-11-22 23:01:14 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps) => {
|
2019-04-07 12:50:36 +00:00
|
|
|
const user = await Users.findOne(ps.userId as string);
|
2018-11-22 23:01:14 +00:00
|
|
|
|
|
|
|
if (user == null) {
|
2019-02-22 02:46:58 +00:00
|
|
|
throw new Error('user not found');
|
2018-11-22 23:01:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (user.isAdmin) {
|
2019-02-22 02:46:58 +00:00
|
|
|
throw new Error('cannot reset password of admin');
|
2018-11-22 23:01:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const passwd = rndstr('a-zA-Z0-9', 8);
|
|
|
|
|
|
|
|
// Generate hash of password
|
|
|
|
const hash = bcrypt.hashSync(passwd);
|
|
|
|
|
2019-04-10 06:04:27 +00:00
|
|
|
await UserProfiles.update({
|
|
|
|
userId: user.id
|
|
|
|
}, {
|
2019-04-07 12:50:36 +00:00
|
|
|
password: hash
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|
2018-11-22 23:01:14 +00:00
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
return {
|
2018-11-22 23:01:14 +00:00
|
|
|
password: passwd
|
2019-02-22 02:46:58 +00:00
|
|
|
};
|
|
|
|
});
|