mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 20:59:59 +00:00
34 lines
781 B
TypeScript
34 lines
781 B
TypeScript
import type { CobaltAPIResponse } from "$lib/types/api";
|
|
|
|
const apiURL = "https://api.cobalt.tools";
|
|
|
|
const request = async (url: string) => {
|
|
const request = {
|
|
url
|
|
}
|
|
|
|
const response: CobaltAPIResponse | undefined = await fetch(`${apiURL}/api/json`, {
|
|
method: "POST",
|
|
body: JSON.stringify(request),
|
|
headers: {
|
|
'Accept': 'application/json',
|
|
'Content-Type': 'application/json'
|
|
}
|
|
}).then(r => r.json()).catch(() => {});
|
|
|
|
return response;
|
|
}
|
|
|
|
const probeCobaltStream = async (url: string) => {
|
|
const request = await fetch(`${url}&p=1`).catch(() => {});
|
|
if (request?.status === 200) {
|
|
return request?.status;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
export default {
|
|
request,
|
|
probeCobaltStream,
|
|
}
|