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. Commercial Alternative to JupyterHub.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/api/v2/purchases/stripe/get-customer.ts
Views: 791
1
import getAccountId from "lib/account/get-account";
2
import { getCustomer } from "@cocalc/server/purchases/stripe/customer";
3
import throttle from "@cocalc/util/api/throttle";
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
throttle({ account_id, endpoint: "purchases/stripe/get-customer" });
20
return await getCustomer(account_id);
21
}
22
23