1
0
mirror of https://github.com/quay/quay.git synced 2026-01-26 06:21:37 +03:00
Files
quay/endpoints/api/subscribe.py
Ryan Wallace a06cc6fa43 chore: update all black versions to 24.4.2 and run make black (#4754)
* chore(pre-commit): match black version with requirements-dev

* run `make black` against repo

* ci: switch to black 24.4.2

* fix: py312

* fix: flake8 errors

* fix: flake8 conflicts

* chore: add git blame ignore revs file
2025-12-19 11:29:53 -06:00

124 lines
3.8 KiB
Python

"""
Subscribe to plans.
"""
import logging
import stripe
import features
from app import billing
from data.billing import PLANS
from endpoints.api import log_action, request_error
from endpoints.api.subscribe_models_pre_oci import data_model as model
from endpoints.exception import NotFound
logger = logging.getLogger(__name__)
def check_repository_usage(user_or_org, plan_found):
private_repos = model.get_private_repo_count(user_or_org.username)
if plan_found is None:
repos_allowed = 0
else:
repos_allowed = plan_found["privateRepos"]
if private_repos > repos_allowed:
model.create_unique_notification(
"over_private_usage", user_or_org.username, {"namespace": user_or_org.username}
)
else:
model.delete_notifications_by_kind(user_or_org.username, "over_private_usage")
def carderror_response(exc):
return {"carderror": str(exc)}, 402
def connection_response(exc):
return {"message": "Could not contact Stripe. Please try again."}, 503
def subscription_view(stripe_subscription, used_repos):
view = {
"hasSubscription": True,
"isExistingCustomer": True,
"currentPeriodStart": stripe_subscription.current_period_start,
"currentPeriodEnd": stripe_subscription.current_period_end,
"plan": stripe_subscription.plan.id,
"usedPrivateRepos": used_repos,
"trialStart": stripe_subscription.trial_start,
"trialEnd": stripe_subscription.trial_end,
}
return view
def get_price(plan, require_business_plan):
"""Billing Price (previously stripe Plan) from id."""
if not features.BILLING:
return
plan_found = None
for plan_obj in PLANS:
if plan_obj["stripeId"] == plan:
plan_found = plan_obj
if not plan_found or plan_found["deprecated"]:
logger.warning("Plan not found or deprecated: %s", plan)
raise NotFound()
if require_business_plan and not plan_found["bus_features"] and not plan_found["price"] == 0:
logger.warning("Business attempting to subscribe to personal plan: %s", plan_found["title"])
raise request_error(message="No matching plan found")
return plan_found
def change_subscription(user, plan):
private_repos = model.get_private_repo_count(user.username)
# This is the default response
response_json = {
"plan": plan,
"usedPrivateRepos": private_repos,
}
status_code = 200
if not user.stripe_id:
return response_json, status_code
try:
cus = billing.Customer.retrieve(user.stripe_id)
except stripe.error.APIConnectionError as e:
return connection_response(e)
if plan["price"] == 0:
if cus.subscription is not None:
# We only have to cancel the subscription if they actually have one
try:
billing.Subscription.delete(cus.subscription.id)
except stripe.error.APIConnectionError as e:
return connection_response(e)
check_repository_usage(user, plan)
log_action("account_change_plan", user.username, {"plan": plan["stripeId"]})
else:
# User may have been a previous customer who is resubscribing
modify_cus_args = {"plan": plan["stripeId"], "payment_behavior": "default_incomplete"}
try:
billing.Customer.modify(cus.id, **modify_cus_args)
except stripe.error.CardError as e:
return carderror_response(e)
except stripe.error.APIConnectionError as e:
return connection_response(e)
cus = cus.refresh()
response_json = subscription_view(cus.subscription, private_repos)
check_repository_usage(user, plan)
log_action("account_change_plan", user.username, {"plan": plan["stripeId"]})
return response_json, status_code