111 lines
2.7 KiB
TypeScript
111 lines
2.7 KiB
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import { app } from "@/firebase";
|
|
import {
|
|
getFirestore,
|
|
setDoc,
|
|
doc,
|
|
query,
|
|
collection,
|
|
where,
|
|
getDocs,
|
|
getDoc,
|
|
deleteDoc,
|
|
} from "firebase/firestore";
|
|
import { withIronSessionApiRoute } from "iron-session/next";
|
|
import { sessionOptions } from "@/lib/session";
|
|
import {v4} from "uuid";
|
|
import {Group} from "@/interfaces/user";
|
|
import {createUserWithEmailAndPassword, getAuth} from "firebase/auth";
|
|
|
|
const DEFAULT_DESIRED_LEVELS = {
|
|
reading: 9,
|
|
listening: 9,
|
|
writing: 9,
|
|
speaking: 9,
|
|
};
|
|
|
|
const DEFAULT_LEVELS = {
|
|
reading: 0,
|
|
listening: 0,
|
|
writing: 0,
|
|
speaking: 0,
|
|
};
|
|
|
|
const auth = getAuth(app);
|
|
const db = getFirestore(app);
|
|
|
|
export default withIronSessionApiRoute(handler, sessionOptions);
|
|
|
|
async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
|
|
if (req.method === "POST") return post(req, res);
|
|
|
|
return res.status(404).json({ ok: false });
|
|
}
|
|
|
|
async function post(req: NextApiRequest, res: NextApiResponse) {
|
|
if (!req.session.user) {
|
|
return res
|
|
.status(401)
|
|
.json({ ok: false, reason: "You must be logged in to make user!" });
|
|
}
|
|
|
|
const { email, passport_id, type } = req.body as {
|
|
email: string;
|
|
passport_id: string;
|
|
type: string
|
|
};
|
|
createUserWithEmailAndPassword(auth, email.toLowerCase(), passport_id)
|
|
.then(async (userCredentials) => {
|
|
const userId = userCredentials.user.uid;
|
|
|
|
const user = {
|
|
...req.body,
|
|
bio: "",
|
|
type: type,
|
|
focus: "academic",
|
|
status: "paymentDue",
|
|
|
|
desiredLevels: DEFAULT_DESIRED_LEVELS,
|
|
levels: DEFAULT_LEVELS,
|
|
isFirstLogin: false,
|
|
};
|
|
await setDoc(doc(db, "users", userId), user);
|
|
if (type === "corporate") {
|
|
const defaultTeachersGroup: Group = {
|
|
admin: userId,
|
|
id: v4(),
|
|
name: "Teachers",
|
|
participants: [],
|
|
disableEditing: true,
|
|
};
|
|
|
|
const defaultStudentsGroup: Group = {
|
|
admin: userId,
|
|
id: v4(),
|
|
name: "Students",
|
|
participants: [],
|
|
disableEditing: true,
|
|
};
|
|
|
|
const defaultCorporateGroup: Group = {
|
|
admin: userId,
|
|
id: v4(),
|
|
name: "Corporate",
|
|
participants: [],
|
|
disableEditing: true,
|
|
};
|
|
|
|
|
|
await setDoc(doc(db, "groups", defaultTeachersGroup.id), defaultTeachersGroup);
|
|
await setDoc(doc(db, "groups", defaultStudentsGroup.id), defaultStudentsGroup);
|
|
await setDoc(doc(db, "groups", defaultCorporateGroup.id), defaultCorporateGroup);
|
|
}
|
|
res.status(200).json({ ok: true });
|
|
})
|
|
.catch((error) => {
|
|
console.log(error);
|
|
res.status(401).json({error});
|
|
});
|
|
}
|