2018-11-22 23:01:14 +00:00
|
|
|
import $ from 'cafy';
|
2019-04-07 12:50:36 +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-07 12:50:36 +00:00
|
|
|
import { Users } from '../../../../models';
|
2018-11-22 23:01:14 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定したユーザーのパスワードをリセットします。',
|
|
|
|
},
|
|
|
|
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2018-11-22 23:01:14 +00:00
|
|
|
requireCredential: true,
|
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象のユーザーID',
|
|
|
|
'en-US': 'The user ID which you want to suspend'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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-07 12:50:36 +00:00
|
|
|
await Users.update(user.id, {
|
|
|
|
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
|
|
|
};
|
|
|
|
});
|