34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
|
import type { NextApiRequest, NextApiResponse } from "next";
|
||
|
import { stringify } from "querystring";
|
||
|
|
||
|
import { getSession } from "@lib/auth";
|
||
|
import { BASE_URL } from "@lib/config/constants";
|
||
|
|
||
|
import { encodeOAuthState } from "../utils";
|
||
|
|
||
|
const scopes = ["User.Read", "Calendars.Read", "Calendars.ReadWrite", "offline_access"];
|
||
|
|
||
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
||
|
if (req.method === "GET") {
|
||
|
// Check that user is authenticated
|
||
|
const session = await getSession({ req });
|
||
|
|
||
|
if (!session?.user) {
|
||
|
res.status(401).json({ message: "You must be logged in to do this" });
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const state = encodeOAuthState(req);
|
||
|
const params = {
|
||
|
response_type: "code",
|
||
|
scope: scopes.join(" "),
|
||
|
client_id: process.env.MS_GRAPH_CLIENT_ID,
|
||
|
redirect_uri: BASE_URL + "/api/integrations/office365calendar/callback",
|
||
|
state,
|
||
|
};
|
||
|
const query = stringify(params);
|
||
|
const url = `https://login.microsoftonline.com/common/oauth2/v2.0/authorize?${query}`;
|
||
|
res.status(200).json({ url });
|
||
|
}
|
||
|
}
|