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/vouchers-checkout.ts
Views: 687
1
import getAccountId from "lib/account/get-account";
2
import vouchersCheckout from "@cocalc/server/purchases/vouchers-checkout";
3
import getParams from "lib/api/get-params";
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
const { success_url, cancel_url, config } = getParams(req);
20
return await vouchersCheckout({
21
account_id,
22
success_url,
23
cancel_url,
24
config,
25
});
26
}
27
28