-
Notifications
You must be signed in to change notification settings - Fork 2
/
billing.ts
70 lines (64 loc) · 1.95 KB
/
billing.ts
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
import { BalanceList, Balance } from "./deps.ts";
export class Billing {
constructor(private _credentials: string, private _apiUrl: string) {}
private apiPath = "/v1/projects";
/**
* Retrieves list of balance info of the specified project.
* @param projectId Unique identifier of the project
*/
async listBalances(projectId: string): Promise<BalanceList> {
try {
const response = await fetch(
`https://${this._apiUrl}${this.apiPath}/${projectId}/balances`,
{
method: "GET",
headers: {
Authorization: `token ${this._credentials}`,
"Content-Type": "application/json",
"X-DG-Agent": window.dgAgent,
},
}
);
if (response.ok) {
return response.json();
} else {
throw `${response.status} ${response.statusText}`;
}
} catch (error) {
throw new Error("DG: Cannot List balances. " + error);
}
}
/**
* Retrieves balance info of a specified balance_id in the specified project.
* @param projectId Unique identifier of the project
* @param balanceId Unique identifier of the balance
*/
async getBalance(projectId: string, balanceId: string): Promise<Balance> {
try {
const response = await fetch(
`https://${this._apiUrl}${this.apiPath}/${projectId}/balances/${balanceId}`,
{
method: "GET",
headers: {
Authorization: `token ${this._credentials}`,
"Content-Type": "application/json",
"X-DG-Agent": window.dgAgent,
},
}
);
if (response.ok) {
return response.json();
} else {
throw `${response.status} ${response.statusText}`;
}
} catch (error) {
throw new Error("DG: Cannot get balance. " + error);
}
}
// return this._request(
// "GET",
// this._credentials,
// this._apiUrl,
// `${this.apiPath}/${projectId}/balances/${balanceId}`
// );
}