All files / src/billing has_active_payment.ts

93.48% Statements 43/46
82.14% Branches 23/28
100% Functions 11/11
93.33% Lines 42/45

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124  1x 1x 1x 1x 1x 1x 1x   12x 12x 12x 5x     7x           1x   5x   5x 10x   5x           5x 5x       5x 5x 1x               7x   7x 16x   7x           7x 7x 7x 8x             8x 8x 8x 4x       2x   6x 6x   6x 5x 5x         1x 1x                                                                  
import {Context} from '../context';
import {BillingError} from '../error';
import {GraphqlClient} from '../clients/graphql';
import {SessionInterface} from '../auth/session/types';
 
import {isRecurring} from './is_recurring';
import {
  ActiveSubscriptions,
  CurrentAppInstallations,
  OneTimePurchases,
} from './types';
 
export async function hasActivePayment(
  session: SessionInterface,
  isTest: boolean,
): Promise<boolean> {
  if (isRecurring()) {
    return hasActiveSubscription(session, isTest);
  } else {
    return hasActiveOneTimePurchase(session, isTest);
  }
}
 
async function hasActiveSubscription(
  session: SessionInterface,
  isTest: boolean,
): Promise<boolean> {
  if (!Context.BILLING) {
    throw new BillinIgError({
      message: 'Attempted to look for subscriptions without billing configs',
      errorData: [],
    });
  }
 
  const client = new GraphqlClient(session.shop, session.accessToken);
 
  const currentInstallations = await client.query<
    CurrentAppInstallations<ActiveSubscriptions>
  >({
    data: RECURRING_PURCHASES_QUERY,
  });
 
  return currentInstallations.body.data.currentAppInstallation.activeSubscriptions.some(
    (subscription) =>
      subscription.name === Context.BILLING!.chargeName &&
      (isTest || !subscription.test),
  );
}
 
async function hasActiveOneTimePurchase(
  session: SessionInterface,
  isTest: boolean,
): Promise<boolean> {
  if (!Context.BILLING) {
    throw new BillinIgError({
      message:
        'Attempted to look for one time purchases without billing configs',
      errorData: [],
    });
  }
 
  const client = new GraphqlClient(session.shop, session.accessToken);
 
  let installation: OneTimePurchases;
  let endCursor = null;
  do {
    const currentInstallations = await client.query<
      CurrentAppInstallations<OneTimePurchases>
    >({
      data: {
        query: ONE_TIME_PURCHASES_QUERY,
        variables: {endCursor},
      },
    });

    installation = currentInstallations.body.data.currentAppInstallation;
    if (
      installation.oneTimePurchases.edges.some(
        (purchase) =>
          purchase.node.name === Context.BILLING!.chargeName &&
          (isTest || !purchase.node.test) &&
          purchase.node.status === 'ACTIVE',
      )
    ) {
      return true;
    }
 
    endCursor = installation.oneTimePurchases.pageInfo.endCursor;
  } while (installation?.oneTimePurchases.pageInfo.hasNextPage);
 
  return false;
}
 
const RECURRING_PURCHASES_QUERY = `
  query appSubscription {
    currentAppInstallation {
      activeSubscriptions {
        name
        test
      }
    }
  }
`;
 
const ONE_TIME_PURCHASES_QUERY = `
  query appPurchases($endCursor: String) {
    currentAppInstallation {
      oneTimePurchases(first: 250, sortKey: CREATED_AT, after: $endCursor) {
        edges {
          node {
            name
            test
            status
          }
        }
        pageInfo {
          hasNextPage
          endCursor
        }
      }
    }
  }
`;