2020-02-21 09:41:22 +00:00
|
|
|
import stripe
|
2020-03-02 21:26:40 +00:00
|
|
|
import stripe.error
|
|
|
|
import logging
|
2020-02-21 09:41:22 +00:00
|
|
|
|
2020-03-03 15:55:56 +00:00
|
|
|
from django.core.exceptions import ObjectDoesNotExist
|
2020-05-01 22:16:29 +00:00
|
|
|
from django.conf import settings
|
2020-03-03 15:55:56 +00:00
|
|
|
|
2020-05-01 22:16:29 +00:00
|
|
|
import uncloud_pay.models
|
2020-03-02 21:26:40 +00:00
|
|
|
|
|
|
|
CURRENCY = 'chf'
|
|
|
|
|
2020-05-01 22:16:29 +00:00
|
|
|
stripe.api_key = settings.STRIPE_KEY
|
2020-03-02 21:26:40 +00:00
|
|
|
|
2020-02-21 09:41:22 +00:00
|
|
|
def handle_stripe_error(f):
|
|
|
|
def handle_problems(*args, **kwargs):
|
|
|
|
response = {
|
|
|
|
'paid': False,
|
|
|
|
'response_object': None,
|
|
|
|
'error': None
|
|
|
|
}
|
|
|
|
|
2020-03-05 10:03:47 +00:00
|
|
|
common_message = "Currently it is not possible to make payments. Please try agin later."
|
2020-02-21 09:41:22 +00:00
|
|
|
try:
|
|
|
|
response_object = f(*args, **kwargs)
|
2020-03-05 10:03:47 +00:00
|
|
|
return response_object
|
2020-02-21 09:41:22 +00:00
|
|
|
except stripe.error.CardError as e:
|
|
|
|
# Since it's a decline, stripe.error.CardError will be caught
|
|
|
|
body = e.json_body
|
|
|
|
logging.error(str(e))
|
2020-03-05 10:03:47 +00:00
|
|
|
|
|
|
|
raise e # For error handling.
|
2020-02-21 09:41:22 +00:00
|
|
|
except stripe.error.RateLimitError:
|
2020-03-05 10:03:47 +00:00
|
|
|
logging.error("Too many requests made to the API too quickly.")
|
|
|
|
raise Exception(common_message)
|
2020-02-21 09:41:22 +00:00
|
|
|
except stripe.error.InvalidRequestError as e:
|
|
|
|
logging.error(str(e))
|
2020-03-05 10:03:47 +00:00
|
|
|
raise Exception('Invalid parameters.')
|
2020-02-21 09:41:22 +00:00
|
|
|
except stripe.error.AuthenticationError as e:
|
|
|
|
# Authentication with Stripe's API failed
|
|
|
|
# (maybe you changed API keys recently)
|
|
|
|
logging.error(str(e))
|
2020-03-05 10:03:47 +00:00
|
|
|
raise Exception(common_message)
|
2020-02-21 09:41:22 +00:00
|
|
|
except stripe.error.APIConnectionError as e:
|
|
|
|
logging.error(str(e))
|
2020-03-05 10:03:47 +00:00
|
|
|
raise Exception(common_message)
|
2020-02-21 09:41:22 +00:00
|
|
|
except stripe.error.StripeError as e:
|
2020-03-05 10:03:47 +00:00
|
|
|
# XXX: maybe send email
|
2020-02-21 09:41:22 +00:00
|
|
|
logging.error(str(e))
|
2020-03-05 10:03:47 +00:00
|
|
|
raise Exception(common_message)
|
2020-02-21 09:41:22 +00:00
|
|
|
except Exception as e:
|
|
|
|
# maybe send email
|
|
|
|
logging.error(str(e))
|
2020-03-05 10:03:47 +00:00
|
|
|
raise Exception(common_message)
|
2020-02-21 09:41:22 +00:00
|
|
|
|
|
|
|
return handle_problems
|
2020-03-02 21:26:40 +00:00
|
|
|
|
2020-03-05 09:23:34 +00:00
|
|
|
def public_api_key():
|
2020-05-01 22:16:29 +00:00
|
|
|
return settings.STRIPE_PUBLIC_KEY
|
2020-03-05 09:23:34 +00:00
|
|
|
|
2020-03-03 15:55:56 +00:00
|
|
|
def get_customer_id_for(user):
|
|
|
|
try:
|
|
|
|
# .get() raise if there is no matching entry.
|
|
|
|
return uncloud_pay.models.StripeCustomer.objects.get(owner=user).stripe_id
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
# No entry yet - making a new one.
|
2020-03-05 10:03:47 +00:00
|
|
|
try:
|
|
|
|
customer = create_customer(user.username, user.email)
|
|
|
|
uncloud_stripe_mapping = uncloud_pay.models.StripeCustomer.objects.create(
|
2020-03-05 10:28:20 +00:00
|
|
|
owner=user, stripe_id=customer.id)
|
2020-03-05 10:03:47 +00:00
|
|
|
return uncloud_stripe_mapping.stripe_id
|
|
|
|
except Exception as e:
|
2020-03-03 15:55:56 +00:00
|
|
|
return None
|
|
|
|
|
2020-03-02 21:26:40 +00:00
|
|
|
@handle_stripe_error
|
2020-03-05 09:23:34 +00:00
|
|
|
def create_setup_intent(customer_id):
|
|
|
|
return stripe.SetupIntent.create(customer=customer_id)
|
|
|
|
|
|
|
|
@handle_stripe_error
|
|
|
|
def get_setup_intent(setup_intent_id):
|
|
|
|
return stripe.SetupIntent.retrieve(setup_intent_id)
|
|
|
|
|
|
|
|
def get_payment_method(payment_method_id):
|
|
|
|
return stripe.PaymentMethod.retrieve(payment_method_id)
|
|
|
|
|
2020-03-02 21:26:40 +00:00
|
|
|
@handle_stripe_error
|
2020-03-03 17:16:25 +00:00
|
|
|
def charge_customer(amount, customer_id, card_id):
|
|
|
|
# Amount is in CHF but stripes requires smallest possible unit.
|
2020-03-05 09:23:34 +00:00
|
|
|
# https://stripe.com/docs/api/payment_intents/create#create_payment_intent-amount
|
2020-03-03 17:16:25 +00:00
|
|
|
adjusted_amount = int(amount * 100)
|
2020-03-05 09:23:34 +00:00
|
|
|
return stripe.PaymentIntent.create(
|
|
|
|
amount=adjusted_amount,
|
|
|
|
currency=CURRENCY,
|
|
|
|
customer=customer_id,
|
|
|
|
payment_method=card_id,
|
|
|
|
off_session=True,
|
|
|
|
confirm=True,
|
|
|
|
)
|
2020-03-02 21:26:40 +00:00
|
|
|
|
|
|
|
@handle_stripe_error
|
|
|
|
def create_customer(name, email):
|
|
|
|
return stripe.Customer.create(name=name, email=email)
|
|
|
|
|
|
|
|
@handle_stripe_error
|
|
|
|
def get_customer(customer_id):
|
|
|
|
return stripe.Customer.retrieve(customer_id)
|