2017-08-28 09:47:43 -05:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import $ from 'cafy';
|
|
|
|
import * as bcrypt from 'bcryptjs';
|
2018-03-29 06:32:18 -05:00
|
|
|
import User from '../../../../models/user';
|
2017-08-28 09:47:43 -05:00
|
|
|
import event from '../../event';
|
|
|
|
import generateUserToken from '../../common/generate-native-user-token';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Regenerate native token
|
|
|
|
*
|
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
|
|
|
*/
|
|
|
|
module.exports = async (params, user) => new Promise(async (res, rej) => {
|
|
|
|
// Get 'password' parameter
|
|
|
|
const [password, passwordErr] = $(params.password).string().$;
|
|
|
|
if (passwordErr) return rej('invalid password param');
|
|
|
|
|
|
|
|
// Compare password
|
2018-03-25 10:19:07 -05:00
|
|
|
const same = await bcrypt.compare(password, user.account.password);
|
2017-08-28 09:47:43 -05:00
|
|
|
|
|
|
|
if (!same) {
|
|
|
|
return rej('incorrect password');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate secret
|
|
|
|
const secret = generateUserToken();
|
|
|
|
|
|
|
|
await User.update(user._id, {
|
|
|
|
$set: {
|
2018-03-25 10:19:07 -05:00
|
|
|
'account.token': secret
|
2017-08-28 09:47:43 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
res();
|
|
|
|
|
2017-08-28 09:49:14 -05:00
|
|
|
// Publish event
|
2017-08-28 09:47:43 -05:00
|
|
|
event(user._id, 'my_token_regenerated');
|
|
|
|
});
|