File size: 999 Bytes
85d2530
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"use server"

import { ClapProject } from "@/lib/clap/types"
import { serializeClap } from "@/lib/clap/serializeClap"
import { blobToDataUri } from "@/lib/base64/blobToDataUri"

import { aitubeApiUrl } from "../config"

export async function exportClap({
  clap,
}: {
  clap: ClapProject
}): Promise<string> {
  if (!clap) { throw new Error(`please provide a clap`) }

  // remember: a space needs to be public for the classic fetch() to work
  const res = await fetch(`${aitubeApiUrl}generate/video`, {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      // TODO pass the JWT so that only the AI Stories Factory can call the API
      // Authorization: `Bearer ${hfApiToken}`,
    },
    body: await serializeClap(clap),
    cache: "no-store",
    // we can also use this (see https://vercel.com/blog/vercel-cache-api-nextjs-cache)
    // next: { revalidate: 1 }
  })

  const blob = await res.blob()

  const dataURL = await blobToDataUri(blob)
  
  return dataURL
}