2021-08-18 11:52:25 +00:00
|
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import { getSession } from "@lib/auth";
|
|
|
|
import prisma from "../../../../lib/prisma";
|
2021-04-21 22:10:48 +00:00
|
|
|
|
2021-06-07 17:30:09 +00:00
|
|
|
const scopes = ['User.Read', 'Calendars.Read', 'Calendars.ReadWrite', 'offline_access'];
|
2021-04-21 22:10:48 +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});
|
|
|
|
|
|
|
|
if (!session) { res.status(401).json({message: 'You must be logged in to do this'}); return; }
|
|
|
|
|
2021-05-11 09:21:05 +00:00
|
|
|
// Get user
|
2021-04-21 22:10:48 +00:00
|
|
|
const user = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
email: session.user.email,
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
id: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function generateAuthUrl() {
|
2021-08-14 06:25:43 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
res.status(200).json({url: generateAuthUrl() });
|
|
|
|
}
|
|
|
|
}
|