X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/74f7584b18b4386433b4c02336f5adafcae530c5..2c101e78aee8cd3ccf3f24a0ecaa22fa77593c5c:/src/paypal/views.py diff --git a/src/paypal/views.py b/src/paypal/views.py index b1720f9f8..444475f78 100644 --- a/src/paypal/views.py +++ b/src/paypal/views.py @@ -1,35 +1,25 @@ -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # 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