X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/74f7584b18b4386433b4c02336f5adafcae530c5..972f33fb2d98a9ff59c931ac6a8a82def7cea6fe:/src/paypal/views.py diff --git a/src/paypal/views.py b/src/paypal/views.py index b1720f9f8..7d7eea5c8 100644 --- a/src/paypal/views.py +++ b/src/paypal/views.py @@ -6,30 +6,20 @@ from decimal import Decimal from django.contrib.auth.decorators import login_required from django.http import Http404 from django.http.response import HttpResponseRedirect, HttpResponseForbidden -from django.shortcuts import get_object_or_404, render +from django.shortcuts import get_object_or_404, render, redirect from api.utils import HttpResponseAppRedirect from club.models import Schedule -from paypal.forms import PaypalSubscriptionForm -from paypal.rest import execute_agreement, check_agreement, agreement_approval_url, PaypalError +from paypal.rest import execute_agreement, check_agreement, agreement_approval_url from paypal.models import BillingAgreement, BillingPlan -def paypal_form(request, app=False): - if request.POST: - if not request.user.is_authenticated: - return HttpResponseForbidden() - form = PaypalSubscriptionForm(data=request.POST) - if form.is_valid(): - amount = form.cleaned_data['amount'] - try: - approval_url = agreement_approval_url(amount, app=app) - except PaypalError as e: - return render(request, 'paypal/error_page.html', {'error': str(e)}) - return HttpResponseRedirect(approval_url) - else: - form = PaypalSubscriptionForm() - return render(request, 'paypal/form.html', {'form': form}) +def paypal_init(request, key): + schedule = get_object_or_404(Schedule, key=key) + schedule.method = 'paypal' + schedule.save(update_fields=['method']) + app = request.GET.get('app') + return redirect(agreement_approval_url(schedule.amount, schedule.key, app=app)) @login_required