import type { Datum, Videos } from "~/types/Videos"; import { API_URL } from "./constants.server"; export const getVideos = async (token: string): Promise => { if (!token) { throw new Error("Missing API token in request to get videos"); } const response = await fetch(`${API_URL}/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: ${response.statusText}`); } return response.json(); }; export const getVideo = async (token: string, videoId: string): Promise => { if (!token) { throw new Error("Missing API token in request to get video"); } const response = await fetch(`${API_URL}/api/video/${videoId}`, { headers: { Accept: "application/json", "Content-Type": "application/json", Authorization: `Token ${token}`, mode: "no-cors", }, }); if (!response.ok) { throw new Error(`Failed to fetch videos: ${response.statusText}`); } return response.json(); };