2021-08-18 11:52:25 +00:00
|
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
2021-08-18 11:52:25 +00:00
|
|
|
import { getSession } from "@lib/auth";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
2021-08-18 11:52:25 +00:00
|
|
|
import prisma from "../../../../lib/prisma";
|
2021-04-21 22:10:48 +00:00
|
|
|
|
2021-08-19 12:27:01 +00:00
|
|
|
const scopes = ["User.Read", "Calendars.Read", "Calendars.ReadWrite", "offline_access"];
|
2021-04-21 22:10:48 +00:00
|
|
|
|
2021-08-19 12:27:01 +00:00
|
|
|
function generateAuthUrl() {
|
|
|
|
return (
|
|
|
|
"https://login.microsoftonline.com/common/oauth2/v2.0/authorize?response_type=code&scope=" +
|
|
|
|
scopes.join(" ") +
|
|
|
|
"&client_id=" +
|
|
|
|
process.env.MS_GRAPH_CLIENT_ID +
|
|
|
|
"&redirect_uri=" +
|
|
|
|
process.env.BASE_URL +
|
|
|
|
"/api/integrations/office365calendar/callback"
|
|
|
|
);
|
|
|
|
}
|
2021-04-21 22:10:48 +00:00
|
|
|
|
2021-08-19 12:27:01 +00:00
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
|
|
if (req.method === "GET") {
|
|
|
|
// Check that user is authenticated
|
|
|
|
const session = await getSession({ req: req });
|
2021-04-21 22:10:48 +00:00
|
|
|
|
2021-08-19 12:27:01 +00:00
|
|
|
if (!session) {
|
|
|
|
res.status(401).json({ message: "You must be logged in to do this" });
|
|
|
|
return;
|
|
|
|
}
|
2021-04-21 22:10:48 +00:00
|
|
|
|
2021-08-19 12:27:01 +00:00
|
|
|
// Get user
|
|
|
|
await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
email: session.user.email,
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
id: true,
|
|
|
|
},
|
|
|
|
});
|
2021-04-21 22:10:48 +00:00
|
|
|
|
2021-08-19 12:27:01 +00:00
|
|
|
res.status(200).json({ url: generateAuthUrl() });
|
|
|
|
}
|
2021-04-21 22:10:48 +00:00
|
|
|
}
|