jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

46 lines
1.2 KiB

'use strict';
const bcrypt = require('bcrypt')
, dynamicResponse = require(__dirname+'/../../helpers/dynamic.js')
, { Accounts } = require(__dirname+'/../../db/');
module.exports = async (req, res, next) => {
const username = req.body.username.toLowerCase();
const password = req.body.password;
const newPassword = req.body.newpassword;
//fetch an account
const account = await Accounts.findOne(username);
//if the account doesnt exist, reject
if (!account) {
return dynamicResponse(req, res, 403, 'message', {
'title': 'Forbidden',
'message': 'Incorrect username or password',
'redirect': '/changepassword.html'
});
}
// bcrypt compare input to saved hash
const passwordMatch = await bcrypt.compare(password, account.passwordHash);
//if hashes matched
if (passwordMatch === false) {
return dynamicResponse(req, res, 403, 'message', {
'title': 'Forbidden',
'message': 'Incorrect username or password',
'redirect': '/changepassword.html'
});
}
//change the password
await Accounts.changePassword(username, newPassword);
return dynamicResponse(req, res, 200, 'message', {
'title': 'Success',
'message': 'Changed password',
'redirect': '/login.html'
});
}