mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
refactor(dokploy): remove stripe from global scope
This commit is contained in:
@@ -6,11 +6,6 @@ import { asc, eq } from "drizzle-orm";
|
|||||||
import type { NextApiRequest, NextApiResponse } from "next";
|
import type { NextApiRequest, NextApiResponse } from "next";
|
||||||
import Stripe from "stripe";
|
import Stripe from "stripe";
|
||||||
|
|
||||||
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY || "", {
|
|
||||||
apiVersion: "2024-09-30.acacia",
|
|
||||||
maxNetworkRetries: 3,
|
|
||||||
});
|
|
||||||
|
|
||||||
const endpointSecret = process.env.STRIPE_WEBHOOK_SECRET || "";
|
const endpointSecret = process.env.STRIPE_WEBHOOK_SECRET || "";
|
||||||
|
|
||||||
export const config = {
|
export const config = {
|
||||||
@@ -26,6 +21,11 @@ export default async function handler(
|
|||||||
if (!endpointSecret) {
|
if (!endpointSecret) {
|
||||||
return res.status(400).send("Webhook Error: Missing Stripe Secret Key");
|
return res.status(400).send("Webhook Error: Missing Stripe Secret Key");
|
||||||
}
|
}
|
||||||
|
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY || "", {
|
||||||
|
apiVersion: "2024-09-30.acacia",
|
||||||
|
maxNetworkRetries: 3,
|
||||||
|
});
|
||||||
|
|
||||||
const buf = await buffer(req);
|
const buf = await buffer(req);
|
||||||
const sig = req.headers["stripe-signature"] as string;
|
const sig = req.headers["stripe-signature"] as string;
|
||||||
|
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
import Stripe from "stripe";
|
|
||||||
|
|
||||||
export const WEBSITE_URL =
|
export const WEBSITE_URL =
|
||||||
process.env.NODE_ENV === "development"
|
process.env.NODE_ENV === "development"
|
||||||
? "http://localhost:3000"
|
? "http://localhost:3000"
|
||||||
: "https://app.dokploy.com";
|
: "https://app.dokploy.com";
|
||||||
|
|
||||||
export const stripe = new Stripe(process.env.STRIPE_SECRET_KEY || "", {
|
|
||||||
apiVersion: "2024-09-30.acacia",
|
|
||||||
});
|
|
||||||
|
|
||||||
const BASE_PRICE_MONTHLY_ID = process.env.BASE_PRICE_MONTHLY_ID || ""; // $4.00
|
const BASE_PRICE_MONTHLY_ID = process.env.BASE_PRICE_MONTHLY_ID || ""; // $4.00
|
||||||
|
|
||||||
const BASE_ANNUAL_MONTHLY_ID = process.env.BASE_ANNUAL_MONTHLY_ID || ""; // $7.99
|
const BASE_ANNUAL_MONTHLY_ID = process.env.BASE_ANNUAL_MONTHLY_ID || ""; // $7.99
|
||||||
|
|||||||
Reference in New Issue
Block a user