paypal
[wolnelektury.git] / src / club / payment_methods.py
index 363d445..9b73c89 100644 (file)
@@ -1,53 +1,96 @@
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+from django.conf import settings
 from django.urls import reverse
+from paypal.rest import agreement_approval_url
 
 
 class PaymentMethod(object):
+    is_onetime = False
     is_recurring = False
 
-    @classmethod
-    def get_payment_url(cls, schedule):
+    def initiate(self, request, schedule):
         return reverse('club_dummy_payment', args=[schedule.key])
 
 
 class PayU(PaymentMethod):
+    is_onetime = True
     slug = 'payu'
     name = 'PayU'
     template_name = 'club/payment/payu.html'
 
-    @classmethod
-    def get_payment_url(cls, schedule):
-        return reverse('club_dummy_payment', args=[schedule.key])
+    def __init__(self, pos_id):
+        self.pos_id = pos_id
+
+    def initiate(self, request, schedule):
+        # Create Order at once.
+        from .models import PayUOrder
+        order = PayUOrder.objects.create(
+            pos_id=self.pos_id,
+            customer_ip=request.META['REMOTE_ADDR'],
+            schedule=schedule,
+        )
+        return order.put()
 
 
 class PayURe(PaymentMethod):
-    slug='payu-re'
-    name = 'PayU Recurring'
+    slug = 'payu-re'
+    name = 'PayU recurring'
     template_name = 'club/payment/payu-re.html'
     is_recurring = True
 
-    @classmethod
-    def get_payment_url(cls, schedule):
-        return reverse('club_dummy_payment', args=[schedule.key])
+    def __init__(self, pos_id):
+        self.pos_id = pos_id
 
+    def initiate(self, request, schedule):
+        return reverse('club_payu_rec_payment', args=[schedule.key])
 
-class PayPalRe(PaymentMethod):
-    slug='paypal-re'
-    name = 'PayPal Recurring'
-    template_name = 'club/payment/paypal-re.html'
+    def pay(self, request, schedule):
+        # Create order, put it and see what happens next.
+        from .models import PayUOrder
+        if request is not None:
+            ip = request.META['REMOTE_ADDR']
+        else:
+            ip = '127.0.0.1'
+        order = PayUOrder.objects.create(
+            pos_id=self.pos_id,
+            customer_ip=ip,
+            schedule=schedule,
+        )
+        return order.put()
+        
+
+class PayPal(PaymentMethod):
+    slug = 'paypal'
+    name = 'PayPal'
+    template_name = 'club/payment/paypal.html'
     is_recurring = True
+    is_onetime = False
 
-    @classmethod
-    def get_payment_url(cls, schedule):
-        return reverse('club_dummy_payment', args=[schedule.key])
+    def initiate(self, request, schedule):
+        app = request.GET.get('app')
+        return agreement_approval_url(schedule.amount, schedule.key, app=app)
+
+
+methods = []
+
+pos = getattr(settings, 'CLUB_PAYU_RECURRING_POS', None)
+if pos:
+    recurring_payment_method = PayURe(pos)
+    methods.append(recurring_payment_method)
+else:
+    recurring_payment_method = None
+
+pos = getattr(settings, 'CLUB_PAYU_POS', None)
+if pos:
+    single_payment_method = PayU(pos)
+    methods.append(single_payment_method)
+else:
+    single_payment_method = None
 
 
-methods = [
-    PayU,
-    PayURe,
-    PayPalRe,
-]
 
-method_by_slug = {
-    m.slug: m
-    for m in methods
-}
+methods.append(
+    PayPal()
+)