Refactored /api/tickets /api/training
This commit is contained in:
@@ -1,16 +1,15 @@
|
||||
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
||||
import {sendEmail} from "@/email";
|
||||
import {app} from "@/firebase";
|
||||
import {Ticket, TicketTypeLabel, TicketWithCorporate} from "@/interfaces/ticket";
|
||||
import {sessionOptions} from "@/lib/session";
|
||||
import {collection, doc, getDocs, getFirestore, setDoc, where, query} from "firebase/firestore";
|
||||
import {withIronSessionApiRoute} from "iron-session/next";
|
||||
import { sendEmail } from "@/email";
|
||||
import { Ticket, TicketTypeLabel, TicketWithCorporate } from "@/interfaces/ticket";
|
||||
import { sessionOptions } from "@/lib/session";
|
||||
import client from "@/lib/mongodb";
|
||||
import { withIronSessionApiRoute } from "iron-session/next";
|
||||
import moment from "moment";
|
||||
import type {NextApiRequest, NextApiResponse} from "next";
|
||||
import type { NextApiRequest, NextApiResponse } from "next";
|
||||
import ShortUniqueId from "short-unique-id";
|
||||
import {Group, CorporateUser} from "@/interfaces/user";
|
||||
import { Group, CorporateUser } from "@/interfaces/user";
|
||||
|
||||
const db = getFirestore(app);
|
||||
const db = client.db(process.env.MONGODB_DB);
|
||||
|
||||
export default withIronSessionApiRoute(handler, sessionOptions);
|
||||
|
||||
@@ -27,7 +26,7 @@ async function handler(req: NextApiRequest, res: NextApiResponse) {
|
||||
return;
|
||||
}
|
||||
if (!req.session.user) {
|
||||
res.status(401).json({ok: false});
|
||||
res.status(401).json({ ok: false });
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -37,31 +36,24 @@ async function handler(req: NextApiRequest, res: NextApiResponse) {
|
||||
}
|
||||
|
||||
async function get(req: NextApiRequest, res: NextApiResponse) {
|
||||
const snapshot = await getDocs(collection(db, "tickets"));
|
||||
|
||||
const docs = snapshot.docs.map((doc) => ({
|
||||
id: doc.id,
|
||||
...doc.data(),
|
||||
})) as Ticket[];
|
||||
const docs = await db.collection("tickets").find<Ticket>({}).toArray();
|
||||
|
||||
// fetch all groups for these users
|
||||
|
||||
const reporters = [...new Set(docs.map((d) => d.reporter.id).filter((id) => id))];
|
||||
|
||||
const groupsSnapshot = await getDocs(query(collection(db, "groups"), where("participants", "array-contains-any", reporters)));
|
||||
const groups = groupsSnapshot.docs.map((doc) => doc.data()) as Group[];
|
||||
const groups = await db.collection("groups").find<Group>({
|
||||
participants: { $in: reporters }
|
||||
}).toArray();
|
||||
|
||||
// based on the admin of each group, verify if it exists and it's of type corporate
|
||||
const groupsAdmins = [...new Set(groups.map((g) => g.admin).filter((id) => id))];
|
||||
const adminsSnapshot =
|
||||
groupsAdmins.length > 0
|
||||
? await getDocs(query(collection(db, "users"), where("id", "in", groupsAdmins), where("type", "==", "corporate")))
|
||||
: {docs: []};
|
||||
const admins = adminsSnapshot.docs.map((doc) => doc.data());
|
||||
const admins = groupsAdmins.length > 0
|
||||
? await db.collection("users").find<CorporateUser>({ id: { $in: groupsAdmins }, type: "corporate" }).toArray()
|
||||
: [];
|
||||
|
||||
const docsWithAdmins = docs.map((d) => {
|
||||
const group = groups.find((g) => g.participants.includes(d.reporter.id));
|
||||
const admin = admins.find((a) => a.id === group?.admin) as CorporateUser;
|
||||
const admin = admins.find((a) => a.id === group?.admin);
|
||||
|
||||
if (admin) {
|
||||
return {
|
||||
@@ -81,8 +73,12 @@ async function post(req: NextApiRequest, res: NextApiResponse) {
|
||||
|
||||
const shortUID = new ShortUniqueId();
|
||||
const id = body.id || shortUID.randomUUID(8);
|
||||
await setDoc(doc(db, "tickets", id), body);
|
||||
res.status(200).json({ok: true});
|
||||
await db.collection("tickets").updateOne(
|
||||
{ id: id },
|
||||
{ $set: { ...body, id: id } }
|
||||
);
|
||||
|
||||
res.status(200).json({ ok: true });
|
||||
|
||||
try {
|
||||
await sendEmail(
|
||||
|
||||
Reference in New Issue
Block a user