2018-03-31 04:13:44 +02:00
|
|
|
import datetime
|
2018-01-30 21:03:59 +01:00
|
|
|
from functools import wraps
|
2018-01-30 20:49:25 +01:00
|
|
|
import logging
|
|
|
|
import os
|
2018-07-13 17:34:39 +02:00
|
|
|
from typing import Any, Callable, Optional, TypeVar, Tuple
|
2018-06-28 00:48:51 +02:00
|
|
|
import ujson
|
2018-01-30 20:49:25 +01:00
|
|
|
|
|
|
|
from django.conf import settings
|
2018-06-28 00:48:51 +02:00
|
|
|
from django.db import transaction
|
2018-01-30 21:03:59 +01:00
|
|
|
from django.utils.translation import ugettext as _
|
2018-07-13 17:34:39 +02:00
|
|
|
from django.core.signing import Signer
|
2018-01-30 20:49:25 +01:00
|
|
|
import stripe
|
|
|
|
|
2018-01-30 21:03:59 +01:00
|
|
|
from zerver.lib.exceptions import JsonableError
|
2018-01-30 20:49:25 +01:00
|
|
|
from zerver.lib.logging_util import log_to_file
|
2018-06-28 00:48:51 +02:00
|
|
|
from zerver.lib.timestamp import datetime_to_timestamp, timestamp_to_datetime
|
2018-07-13 17:34:39 +02:00
|
|
|
from zerver.lib.utils import generate_random_token
|
2018-06-28 00:48:51 +02:00
|
|
|
from zerver.models import Realm, UserProfile, RealmAuditLog
|
2018-03-31 04:13:44 +02:00
|
|
|
from zilencer.models import Customer, Plan
|
2018-01-30 20:49:25 +01:00
|
|
|
from zproject.settings import get_secret
|
|
|
|
|
|
|
|
STRIPE_PUBLISHABLE_KEY = get_secret('stripe_publishable_key')
|
2018-03-31 04:13:44 +02:00
|
|
|
stripe.api_key = get_secret('stripe_secret_key')
|
2018-01-30 20:49:25 +01:00
|
|
|
|
|
|
|
BILLING_LOG_PATH = os.path.join('/var/log/zulip'
|
|
|
|
if not settings.DEVELOPMENT
|
|
|
|
else settings.DEVELOPMENT_LOG_DIRECTORY,
|
|
|
|
'billing.log')
|
|
|
|
billing_logger = logging.getLogger('zilencer.stripe')
|
|
|
|
log_to_file(billing_logger, BILLING_LOG_PATH)
|
|
|
|
log_to_file(logging.getLogger('stripe'), BILLING_LOG_PATH)
|
|
|
|
|
2018-03-31 04:13:44 +02:00
|
|
|
# To generate the fixture data in stripe_fixtures.json:
|
|
|
|
# * Set PRINT_STRIPE_FIXTURE_DATA to True
|
|
|
|
# * ./manage.py setup_stripe
|
|
|
|
# * Customer.objects.all().delete()
|
|
|
|
# * Log in as a user, and go to http://localhost:9991/upgrade/
|
|
|
|
# * Click Add card. Enter the following billing details:
|
|
|
|
# Name: Ada Starr, Street: Under the sea, City: Pacific,
|
|
|
|
# Zip: 33333, Country: United States
|
|
|
|
# Card number: 4242424242424242, Expiry: 03/33, CVV: 333
|
|
|
|
# * Click Make payment.
|
|
|
|
# * Copy out the 4 blobs of json from the dev console into stripe_fixtures.json.
|
|
|
|
# The contents of that file are '{\n' + concatenate the 4 json blobs + '\n}'.
|
|
|
|
# Then you can run e.g. `M-x mark-whole-buffer` and `M-x indent-region` in emacs
|
|
|
|
# to prettify the file (and make 4 space indents).
|
|
|
|
# * Copy out the customer id, plan id, and quantity values into
|
|
|
|
# zilencer.tests.test_stripe.StripeTest.setUp.
|
|
|
|
# * Set PRINT_STRIPE_FIXTURE_DATA to False
|
|
|
|
PRINT_STRIPE_FIXTURE_DATA = False
|
|
|
|
|
2018-01-30 21:03:59 +01:00
|
|
|
CallableT = TypeVar('CallableT', bound=Callable[..., Any])
|
|
|
|
|
2018-03-31 04:13:44 +02:00
|
|
|
def get_seat_count(realm: Realm) -> int:
|
|
|
|
return UserProfile.objects.filter(realm=realm, is_active=True, is_bot=False).count()
|
|
|
|
|
2018-07-13 17:34:39 +02:00
|
|
|
def sign_string(string: str) -> Tuple[str, str]:
|
|
|
|
salt = generate_random_token(64)
|
|
|
|
signer = Signer(salt=salt)
|
|
|
|
return signer.sign(string), salt
|
|
|
|
|
|
|
|
def unsign_string(signed_string: str, salt: str) -> str:
|
|
|
|
signer = Signer(salt=salt)
|
|
|
|
return signer.unsign(signed_string)
|
|
|
|
|
2018-07-27 17:47:03 +02:00
|
|
|
class BillingError(Exception):
|
2018-08-06 06:16:29 +02:00
|
|
|
# error messages
|
|
|
|
CONTACT_SUPPORT = _("Something went wrong. Please contact %s)" % (settings.ZULIP_ADMINISTRATOR,))
|
|
|
|
TRY_RELOADING = _("Something went wrong. Please reload the page.")
|
|
|
|
|
|
|
|
# description is used only for tests
|
|
|
|
def __init__(self, description: str, message: str) -> None:
|
|
|
|
self.description = description
|
|
|
|
self.message = message
|
2018-07-27 17:47:03 +02:00
|
|
|
|
2018-01-30 21:03:59 +01:00
|
|
|
def catch_stripe_errors(func: CallableT) -> CallableT:
|
|
|
|
@wraps(func)
|
|
|
|
def wrapped(*args: Any, **kwargs: Any) -> Any:
|
2018-07-26 10:16:20 +02:00
|
|
|
if settings.DEVELOPMENT and not settings.TEST_SUITE: # nocoverage
|
|
|
|
if STRIPE_PUBLISHABLE_KEY is None:
|
2018-08-06 06:16:29 +02:00
|
|
|
raise BillingError('missing stripe config', "Missing Stripe config. "
|
|
|
|
"See https://zulip.readthedocs.io/en/latest/subsystems/billing.html.")
|
2018-07-26 10:16:20 +02:00
|
|
|
if not Plan.objects.exists():
|
2018-08-06 06:16:29 +02:00
|
|
|
raise BillingError('missing plans',
|
|
|
|
"Plan objects not created. Please run ./manage.py setup_stripe")
|
2018-01-30 21:03:59 +01:00
|
|
|
try:
|
|
|
|
return func(*args, **kwargs)
|
|
|
|
except stripe.error.StripeError as e:
|
2018-08-06 06:16:29 +02:00
|
|
|
billing_logger.error("Stripe error: %d %s", e.http_status, e.__class__.__name__)
|
2018-01-30 21:03:59 +01:00
|
|
|
if isinstance(e, stripe.error.CardError):
|
2018-08-06 06:16:29 +02:00
|
|
|
raise BillingError('card error', e.json_body.get('error', {}).get('message'))
|
2018-01-30 21:03:59 +01:00
|
|
|
else:
|
2018-08-06 06:16:29 +02:00
|
|
|
raise BillingError('other stripe error', BillingError.CONTACT_SUPPORT)
|
2018-01-30 21:03:59 +01:00
|
|
|
return wrapped # type: ignore # https://github.com/python/mypy/issues/1927
|
|
|
|
|
|
|
|
@catch_stripe_errors
|
2018-08-06 18:22:55 +02:00
|
|
|
def stripe_get_customer(stripe_customer_id: str) -> stripe.Customer:
|
2018-07-24 14:40:46 +02:00
|
|
|
stripe_customer = stripe.Customer.retrieve(stripe_customer_id, expand=["default_source"])
|
2018-03-31 04:13:44 +02:00
|
|
|
if PRINT_STRIPE_FIXTURE_DATA:
|
2018-08-06 18:18:16 +02:00
|
|
|
print(''.join(['"customer_with_subscription": ', str(stripe_customer), ','])) # nocoverage
|
2018-03-31 04:13:44 +02:00
|
|
|
return stripe_customer
|
|
|
|
|
|
|
|
@catch_stripe_errors
|
2018-08-06 18:23:48 +02:00
|
|
|
def stripe_get_upcoming_invoice(stripe_customer_id: str) -> stripe.Invoice:
|
2018-03-31 04:13:44 +02:00
|
|
|
stripe_invoice = stripe.Invoice.upcoming(customer=stripe_customer_id)
|
|
|
|
if PRINT_STRIPE_FIXTURE_DATA:
|
|
|
|
print(''.join(['"upcoming_invoice": ', str(stripe_invoice), ','])) # nocoverage
|
|
|
|
return stripe_invoice
|
2018-01-30 20:49:25 +01:00
|
|
|
|
2018-07-10 10:56:21 +02:00
|
|
|
# Return type should be Optional[stripe.Subscription], which throws a mypy error.
|
|
|
|
# Will fix once we add type stubs for the Stripe API.
|
|
|
|
def extract_current_subscription(stripe_customer: stripe.Customer) -> Any:
|
|
|
|
if not stripe_customer.subscriptions:
|
|
|
|
return None
|
2018-07-24 14:35:22 +02:00
|
|
|
for stripe_subscription in stripe_customer.subscriptions:
|
2018-07-10 10:56:21 +02:00
|
|
|
if stripe_subscription.status != "canceled":
|
|
|
|
return stripe_subscription
|
|
|
|
return None
|
|
|
|
|
2018-03-31 04:13:44 +02:00
|
|
|
@catch_stripe_errors
|
2018-07-10 12:11:34 +02:00
|
|
|
def do_create_customer_with_payment_source(user: UserProfile, stripe_token: str) -> stripe.Customer:
|
2018-03-31 04:13:44 +02:00
|
|
|
realm = user.realm
|
|
|
|
stripe_customer = stripe.Customer.create(
|
|
|
|
description="%s (%s)" % (realm.string_id, realm.name),
|
2018-08-08 13:17:10 +02:00
|
|
|
email=user.email,
|
2018-03-31 04:13:44 +02:00
|
|
|
metadata={'realm_id': realm.id, 'realm_str': realm.string_id},
|
|
|
|
source=stripe_token)
|
|
|
|
if PRINT_STRIPE_FIXTURE_DATA:
|
|
|
|
print(''.join(['"create_customer": ', str(stripe_customer), ','])) # nocoverage
|
2018-06-28 00:48:51 +02:00
|
|
|
event_time = timestamp_to_datetime(stripe_customer.created)
|
|
|
|
RealmAuditLog.objects.create(
|
2018-08-10 23:23:28 +02:00
|
|
|
realm=user.realm, acting_user=user, event_type=RealmAuditLog.STRIPE_CUSTOMER_CREATED,
|
2018-07-22 18:06:36 +02:00
|
|
|
event_time=event_time)
|
2018-06-28 00:48:51 +02:00
|
|
|
RealmAuditLog.objects.create(
|
2018-08-11 00:46:39 +02:00
|
|
|
realm=user.realm, acting_user=user, event_type=RealmAuditLog.STRIPE_CARD_ADDED,
|
|
|
|
event_time=event_time)
|
2018-07-10 12:11:34 +02:00
|
|
|
Customer.objects.create(
|
2018-03-31 04:13:44 +02:00
|
|
|
realm=realm,
|
|
|
|
stripe_customer_id=stripe_customer.id,
|
|
|
|
billing_user=user)
|
2018-07-10 12:11:34 +02:00
|
|
|
return stripe_customer
|
2018-03-31 04:13:44 +02:00
|
|
|
|
|
|
|
@catch_stripe_errors
|
2018-07-20 17:19:19 +02:00
|
|
|
def do_subscribe_customer_to_plan(stripe_customer: stripe.Customer, stripe_plan_id: str,
|
2018-03-31 04:13:44 +02:00
|
|
|
seat_count: int, tax_percent: float) -> None:
|
2018-07-10 10:56:21 +02:00
|
|
|
if extract_current_subscription(stripe_customer) is not None:
|
2018-08-06 06:16:29 +02:00
|
|
|
# Most likely due to a race condition where two people in the org
|
|
|
|
# try to upgrade their plan at the same time
|
2018-07-10 10:56:21 +02:00
|
|
|
billing_logger.error("Stripe customer %s trying to subscribe to %s, "
|
|
|
|
"but has an active subscription" % (stripe_customer.id, stripe_plan_id))
|
2018-08-06 06:16:29 +02:00
|
|
|
raise BillingError('subscribing with existing subscription', BillingError.TRY_RELOADING)
|
2018-03-31 04:13:44 +02:00
|
|
|
stripe_subscription = stripe.Subscription.create(
|
2018-07-10 12:11:34 +02:00
|
|
|
customer=stripe_customer.id,
|
2018-03-31 04:13:44 +02:00
|
|
|
billing='charge_automatically',
|
|
|
|
items=[{
|
|
|
|
'plan': stripe_plan_id,
|
|
|
|
'quantity': seat_count,
|
|
|
|
}],
|
|
|
|
prorate=True,
|
|
|
|
tax_percent=tax_percent)
|
|
|
|
if PRINT_STRIPE_FIXTURE_DATA:
|
|
|
|
print(''.join(['"create_subscription": ', str(stripe_subscription), ','])) # nocoverage
|
2018-07-10 12:11:34 +02:00
|
|
|
customer = Customer.objects.get(stripe_customer_id=stripe_customer.id)
|
2018-06-28 00:48:51 +02:00
|
|
|
with transaction.atomic():
|
|
|
|
customer.realm.has_seat_based_plan = True
|
|
|
|
customer.realm.save(update_fields=['has_seat_based_plan'])
|
|
|
|
RealmAuditLog.objects.create(
|
|
|
|
realm=customer.realm,
|
|
|
|
acting_user=customer.billing_user,
|
2018-07-22 18:06:36 +02:00
|
|
|
event_type=RealmAuditLog.REALM_PLAN_STARTED,
|
2018-06-28 00:48:51 +02:00
|
|
|
event_time=timestamp_to_datetime(stripe_subscription.created),
|
|
|
|
extra_data=ujson.dumps({'plan': stripe_plan_id, 'quantity': seat_count}))
|
|
|
|
|
|
|
|
current_seat_count = get_seat_count(customer.realm)
|
|
|
|
if seat_count != current_seat_count:
|
|
|
|
RealmAuditLog.objects.create(
|
|
|
|
realm=customer.realm,
|
2018-07-31 05:54:43 +02:00
|
|
|
event_type=RealmAuditLog.REALM_PLAN_QUANTITY_RESET,
|
2018-06-28 00:48:51 +02:00
|
|
|
event_time=timestamp_to_datetime(stripe_subscription.created),
|
|
|
|
requires_billing_update=True,
|
|
|
|
extra_data=ujson.dumps({'quantity': current_seat_count}))
|
2018-07-27 15:37:04 +02:00
|
|
|
|
2018-08-06 06:47:15 +02:00
|
|
|
def process_initial_upgrade(user: UserProfile, plan: Plan, seat_count: int, stripe_token: str) -> None:
|
2018-07-27 15:37:04 +02:00
|
|
|
stripe_customer = do_create_customer_with_payment_source(user, stripe_token)
|
|
|
|
do_subscribe_customer_to_plan(
|
|
|
|
stripe_customer=stripe_customer,
|
2018-08-06 06:47:15 +02:00
|
|
|
stripe_plan_id=plan.stripe_plan_id,
|
2018-07-27 15:37:04 +02:00
|
|
|
seat_count=seat_count,
|
|
|
|
# TODO: billing address details are passed to us in the request;
|
|
|
|
# use that to calculate taxes.
|
|
|
|
tax_percent=0)
|