-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcollectMetrics.ts
40 lines (32 loc) · 1.3 KB
/
collectMetrics.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
import { DestinyProfileResponse } from "bungie-api-ts/destiny2";
import { get } from "./bungieApi";
import { getAccessToken } from "./bungieApi/auth";
import collectProgressions from "./collectors/progressions";
import collectDestinyMetrics from "./collectors/metrics";
import collectKillTrackers from "./collectors/killTrackers";
import collectProfileLevels from "./collectors/profileLevels";
const { DESTINY_MEMBERSHIP_TYPE, DESTINY_MEMBERSHIP_ID } = process.env;
if (!DESTINY_MEMBERSHIP_TYPE)
throw new Error(
"DESTINY_MEMBERSHIP_TYPE environment variable must be defined. See README.md"
);
if (!DESTINY_MEMBERSHIP_ID)
throw new Error(
"DESTINY_MEMBERSHIP_ID environment variable must be defined. See README.md"
);
export default async function collectMetrics() {
const mType = DESTINY_MEMBERSHIP_TYPE;
const mID = DESTINY_MEMBERSHIP_ID;
if (!mType || !mID) {
throw new Error("Destiny membership type and ID should be defined");
}
const accessToken = await getAccessToken();
const profile = await get<DestinyProfileResponse>(
`/Platform/Destiny2/${mType}/Profile/${mID}/?components=100,200,201,309,205,102,202,104,1100`,
accessToken
);
collectKillTrackers(profile);
await collectProfileLevels(profile);
collectDestinyMetrics(profile);
collectProgressions(profile);
}