diff --git a/endpoints/api/billing.py b/endpoints/api/billing.py index a00a28a72..6880308a0 100644 --- a/endpoints/api/billing.py +++ b/endpoints/api/billing.py @@ -221,6 +221,7 @@ class UserPlan(ApiResource): @nickname('getUserSubscription') def get(self): """ Fetch any existing subscription for the user. """ + cus = None user = get_authenticated_user() private_repos = model.get_private_repo_count(user.username) @@ -231,6 +232,8 @@ class UserPlan(ApiResource): return subscription_view(cus.subscription, private_repos) return { + 'hasSubscription': False, + 'isExistingCustomer': cus is not None, 'plan': 'free', 'usedPrivateRepos': private_repos, } @@ -280,6 +283,7 @@ class OrganizationPlan(ApiResource): @nickname('getOrgSubscription') def get(self, orgname): """ Fetch any existing subscription for the org. """ + cus = None permission = AdministerOrganizationPermission(orgname) if permission.can(): private_repos = model.get_private_repo_count(orgname) @@ -291,6 +295,8 @@ class OrganizationPlan(ApiResource): return subscription_view(cus.subscription, private_repos) return { + 'hasSubscription': False, + 'isExistingCustomer': cus is not None, 'plan': 'free', 'usedPrivateRepos': private_repos, } diff --git a/endpoints/api/subscribe.py b/endpoints/api/subscribe.py index 9d3dcc00a..dd6de9678 100644 --- a/endpoints/api/subscribe.py +++ b/endpoints/api/subscribe.py @@ -18,6 +18,8 @@ def carderror_response(exc): 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, diff --git a/static/directives/plan-manager.html b/static/directives/plan-manager.html index da0975644..af4c3c016 100644 --- a/static/directives/plan-manager.html +++ b/static/directives/plan-manager.html @@ -29,11 +29,6 @@ Repository Usage - -
- Next billing period: {{ parseDate(subscription.currentPeriodEnd) | date }} -
- @@ -67,8 +62,8 @@ ng-click="changeSubscription(plan.stripeId)"> Change - Start Trial - Subscribe + Start Free Trial + Subscribe