-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
96 lines (83 loc) · 2.41 KB
/
index.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import express from 'express';
const app = express();
const port = process.env.PORT || 3000;
const baseURL = 'https://vlrggapi.vercel.app';
interface LiveMatch {
team1: string;
team2: string;
flag1: string;
flag2: string;
score1: string;
score2: string;
team1_round_ct: string;
team1_round_t: string;
team2_round_ct: string;
team2_round_t: string;
map_number: string;
current_map: string;
time_until_match: string;
match_event: string;
match_series: string;
unix_timestamp: string;
match_page: string;
}
const noLiveMatch: LiveMatch = {
team1: 'No live matches',
team2: 'No live matches',
flag1: 'No live matches',
flag2: 'No live matches',
score1: 'No live matches',
score2: 'No live matches',
team1_round_ct: 'No live matches',
team1_round_t: 'No live matches',
team2_round_ct: 'No live matches',
team2_round_t: 'No live matches',
map_number: 'No live matches',
current_map: 'No live matches',
time_until_match: 'No live matches',
match_event: 'No live matches',
match_series: 'No live matches',
unix_timestamp: 'No live matches',
match_page: 'No live matches',
};
const fetchLiveMatch = async (): Promise<LiveMatch> => {
const response = await fetch(baseURL + '/match?q=live_score');
const data = await response.json().then((data) => data.data);
console.log('Data:', data);
if (!data || data.segments.length === 0) {
return noLiveMatch;
}
for (const match of data.segments) {
if (match.match_series.includes('Champions Tour')) {
console.log('Current match:', match);
return match;
}
}
return noLiveMatch;
};
const startServer = () => {
app.get('/', (req: any, res: any) => {
res.send('Hello World!');
});
app.get('/live', async (req: any, res: any) => {
const liveMatch = await fetchLiveMatch();
res.send(liveMatch);
});
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`);
});
};
(async () => {
let liveMatch = await fetchLiveMatch();
if (liveMatch.time_until_match === 'LIVE') {
setInterval(async () => {
liveMatch = await fetchLiveMatch();
}, 30000);
}
else {
setInterval(async () => {
liveMatch = await fetchLiveMatch();
}, 120000);
}
startServer();
})();