113 lines
2.9 KiB
TypeScript
113 lines
2.9 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import rndstr from 'rndstr';
|
|
import ms from 'ms';
|
|
import bcrypt from 'bcryptjs';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { UsersRepository, UserProfilesRepository } from '@/models/index.js';
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
import { EmailService } from '@/core/EmailService.js';
|
|
import type { Config } from '@/config.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
import { ApiError } from '../../error.js';
|
|
|
|
export const meta = {
|
|
requireCredential: true,
|
|
|
|
secure: true,
|
|
|
|
limit: {
|
|
duration: ms('1hour'),
|
|
max: 3,
|
|
},
|
|
|
|
errors: {
|
|
incorrectPassword: {
|
|
message: 'Incorrect password.',
|
|
code: 'INCORRECT_PASSWORD',
|
|
id: 'e54c1d7e-e7d6-4103-86b6-0a95069b4ad3',
|
|
},
|
|
|
|
unavailable: {
|
|
message: 'Unavailable email address.',
|
|
code: 'UNAVAILABLE',
|
|
id: 'a2defefb-f220-8849-0af6-17f816099323',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
password: { type: 'string' },
|
|
email: { type: 'string', nullable: true },
|
|
},
|
|
required: ['password'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject(DI.config)
|
|
private config: Config,
|
|
|
|
@Inject(DI.usersRepository)
|
|
private usersRepository: UsersRepository,
|
|
|
|
@Inject(DI.userProfilesRepository)
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
private userEntityService: UserEntityService,
|
|
private emailService: EmailService,
|
|
private globalEventService: GlobalEventService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const profile = await this.userProfilesRepository.findOneByOrFail({ userId: me.id });
|
|
|
|
// Compare password
|
|
const same = await bcrypt.compare(ps.password, profile.password!);
|
|
|
|
if (!same) {
|
|
throw new ApiError(meta.errors.incorrectPassword);
|
|
}
|
|
|
|
if (ps.email != null) {
|
|
const res = await this.emailService.validateEmailForAccount(ps.email);
|
|
if (!res.available) {
|
|
throw new ApiError(meta.errors.unavailable);
|
|
}
|
|
}
|
|
|
|
await this.userProfilesRepository.update(me.id, {
|
|
email: ps.email,
|
|
emailVerified: false,
|
|
emailVerifyCode: null,
|
|
});
|
|
|
|
const iObj = await this.userEntityService.pack(me.id, me, {
|
|
detail: true,
|
|
includeSecrets: true,
|
|
});
|
|
|
|
// Publish meUpdated event
|
|
this.globalEventService.publishMainStream(me.id, 'meUpdated', iObj);
|
|
|
|
if (ps.email != null) {
|
|
const code = rndstr('a-z0-9', 16);
|
|
|
|
await this.userProfilesRepository.update(me.id, {
|
|
emailVerifyCode: code,
|
|
});
|
|
|
|
const link = `${this.config.url}/verify-email/${code}`;
|
|
|
|
this.emailService.sendEmail(ps.email, 'Email verification',
|
|
`To verify email, please click this link:<br><a href="${link}">${link}</a>`,
|
|
`To verify email, please click this link: ${link}`);
|
|
}
|
|
|
|
return iObj;
|
|
});
|
|
}
|
|
}
|