38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import client from "@/lib/mongodb";
|
|
import { ObjectId } from 'mongodb';
|
|
import { withIronSessionApiRoute } from "iron-session/next";
|
|
import { sessionOptions } from "@/lib/session";
|
|
|
|
const db = client.db(process.env.MONGODB_DB);
|
|
|
|
export default withIronSessionApiRoute(handler, sessionOptions);
|
|
|
|
async function post(req: NextApiRequest, res: NextApiResponse) {
|
|
// verify if it's a logged user that is trying to archive
|
|
if (req.session.user) {
|
|
const { id } = req.query as { id: string };
|
|
const docSnap = await db.collection("assignments").findOne({ _id: new ObjectId(id) });
|
|
|
|
if (!docSnap) {
|
|
res.status(404).json({ ok: false });
|
|
return;
|
|
}
|
|
|
|
await db.collection("assignments").updateOne(
|
|
{ _id: new ObjectId(id) },
|
|
{ $set: { archived: false } }
|
|
);
|
|
|
|
res.status(200).json({ ok: true });
|
|
return;
|
|
}
|
|
|
|
res.status(401).json({ ok: false });
|
|
}
|
|
|
|
async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
if (req.method === "POST") return post(req, res);
|
|
res.status(404).json({ ok: false });
|
|
}
|