2018-11-22 23:01:14 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
2018-11-22 23:01:14 +00:00
|
|
|
import * as bcrypt from 'bcryptjs';
|
|
|
|
import rndstr from 'rndstr';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { Users, UserProfiles } from '@/models/index';
|
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,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
properties: {
|
|
|
|
password: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
minLength: 8,
|
2021-12-09 14:58:30 +00:00
|
|
|
maxLength: 8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-11-22 23:01:14 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
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({
|
2021-12-09 14:58:30 +00:00
|
|
|
userId: user.id,
|
2019-04-10 06:04:27 +00:00
|
|
|
}, {
|
2021-12-09 14:58:30 +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 {
|
2021-12-09 14:58:30 +00:00
|
|
|
password: passwd,
|
2019-02-22 02:46:58 +00:00
|
|
|
};
|
|
|
|
});
|