2021-08-09 01:34:44 -04:00
|
|
|
const { BeanModel } = require("redbean-node/dist/bean-model");
|
|
|
|
const passwordHash = require("../password-hash");
|
|
|
|
const { R } = require("redbean-node");
|
2023-10-08 19:01:54 -04:00
|
|
|
const jwt = require("jsonwebtoken");
|
|
|
|
const { shake256, SHAKE256_LENGTH } = require("../util-server");
|
2021-08-09 01:34:44 -04:00
|
|
|
|
|
|
|
class User extends BeanModel {
|
|
|
|
/**
|
2022-04-21 13:30:04 -04:00
|
|
|
* Reset user password
|
2022-04-18 03:21:58 -04:00
|
|
|
* Fix #1510, as in the context reset-password.js, there is no auto model mapping. Call this static function instead.
|
2022-04-21 13:30:04 -04:00
|
|
|
* @param {number} userID ID of user to update
|
2023-08-11 03:46:41 -04:00
|
|
|
* @param {string} newPassword Users new password
|
2021-08-09 01:34:44 -04:00
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
2022-04-18 03:21:58 -04:00
|
|
|
static async resetPassword(userID, newPassword) {
|
2021-08-09 01:34:44 -04:00
|
|
|
await R.exec("UPDATE `user` SET password = ? WHERE id = ? ", [
|
|
|
|
passwordHash.generate(newPassword),
|
2022-04-18 03:21:58 -04:00
|
|
|
userID
|
2021-08-09 01:34:44 -04:00
|
|
|
]);
|
2022-04-18 03:21:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-04-21 13:30:04 -04:00
|
|
|
* Reset this users password
|
2023-08-11 03:46:41 -04:00
|
|
|
* @param {string} newPassword Users new password
|
2022-04-18 03:21:58 -04:00
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
|
|
|
async resetPassword(newPassword) {
|
|
|
|
await User.resetPassword(this.id, newPassword);
|
2021-08-09 01:34:44 -04:00
|
|
|
this.password = newPassword;
|
|
|
|
}
|
2022-04-18 03:21:58 -04:00
|
|
|
|
2023-10-08 19:01:54 -04:00
|
|
|
/**
|
|
|
|
* Create a new JWT for a user
|
2023-10-09 12:39:55 -04:00
|
|
|
* @param {User} user The User to create a JsonWebToken for
|
|
|
|
* @param {string} jwtSecret The key used to sign the JsonWebToken
|
|
|
|
* @returns {string} the JsonWebToken as a string
|
2023-10-08 19:01:54 -04:00
|
|
|
*/
|
|
|
|
static createJWT(user, jwtSecret) {
|
|
|
|
return jwt.sign({
|
|
|
|
username: user.username,
|
|
|
|
h: shake256(user.password, SHAKE256_LENGTH),
|
|
|
|
}, jwtSecret);
|
|
|
|
}
|
|
|
|
|
2021-08-09 01:34:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = User;
|