49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import { getSession } from "@lib/auth";
|
|
import prisma from "@lib/prisma";
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import { stringify } from "querystring";
|
|
|
|
const client_id = process.env.STRIPE_CLIENT_ID;
|
|
|
|
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;
|
|
}
|
|
|
|
// Get user
|
|
const user = await prisma.user.findUnique({
|
|
where: {
|
|
id: session.user?.id,
|
|
},
|
|
select: {
|
|
email: true,
|
|
name: true,
|
|
},
|
|
});
|
|
|
|
const redirect_uri = encodeURI(process.env.BASE_URL + "/api/integrations/stripepayment/callback");
|
|
const stripeConnectParams = {
|
|
client_id,
|
|
scope: "read_write",
|
|
response_type: "code",
|
|
"stripe_user[email]": user?.email,
|
|
"stripe_user[first_name]": user?.name,
|
|
redirect_uri,
|
|
};
|
|
const query = stringify(stripeConnectParams);
|
|
/**
|
|
* Choose Express or Stantard Stripe accounts
|
|
* @url https://stripe.com/docs/connect/accounts
|
|
*/
|
|
// const url = `https://connect.stripe.com/express/oauth/authorize?${query}`;
|
|
const url = `https://connect.stripe.com/oauth/authorize?${query}`;
|
|
|
|
res.status(200).json({ url });
|
|
}
|
|
}
|