feat: 首次登录引导与注册修复

This commit is contained in:
SpecialX
2026-01-12 10:49:30 +08:00
parent 15fcf2bc78
commit 8577280ab2
12 changed files with 653 additions and 25 deletions

View File

@@ -0,0 +1,109 @@
import { NextResponse } from "next/server"
import { eq, inArray } from "drizzle-orm"
import { auth } from "@/auth"
import { db } from "@/shared/db"
import { classes, classSubjectTeachers, users } from "@/shared/db/schema"
import { DEFAULT_CLASS_SUBJECTS, type ClassSubject } from "@/modules/classes/types"
import { enrollStudentByInvitationCode } from "@/modules/classes/data-access"
export const dynamic = "force-dynamic"
function parseCodes(input: string) {
const raw = input
.split(/[\s,;]+/g)
.map((s) => s.trim())
.filter(Boolean)
return Array.from(new Set(raw))
}
function isRecord(v: unknown): v is Record<string, unknown> {
return typeof v === "object" && v !== null
}
export async function POST(req: Request) {
const session = await auth()
const userId = String(session?.user?.id ?? "").trim()
if (!userId) return NextResponse.json({ success: false, message: "Unauthorized" }, { status: 401 })
const body = await req.json().catch(() => null)
if (!isRecord(body)) return NextResponse.json({ success: false, message: "Invalid payload" }, { status: 400 })
const roleRaw = String(body.role ?? "").trim()
const allowedRoles = ["student", "teacher", "parent", "admin"] as const
const role = (allowedRoles as readonly string[]).includes(roleRaw) ? roleRaw : null
if (!role) return NextResponse.json({ success: false, message: "Invalid role" }, { status: 400 })
const current = await db.query.users.findFirst({
where: eq(users.id, userId),
columns: { role: true },
})
const currentRole = String(current?.role ?? "student")
if (role === "admin" && currentRole !== "admin") {
return NextResponse.json({ success: false, message: "Forbidden" }, { status: 403 })
}
const name = String(body.name ?? "").trim()
if (!name) return NextResponse.json({ success: false, message: "Name is required" }, { status: 400 })
const phone = String(body.phone ?? "").trim()
const address = String(body.address ?? "").trim()
const classCodesText = String(body.classCodes ?? "").trim()
const codes = classCodesText.length ? parseCodes(classCodesText) : []
const teacherSubjectsRaw = Array.isArray(body.teacherSubjects) ? body.teacherSubjects : []
const teacherSubjects = teacherSubjectsRaw
.map((s) => String(s).trim())
.filter((s): s is ClassSubject => DEFAULT_CLASS_SUBJECTS.includes(s as ClassSubject))
await db
.update(users)
.set({
role,
name,
phone: phone.length ? phone : null,
address: address.length ? address : null,
})
.where(eq(users.id, userId))
if (role === "student" && codes.length) {
for (const code of codes) {
await enrollStudentByInvitationCode(userId, code)
}
}
if (role === "teacher" && codes.length && teacherSubjects.length) {
const classRows = await db
.select({ id: classes.id, invitationCode: classes.invitationCode })
.from(classes)
.where(inArray(classes.invitationCode, codes))
const byCode = new Map<string, string>()
for (const r of classRows) {
if (typeof r.invitationCode === "string") {
byCode.set(r.invitationCode, r.id)
}
}
for (const code of codes) {
const classId = byCode.get(code)
if (!classId) continue
for (const subject of teacherSubjects) {
await db
.insert(classSubjectTeachers)
.values({ classId, subject, teacherId: userId })
.onDuplicateKeyUpdate({ set: { teacherId: userId, updatedAt: new Date() } })
}
}
}
await db
.update(users)
.set({ onboardedAt: new Date() })
.where(eq(users.id, userId))
return NextResponse.json({ success: true })
}

View File

@@ -0,0 +1,25 @@
import { NextResponse } from "next/server"
import { eq } from "drizzle-orm"
import { auth } from "@/auth"
import { db } from "@/shared/db"
import { users } from "@/shared/db/schema"
export const dynamic = "force-dynamic"
export async function GET() {
const session = await auth()
const userId = String(session?.user?.id ?? "").trim()
if (!userId) {
return NextResponse.json({ required: false })
}
const row = await db.query.users.findFirst({
where: eq(users.id, userId),
columns: { onboardedAt: true, role: true },
})
const required = !row?.onboardedAt
return NextResponse.json({ required, role: row?.role ?? "student" })
}