import type { MarbleAuthorList, MarbleCategoryList, MarblePost, MarblePostList, MarbleTagList } from '@/types/post'; import { unified } from "unified"; import rehypeParse from "rehype-parse"; import rehypeStringify from "rehype-stringify"; import rehypeSlug from "rehype-slug"; import rehypeAutolinkHeadings from "rehype-autolink-headings"; import rehypeSanitize from "rehype-sanitize"; const url = process.env.MARBLE_API_URL; const key = process.env.MARBLE_WORKSPACE_KEY; async function fetchFromMarble(endpoint: string): Promise { if (!url || !key) { throw new Error('Missing required environment variables'); } try { const response = await fetch(`${url}/${key}/${endpoint}`); if (!response.ok) { throw new Error(`Failed to fetch ${endpoint}: ${response.status} ${response.statusText}`); } return await response.json() as T; } catch (error) { console.error(`Error fetching ${endpoint}:`, error); throw error; } } export async function getPosts() { return fetchFromMarble('posts'); } export async function getTags() { return fetchFromMarble('tags'); } export async function getSinglePost(slug: string) { return fetchFromMarble(`posts/${slug}`); } export async function getCategories() { return fetchFromMarble('categories'); } export async function getAuthors() { return fetchFromMarble('authors'); } export async function processHtmlContent(html: string): Promise { const processor = unified() .use(rehypeSanitize) .use(rehypeParse, { fragment: true }) .use(rehypeSlug) .use(rehypeAutolinkHeadings, { behavior: "append" }) .use(rehypeStringify); const file = await processor.process(html); return String(file); }