-# -*- coding: utf-8 -*-
# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
import paypalrestsdk
import pytz
from django.contrib.sites.models import Site
-from django.core.urlresolvers import reverse
+from django.urls import reverse
from django.utils import timezone
-from paypalrestsdk import BillingPlan, BillingAgreement, ResourceNotFound
from django.conf import settings
-from .models import BillingPlan as BillingPlanModel, BillingAgreement as BillingAgreementModel
+from .models import BillingPlan, BillingAgreement
paypalrestsdk.configure(settings.PAYPAL_CONFIG)
def create_plan(amount):
- billing_plan = BillingPlan({
+ billing_plan = paypalrestsdk.BillingPlan({
"name": "Cykliczna darowizna na Wolne Lektury: %s zł" % amount,
"description": "Cykliczna darowizna na wsparcie Wolnych Lektur",
"merchant_preferences": {
raise PaypalError(billing_plan.error)
if not billing_plan.activate():
raise PaypalError(billing_plan.error)
- plan, created = BillingPlanModel.objects.get_or_create(amount=amount, defaults={'plan_id': billing_plan.id})
+ plan, created = BillingPlan.objects.get_or_create(amount=amount, defaults={'plan_id': billing_plan.id})
return plan.plan_id
def create_agreement(amount, app=False):
try:
- plan = BillingPlanModel.objects.get(amount=amount)
- except BillingPlanModel.DoesNotExist:
+ plan = BillingPlan.objects.get(amount=amount)
+ except BillingPlan.DoesNotExist:
plan_id = create_plan(amount)
else:
plan_id = plan.plan_id
start = (timezone.now() + timedelta(0, 3600*24)).astimezone(pytz.utc).strftime('%Y-%m-%dT%H:%M:%SZ')
- billing_agreement = BillingAgreement({
+ billing_agreement = paypalrestsdk.BillingAgreement({
"name": u"Subskrypcja klubu WL",
"description": u"Stałe wsparcie Wolnych Lektur kwotą %s złotych" % amount,
"start_date": start,
def get_agreement(agreement_id):
try:
- return BillingAgreement.find(agreement_id)
- except ResourceNotFound:
+ return paypalrestsdk.BillingAgreement.find(agreement_id)
+ except paypalrestsdk.ResourceNotFound:
return None
def user_is_subscribed(user):
- agreements = BillingAgreementModel.objects.filter(user=user)
+ agreements = BillingAgreement.objects.filter(user=user)
return any(agreement.check_agreement() for agreement in agreements)
def execute_agreement(token):
- return BillingAgreement.execute(token)
+ return paypalrestsdk.BillingAgreement.execute(token)