mirror of
https://github.com/labring/FastGPT.git
synced 2025-08-02 20:58:12 +00:00
73 lines
1.7 KiB
TypeScript
73 lines
1.7 KiB
TypeScript
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
|
import type { NextApiRequest, NextApiResponse } from 'next';
|
|
import { jsonRes } from '@/service/response';
|
|
import { User } from '@/service/models/user';
|
|
import { AuthCode } from '@/service/models/authCode';
|
|
import { connectToDatabase } from '@/service/mongo';
|
|
import { setCookie } from '@/service/utils/tools';
|
|
import { UserAuthTypeEnum } from '@/constants/common';
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse<any>) {
|
|
try {
|
|
const { username, code, password, inviterId } = req.body;
|
|
|
|
if (!username || !code || !password) {
|
|
throw new Error('缺少参数');
|
|
}
|
|
|
|
await connectToDatabase();
|
|
|
|
// 验证码校验
|
|
const authCode = await AuthCode.findOne({
|
|
username,
|
|
code,
|
|
type: UserAuthTypeEnum.register,
|
|
expiredTime: { $gte: Date.now() }
|
|
});
|
|
|
|
if (!authCode) {
|
|
throw new Error('验证码错误');
|
|
}
|
|
|
|
// 重名校验
|
|
const authRepeat = await User.findOne({
|
|
username
|
|
});
|
|
|
|
if (authRepeat) {
|
|
throw new Error('该用户已被注册');
|
|
}
|
|
|
|
const response = await User.create({
|
|
username,
|
|
password,
|
|
inviterId: inviterId ? inviterId : undefined
|
|
});
|
|
|
|
// 根据 id 获取用户信息
|
|
const user = await User.findById(response._id);
|
|
|
|
if (!user) {
|
|
throw new Error('获取用户信息异常');
|
|
}
|
|
|
|
// 删除验证码记录
|
|
await AuthCode.deleteMany({
|
|
username
|
|
});
|
|
|
|
setCookie(res, user._id);
|
|
|
|
jsonRes(res, {
|
|
data: {
|
|
user
|
|
}
|
|
});
|
|
} catch (err) {
|
|
jsonRes(res, {
|
|
code: 500,
|
|
error: err
|
|
});
|
|
}
|
|
}
|