mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 09:03:08 +02:00
61 lines
1.7 KiB
TypeScript
61 lines
1.7 KiB
TypeScript
import bcrypt from 'bcryptjs';
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import type { UserProfilesRepository, PasswordResetRequestsRepository } from '@/models/index.js';
|
|
import type { UsersRepository } from '@/models/index.js';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { ApiError } from '../error.js';
|
|
|
|
export const meta = {
|
|
tags: ['reset password'],
|
|
|
|
requireCredential: false,
|
|
|
|
description: 'Complete the password reset that was previously requested.',
|
|
|
|
errors: {
|
|
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
token: { type: 'string' },
|
|
password: { type: 'string' },
|
|
},
|
|
required: ['token', 'password'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@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);
|
|
});
|
|
}
|
|
}
|