2022-04-17 00:49:20 +00:00
|
|
|
import { Video } from "../types/video";
|
|
|
|
import { Videos } from "../types/videos";
|
|
|
|
import { getTAUrl } from "./constants";
|
|
|
|
|
|
|
|
const TA_BASE_URL = getTAUrl();
|
2022-04-07 22:54:15 +00:00
|
|
|
|
2022-04-13 18:08:32 +00:00
|
|
|
export const getVideos = async (token: string): Promise<Videos> => {
|
|
|
|
if (!token) {
|
|
|
|
throw new Error("Missing API token in request to get videos");
|
|
|
|
}
|
2022-04-17 00:49:20 +00:00
|
|
|
const response = await fetch(`${TA_BASE_URL.server}/api/video/`, {
|
|
|
|
headers: {
|
|
|
|
Accept: "application/json",
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
Authorization: `Token ${token}`,
|
|
|
|
mode: "no-cors",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
throw new Error("Failed to fetch videos");
|
|
|
|
}
|
|
|
|
|
|
|
|
return response.json();
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getVideo = async (
|
|
|
|
token: string,
|
|
|
|
videoId: string
|
|
|
|
): Promise<Video> => {
|
|
|
|
if (!token) {
|
|
|
|
throw new Error("Missing API token in request to get video");
|
|
|
|
}
|
|
|
|
const response = await fetch(`${TA_BASE_URL.server}/api/video/${videoId}`, {
|
2022-04-13 20:53:39 +00:00
|
|
|
headers: {
|
|
|
|
Accept: "application/json",
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
Authorization: `Token ${token}`,
|
|
|
|
mode: "no-cors",
|
|
|
|
},
|
|
|
|
});
|
2022-04-13 18:08:32 +00:00
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
throw new Error("Failed to fetch videos");
|
|
|
|
}
|
|
|
|
|
|
|
|
return response.json();
|
2022-04-07 22:54:15 +00:00
|
|
|
};
|