feat: first stripe imp

This commit is contained in:
2026-05-06 19:27:00 +02:00
parent 1fdd316d0d
commit 9041ecd206
8 changed files with 83 additions and 2 deletions

37
purchase/stripe_client.py Normal file
View File

@@ -0,0 +1,37 @@
import os
import stripe
from django.conf import settings
from django.http import HttpResponse, request
from django.shortcuts import redirect
from django.urls import reverse
class StripeClient:
def __init__(self, api_key: str):
self.api_key = api_key
self.stripe = stripe.StripeClient(api_key=self.api_key)
def create_checkout_session(self, price_id: str):
try:
checkout_session = self.stripe.v1.checkout.sessions.create(
params={
"line_items": [
{
"price": price_id,
"quantity": 1,
},
],
"mode": "payment",
# "success_url": f"http://{Site.objects.get_current().domain}{reverse('purchase_success')}",
"success_url": f"http://localhost:8000{reverse('purchase_success')}",
}
)
except Exception as e:
return HttpResponse(str(e))
return redirect(checkout_session.url, code=303)
stripe_client = StripeClient(api_key=os.getenv("STRIPE_SECRET_KEY"))