|
"use server" |
|
|
|
import { revalidatePath } from "next/cache" |
|
|
|
import { Video, VideoAPIRequest, GenericAPIResponse, VideoStatusRequest, VideoStatus } from "@/app/types" |
|
|
|
import { GET, POST, DELETE, PATCH } from "./base" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const getAllVideos = async () => { |
|
const tasks = await GET<Video[]>("", []) |
|
|
|
return tasks |
|
} |
|
|
|
|
|
export const getVideos = async (ownerId: string) => { |
|
const tasks = await GET<Video[]>(ownerId, []) |
|
|
|
return tasks |
|
} |
|
|
|
export const getVideo = async (ownerId: string, videoId: string) => { |
|
const task = await GET<Video>(`${ownerId}/${videoId}`, null as unknown as Video) |
|
|
|
return task |
|
} |
|
|
|
export const setVideoStatus = async (ownerId: string, videoId: string, status: VideoStatus) => { |
|
const task = await PATCH<VideoStatusRequest, GenericAPIResponse>(`${ownerId}/${videoId}`, { status }, null as unknown as Video) |
|
|
|
revalidatePath(`/studio/${ownerId}`) |
|
|
|
return task |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const createNewVideo = async (ownerId: string, taskRequest: VideoAPIRequest) => { |
|
console.log("create new video") |
|
const task = await POST<VideoAPIRequest, Video>( |
|
ownerId, |
|
taskRequest, |
|
null as unknown as Video |
|
) |
|
|
|
|
|
revalidatePath(`/studio/${ownerId}`) |
|
return task |
|
} |
|
|
|
|