From 1c5087ba451f80fd7327849883af428efaee1f53 Mon Sep 17 00:00:00 2001 From: Gero Posmyk-Leinemann <32448529+geropl@users.noreply.github.com> Date: Tue, 19 Sep 2023 11:48:58 +0200 Subject: [PATCH] [ubp] Improve logging when checking hasPaidSubscription (#18741) --- .../src/billing/entitlement-service-ubp.ts | 23 +++++++++++++++---- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/components/server/src/billing/entitlement-service-ubp.ts b/components/server/src/billing/entitlement-service-ubp.ts index 26335b4f9d8e0c..665792639101dc 100644 --- a/components/server/src/billing/entitlement-service-ubp.ts +++ b/components/server/src/billing/entitlement-service-ubp.ts @@ -21,6 +21,7 @@ import { inject, injectable } from "inversify"; import { EntitlementService, HitParallelWorkspaceLimit, MayStartWorkspaceResult } from "./entitlement-service"; import { CostCenter_BillingStrategy } from "@gitpod/usage-api/lib/usage/v1/usage.pb"; import { UsageService } from "../orgs/usage-service"; +import { log } from "@gitpod/gitpod-protocol/lib/util/logging"; const MAX_PARALLEL_WORKSPACES_FREE = 4; const MAX_PARALLEL_WORKSPACES_PAID = 16; @@ -110,10 +111,17 @@ export class EntitlementServiceUBP implements EntitlementService { private async hasPaidSubscription(userId: string, organizationId?: string): Promise { if (organizationId) { - // This is the "stricter", more correct version: We only allow privileges on the Organization that is paying for it - const { billingStrategy } = await this.usageService.getCostCenter(userId, organizationId); - return billingStrategy === CostCenter_BillingStrategy.BILLING_STRATEGY_STRIPE; + try { + // This is the "stricter", more correct version: We only allow privileges on the Organization that is paying for it + const { billingStrategy } = await this.usageService.getCostCenter(userId, organizationId); + return billingStrategy === CostCenter_BillingStrategy.BILLING_STRATEGY_STRIPE; + } catch (err) { + log.warn({ userId, organizationId }, "Error checking if user is subscribed to organization", err); + return false; + } } + + // TODO(gpl) Remove everything below once organizations are fully rolled out // This is the old behavior, stemming from our transition to PAYF, where our API did-/doesn't pass organizationId, yet // Member of paid team? const teams = await this.teamDB.findTeamsByUser(userId); @@ -126,8 +134,13 @@ export class EntitlementServiceUBP implements EntitlementService { return new Promise((resolve, reject) => { // If any promise returns true, immediately resolve with true isTeamSubscribedPromises.forEach(async (isTeamSubscribedPromise: Promise) => { - const isTeamSubscribed = await isTeamSubscribedPromise; - if (isTeamSubscribed) resolve(true); + try { + const isTeamSubscribed = await isTeamSubscribedPromise; + if (isTeamSubscribed) resolve(true); + } catch (err) { + log.warn({ userId, organizationId }, "Error checking if user is subscribed to organization", err); + resolve(false); + } }); // If neither of the above fires, resolve with false