2021-05-04 06:05:34 +00:00
|
|
|
import * as bcrypt from 'bcryptjs';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { publishMainStream } from '@/services/stream';
|
|
|
|
import define from '../define';
|
|
|
|
import { Users, UserProfiles, PasswordResetRequests } from '@/models/index';
|
|
|
|
import { ApiError } from '../error';
|
2021-05-04 06:05:34 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: false,
|
2021-05-04 06:05:34 +00:00
|
|
|
|
2022-02-19 05:05:32 +00:00
|
|
|
errors: {
|
2021-05-04 06:05:34 +00:00
|
|
|
|
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
} as const;
|
2021-05-04 06:05:34 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
token: { type: 'string' },
|
|
|
|
password: { type: 'string' },
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
required: ['token', 'password'],
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2021-05-04 06:05:34 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2021-05-04 06:05:34 +00:00
|
|
|
const req = await PasswordResetRequests.findOneOrFail({
|
|
|
|
token: ps.token,
|
|
|
|
});
|
|
|
|
|
|
|
|
// 発行してから30分以上経過していたら無効
|
|
|
|
if (Date.now() - req.createdAt.getTime() > 1000 * 60 * 30) {
|
|
|
|
throw new Error(); // TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate hash of password
|
|
|
|
const salt = await bcrypt.genSalt(8);
|
|
|
|
const hash = await bcrypt.hash(ps.password, salt);
|
|
|
|
|
|
|
|
await UserProfiles.update(req.userId, {
|
2021-12-09 14:58:30 +00:00
|
|
|
password: hash,
|
2021-05-04 06:05:34 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
PasswordResetRequests.delete(req.id);
|
|
|
|
});
|