2022-02-27 04:07:39 +02:00
|
|
|
import bcrypt from 'bcryptjs';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { UserProfilesRepository, PasswordResetRequestsRepository } from '@/models/index.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import type { UsersRepository } from '@/models/index.js';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { ApiError } from '../error.js';
|
2021-05-04 09:05:34 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2022-06-10 08:25:20 +03:00
|
|
|
tags: ['reset password'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
2021-05-04 09:05:34 +03:00
|
|
|
|
2022-06-10 08:25:20 +03:00
|
|
|
description: 'Complete the password reset that was previously requested.',
|
|
|
|
|
2022-02-19 07:05:32 +02:00
|
|
|
errors: {
|
2021-05-04 09:05:34 +03:00
|
|
|
|
|
|
|
},
|
2022-02-19 07:05:32 +02:00
|
|
|
} as const;
|
2021-05-04 09:05:34 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
token: { type: 'string' },
|
|
|
|
password: { type: 'string' },
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-02-19 07:05:32 +02:00
|
|
|
required: ['token', 'password'],
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2021-05-04 09:05:34 +03:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.passwordResetRequestsRepository)
|
|
|
|
private passwordResetRequestsRepository: PasswordResetRequestsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const req = await this.passwordResetRequestsRepository.findOneByOrFail({
|
|
|
|
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 this.userProfilesRepository.update(req.userId, {
|
|
|
|
password: hash,
|
|
|
|
});
|
|
|
|
|
|
|
|
this.passwordResetRequestsRepository.delete(req.id);
|
|
|
|
});
|
2021-05-04 09:05:34 +03:00
|
|
|
}
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|