Spaces:
Runtime error
Runtime error
File size: 13,650 Bytes
c68b343 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | from django.shortcuts import get_object_or_404
from django.db import transaction
from rest_framework.exceptions import ValidationError
from rest_framework.views import APIView
from rest_framework.response import Response
from rest_framework import status
from django.http import JsonResponse
from django.core.mail import send_mail
from django.conf import settings
from rest_framework.permissions import IsAuthenticated
from rest_framework.decorators import api_view, permission_classes
import razorpay
from django.utils.decorators import method_decorator
from django.views.decorators.csrf import csrf_exempt
from django.conf import settings
from django.db.models import F
from apps.orders.models import PaymentOrder
from .models import (
Booking,
StudioBooking,
UpcomingEvent,
Workshop,
WorkshopSlot,
WorkshopRegistration,
Experience,
ExperienceSlot,
)
from .serializers import (
BookingSerializer,
StudioBookingSerializer,
UpcomingEventSerializer,
WorkshopSerializer,
WorkshopSlotSerializer,
WorkshopRegistrationSerializer,
ExperienceSlotSerializer,
ExperienceSerializer, # β
ADD THIS
)
razorpay_client = razorpay.Client(
auth=(settings.RAZORPAY_KEY_ID, settings.RAZORPAY_KEY_SECRET)
)
# =========================
# EXPERIENCE BOOKING (PAYMENT FIRST)
# =========================
class CreateBookingView(APIView):
def post(self, request):
serializer = BookingSerializer(data=request.data)
serializer.is_valid(raise_exception=True)
slot = serializer.validated_data["slot"]
people = serializer.validated_data["number_of_people"]
experience = serializer.validated_data["experience"]
# π ATOMIC BLOCK (prevents race conditions)
with transaction.atomic():
slot = ExperienceSlot.objects.select_for_update().get(id=slot.id)
available = slot.total_slots - slot.booked_slots
if people > available:
raise ValidationError({
"slot": f"Only {available} slots left for this time slot."
})
booking = serializer.save(
status="pending",
payment_amount=experience.price
)
# β
Reserve seats
slot.booked_slots += people
slot.save()
# β
CREATE RAZORPAY ORDER
razorpay_order = razorpay_client.order.create({
"amount": booking.payment_amount * 100,
"currency": "INR",
"payment_capture": 1
})
payment_order = PaymentOrder.objects.create(
user=request.user if request.user.is_authenticated else None,
order_type="EXPERIENCE",
linked_object_id=booking.id,
linked_app="experiences",
amount=booking.payment_amount,
razorpay_order_id=razorpay_order["id"],
)
booking.payment_order = payment_order
booking.save()
return Response({
"booking_id": booking.id,
"razorpay_order_id": payment_order.razorpay_order_id,
"amount": payment_order.amount,
}, status=status.HTTP_201_CREATED)
razorpay_client = razorpay.Client(
auth=(settings.RAZORPAY_KEY_ID, settings.RAZORPAY_KEY_SECRET)
)
class ReleaseExperienceSlotView(APIView):
def post(self, request):
booking_id = request.data.get("booking_id")
if not booking_id:
return Response(
{"error": "booking_id required"},
status=status.HTTP_400_BAD_REQUEST
)
try:
with transaction.atomic():
booking = Booking.objects.select_for_update().get(id=booking_id)
# Only release if not confirmed
if booking.status != "pending":
return Response(
{"message": "Booking already processed"},
status=status.HTTP_200_OK
)
slot = booking.slot
slot.booked_slots -= booking.number_of_people
slot.save()
booking.status = "failed"
booking.save()
return Response(
{"message": "Slot released successfully"},
status=status.HTTP_200_OK
)
except Booking.DoesNotExist:
return Response(
{"error": "Booking not found"},
status=status.HTTP_404_NOT_FOUND
)
class VerifyExperiencePaymentView(APIView):
def post(self, request):
data = request.data
try:
# 1οΈβ£ Verify signature
razorpay_client.utility.verify_payment_signature({
"razorpay_order_id": data["razorpay_order_id"],
"razorpay_payment_id": data["razorpay_payment_id"],
"razorpay_signature": data["razorpay_signature"],
})
# 2οΈβ£ Fetch payment order
payment_order = PaymentOrder.objects.get(
razorpay_order_id=data["razorpay_order_id"]
)
# 3οΈβ£ Mark payment as paid
payment_order.status = "PAID"
payment_order.razorpay_payment_id = data["razorpay_payment_id"]
payment_order.save()
# 4οΈβ£ Confirm booking
booking = Booking.objects.get(id=payment_order.linked_object_id)
booking.status = "confirmed"
booking.save()
# π TEMP DEBUG β add just above send_mail
print("Experience fields:")
print(booking.experience._meta.get_fields())
# 5οΈβ£ Send email
if booking.email:
send_mail(
subject="Your Experience Booking is Confirmed π",
message=f"""
Hi {booking.full_name},
Your experience booking has been successfully confirmed!
π
Date: {booking.booking_date}
π¨ Experience: {booking.experience.title}
π° Amount Paid: βΉ{booking.payment_amount}
We look forward to welcoming you β¨
β Team Basho
""",
from_email=settings.DEFAULT_FROM_EMAIL,
recipient_list=[booking.email],
fail_silently=False,
)
return Response({
"message": "Successfully placed order / booked experience"
}, status=status.HTTP_200_OK)
except razorpay.errors.SignatureVerificationError:
return Response(
{"error": "Payment verification failed"},
status=status.HTTP_400_BAD_REQUEST
)
# =========================
# STUDIO BOOKING (NO PAYMENT)
# =========================
@method_decorator(csrf_exempt, name="dispatch")
class CreateStudioBookingView(APIView):
def post(self, request):
serializer = StudioBookingSerializer(data=request.data)
serializer.is_valid(raise_exception=True)
booking = serializer.save()
try:
send_mail(
subject="Your Studio Visit is Confirmed β¨",
message=(
f"Hi {booking.full_name},\n\n"
f"Your studio visit has been confirmed.\n\n"
f"Date: {booking.visit_date}\n"
f"Time Slot: {booking.time_slot}\n\n"
f"β Basho Studio"
),
from_email=settings.DEFAULT_FROM_EMAIL,
recipient_list=[booking.email],
fail_silently=True, # π₯ THIS IS THE KEY
)
except Exception as e:
print("β οΈ Studio email failed:", str(e))
return Response(
{"message": "Studio booking confirmed"},
status=status.HTTP_201_CREATED
)
# =========================
# LISTING VIEWS
# =========================
class ListUpcomingEventsView(APIView):
def get(self, request):
events = UpcomingEvent.objects.all()
serializer = UpcomingEventSerializer(events, many=True)
return Response(serializer.data)
class ListWorkshopsView(APIView):
def get(self, request):
workshops = Workshop.objects.filter(is_active=True)
serializer = WorkshopSerializer(workshops, many=True)
return Response(serializer.data, status=status.HTTP_200_OK)
class WorkshopDetailView(APIView):
def get(self, request, workshop_id):
workshop = get_object_or_404(Workshop, id=workshop_id, is_active=True)
serializer = WorkshopSerializer(workshop)
return Response(serializer.data, status=status.HTTP_200_OK)
class ListWorkshopSlotsView(APIView):
def get(self, request, workshop_id):
workshop = get_object_or_404(Workshop, id=workshop_id, is_active=True)
slots = WorkshopSlot.objects.filter(
workshop=workshop,
is_available=True
).order_by("date", "start_time")
serializer = WorkshopSlotSerializer(slots, many=True)
return Response(serializer.data)
class ListExperienceSlotsView(APIView):
def get(self, request, experience_id):
experience = get_object_or_404(Experience, id=experience_id, is_active=True)
slots = ExperienceSlot.objects.filter(
experience=experience,
is_active=True
).order_by("date", "start_time")
serializer = ExperienceSlotSerializer(slots, many=True)
return Response(serializer.data, status=status.HTTP_200_OK)
class ListExperiencesView(APIView):
def get(self, request):
experiences = Experience.objects.filter(is_active=True)
serializer = ExperienceSerializer(experiences, many=True)
return Response(serializer.data, status=status.HTTP_200_OK)
class ListExperienceAvailableDatesView(APIView):
def get(self, request, experience_id):
experience = get_object_or_404(
Experience,
id=experience_id,
is_active=True
)
# Slots that still have availability
slots = (
ExperienceSlot.objects
.filter(
experience=experience,
is_active=True,
total_slots__gt=F("booked_slots")
)
.values_list("date", flat=True)
.distinct()
.order_by("date")
)
# Convert dates to string (frontend-friendly)
dates = [d.isoformat() for d in slots]
return Response(dates, status=status.HTTP_200_OK)
class ListExperienceSlotsByDateView(APIView):
def get(self, request, experience_id):
date = request.query_params.get("date")
if not date:
return Response(
{"error": "date query param is required"},
status=status.HTTP_400_BAD_REQUEST
)
experience = get_object_or_404(
Experience,
id=experience_id,
is_active=True
)
slots = (
ExperienceSlot.objects
.filter(
experience=experience,
date=date,
is_active=True
)
.order_by("start_time")
)
serializer = ExperienceSlotSerializer(slots, many=True)
return Response(serializer.data, status=status.HTTP_200_OK)
# =========================
# WORKSHOP REGISTRATION (PAYMENT FIRST)
# =========================
class CreateWorkshopRegistrationView(APIView):
def post(self, request):
serializer = WorkshopRegistrationSerializer(data=request.data)
serializer.is_valid(raise_exception=True)
registration = serializer.save(status="pending")
amount = (
registration.workshop.price * registration.number_of_participants
if registration.workshop.price_per_person
else registration.workshop.price
)
razorpay_order = razorpay_client.order.create({
"amount": amount * 100, # paise
"currency": "INR",
"payment_capture": 1
})
payment_order = PaymentOrder.objects.create(
user=request.user if request.user.is_authenticated else None,
order_type="WORKSHOP",
linked_object_id=registration.id,
linked_app="experiences",
amount=amount,
razorpay_order_id=razorpay_order["id"],
)
registration.payment_order = payment_order
registration.save()
return Response(
{
"registration_id": registration.id,
"razorpay_order_id": payment_order.razorpay_order_id,
"amount": amount,
},
status=status.HTTP_201_CREATED
)
@api_view(["GET"])
@permission_classes([IsAuthenticated])
def my_workshops(request):
orders = PaymentOrder.objects.filter(
user=request.user,
order_type="WORKSHOP",
status="PAID"
).order_by("-created_at")
data = [{
"id": o.id,
"amount": o.amount,
"date": o.created_at,
"linked_object_id": o.linked_object_id
} for o in orders]
return JsonResponse({"workshops": data})
@api_view(["GET"])
@permission_classes([IsAuthenticated])
def my_experiences(request):
orders = PaymentOrder.objects.filter(
user=request.user,
order_type="EXPERIENCE",
status="PAID"
).order_by("-created_at")
data = [{
"id": o.id,
"amount": o.amount,
"date": o.created_at,
"linked_object_id": o.linked_object_id
} for o in orders]
return JsonResponse({"experiences": data}) |