2017-08-28 23:47:43 +09:00
|
|
|
import $ from 'cafy';
|
|
|
|
import * as bcrypt from 'bcryptjs';
|
2019-02-05 14:14:23 +09:00
|
|
|
import { publishMainStream } from '../../../../services/stream';
|
2017-08-28 23:47:43 +09:00
|
|
|
import generateUserToken from '../../common/generate-native-user-token';
|
2018-11-02 13:47:44 +09:00
|
|
|
import define from '../../define';
|
2019-04-10 15:04:27 +09:00
|
|
|
import { Users, UserProfiles } from '../../../../models';
|
2019-04-13 01:43:22 +09:00
|
|
|
import { ensure } from '../../../../prelude/ensure';
|
2017-08-28 23:47:43 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
|
|
|
requireCredential: true,
|
2018-11-02 12:49:08 +09:00
|
|
|
|
|
|
|
secure: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
password: {
|
|
|
|
validator: $.str
|
|
|
|
}
|
|
|
|
}
|
2018-07-17 04:36:44 +09:00
|
|
|
};
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-13 01:43:22 +09:00
|
|
|
const profile = await UserProfiles.findOne({ userId: user.id }).then(ensure);
|
2019-04-10 15:04:27 +09:00
|
|
|
|
2017-08-28 23:47:43 +09:00
|
|
|
// Compare password
|
2019-04-13 01:43:22 +09:00
|
|
|
const same = await bcrypt.compare(ps.password, profile.password!);
|
2017-08-28 23:47:43 +09:00
|
|
|
|
|
|
|
if (!same) {
|
2019-02-22 11:46:58 +09:00
|
|
|
throw new Error('incorrect password');
|
2017-08-28 23:47:43 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// Generate secret
|
|
|
|
const secret = generateUserToken();
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
await Users.update(user.id, {
|
|
|
|
token: secret
|
2017-08-28 23:47:43 +09:00
|
|
|
});
|
|
|
|
|
2017-08-28 23:49:14 +09:00
|
|
|
// Publish event
|
2019-04-07 21:50:36 +09:00
|
|
|
publishMainStream(user.id, 'myTokenRegenerated');
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|