Notes/src/services/change_password.js

33 lines
1023 B
JavaScript
Raw Normal View History

2017-10-21 21:10:33 -04:00
"use strict";
const sql = require('./sql');
const optionService = require('./options');
const myScryptService = require('./my_scrypt');
const utils = require('./utils');
const passwordEncryptionService = require('./password_encryption');
2018-04-01 12:03:21 -04:00
async function changePassword(currentPassword, newPassword) {
if (!await passwordEncryptionService.verifyPassword(currentPassword)) {
return {
success: false,
message: "Given current password doesn't match hash"
};
}
const newPasswordVerificationKey = utils.toBase64(await myScryptService.getVerificationHash(newPassword));
const decryptedDataKey = await passwordEncryptionService.getDataKey(currentPassword);
await sql.transactional(async () => {
await passwordEncryptionService.setDataKey(newPassword, decryptedDataKey);
2018-04-02 21:47:46 -04:00
await optionService.setOption('passwordVerificationHash', newPasswordVerificationKey);
});
return {
2017-11-22 20:36:07 -05:00
success: true
};
}
module.exports = {
changePassword
};