X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/8887547a016bbf665ffc4175346f655f0dfa63fb..5aa13410812d3fc4b35c039bdc3f0a2edc5185a1:/src/paypal/views.py diff --git a/src/paypal/views.py b/src/paypal/views.py index 6708f2d86..e46be8ce6 100644 --- a/src/paypal/views.py +++ b/src/paypal/views.py @@ -12,7 +12,7 @@ from django.shortcuts import render from api.piston_patch import HttpResponseAppRedirect from paypal.forms import PaypalSubscriptionForm from paypal.rest import execute_agreement, check_agreement, agreement_approval_url, PaypalError -from paypal.models import BillingAgreement as BillingAgreementModel, BillingPlan +from paypal.models import BillingAgreement, BillingPlan def paypal_form(request, app=False): @@ -37,18 +37,18 @@ def paypal_return(request, app=False): token = request.GET.get('token') if not token: raise Http404 - if not BillingAgreementModel.objects.filter(token=token): + if not BillingAgreement.objects.filter(token=token): resource = execute_agreement(token) if resource.id: amount = int(Decimal(resource.plan.payment_definitions[0].amount['value'])) plan = BillingPlan.objects.get(amount=amount) - active = check_agreement(resource.id) - BillingAgreementModel.objects.create( + active = check_agreement(resource.id) or False + BillingAgreement.objects.create( agreement_id=resource.id, user=request.user, plan=plan, active=active, token=token) else: resource = None if app: - if getattr(resource, 'error'): + if getattr(resource, 'error', None): return HttpResponseAppRedirect('wolnelekturyapp://paypal_error') else: return HttpResponseAppRedirect('wolnelekturyapp://paypal_return')