CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/api/v2/purchases/sync-subscription.ts
Views: 687
1
import getAccountId from "lib/account/get-account";
2
import { syncUsageBasedSubscription } from "@cocalc/server/purchases/stripe-usage-based-subscription";
3
import { OkStatus } from "../../../../lib/api/status";
4
5
export default async function handle(req, res) {
6
try {
7
res.json(await get(req));
8
} catch (err) {
9
res.json({ error: `${err.message}` });
10
return;
11
}
12
}
13
14
async function get(req) {
15
const account_id = await getAccountId(req);
16
if (account_id == null) {
17
throw Error("must be signed in");
18
}
19
20
const found = await syncUsageBasedSubscription(account_id);
21
return {
22
...OkStatus,
23
found,
24
};
25
}
26
27