Files
MermsCoreFlask/app/api/integrations/merms_stripe.py
T
2025-08-23 13:39:38 -04:00

49 lines
1.7 KiB
Python

import stripe
import json
import logging
from app.config import settings
logger = logging.getLogger(__name__)
stripe.api_key = settings.STRIPE_PRIV_KEY
class StripeIntegration:
@staticmethod
def create_customer(stripe_customer):
logger.info(f"Inside Stripe_Customer ===== : {stripe_customer}")
customer = stripe.Customer.create(
email= stripe_customer["email"],
name=stripe_customer["name"],
payment_method="pm_card_visa",
description="Customer for Merms Subscription",
invoice_settings={"default_payment_method": "pm_card_visa"},
)
# payment_method="pm_card_visa", # Replace with a valid payment method ID or attach one later
return customer
@staticmethod
def create_product(display_name, monthly):
logger.info(f"Inside Stripe_Product ===== : {display_name}")
product_name = display_name
product = stripe.Product.create(name=product_name)
price = stripe.Price.create(
unit_amount=monthly, # Amount in cents (e.g., $10.00)
currency="usd",
recurring={"interval": "month"},
product=product.id,
)
return {'product_id': product.id, 'price_id': price.id}
@staticmethod
def create_subscription(self, data):
subscription = stripe.Subscription.create(
customer='customer.id',
items=[
{"price": 'price.id'},
],
payment_behavior="default_incomplete", # Recommended for handling initial payment
expand=["latest_invoice.payment_intent"], # To get details for payment confirmation
)