-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathloadTest.ts
35 lines (29 loc) Β· 893 Bytes
/
loadTest.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
export async function loadTest(i: string): Promise<string | null> {
const url = await fetch(`${i}/api/v1/videos/GemKqzILV4w`)
.then(res => res.json())
.then(data => {
console.log(i, `data: ${Boolean(data.adaptiveFormats.length)}`);
if (data && 'adaptiveFormats' in data)
return data;
else throw new Error(data.error);
})
.then(
(data: {
adaptiveFormats: {
url: string,
type: string
}[]
}) => (data.adaptiveFormats
.filter((f) => f.type.startsWith('audio'))
[0].url)
)
.catch(() => '');
if (!url) return '';
const curl = new URL(url);
const origin = curl.origin;
const proxiedUrl = url.replace(origin, i) + '&host=' + origin.slice(8);
const passed = await fetch(proxiedUrl)
.then(res => res.status === 200)
.catch(() => false);
return passed ? i : '';
}