Spaces:
Running
Running
File size: 5,439 Bytes
c10f8f8 17234c8 c10f8f8 17234c8 c10f8f8 17234c8 c10f8f8 |
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
import { NextRequest, NextResponse } from "next/server";
import { RepoDesignation, spaceInfo, listFiles, deleteRepo, listCommits } from "@huggingface/hub";
import { isAuthenticated } from "@/lib/auth";
import { Commit, Page } from "@/types";
export async function DELETE(
req: NextRequest,
{ params }: { params: Promise<{ namespace: string; repoId: string }> }
) {
const user = await isAuthenticated();
if (user instanceof NextResponse || !user) {
return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
}
const param = await params;
const { namespace, repoId } = param;
try {
const space = await spaceInfo({
name: `${namespace}/${repoId}`,
accessToken: user.token as string,
additionalFields: ["author"],
});
if (!space || space.sdk !== "static") {
return NextResponse.json(
{ ok: false, error: "Space is not a static space." },
{ status: 404 }
);
}
if (space.author !== user.name) {
return NextResponse.json(
{ ok: false, error: "Space does not belong to the authenticated user." },
{ status: 403 }
);
}
if (space.private) {
return NextResponse.json(
{ ok: false, error: "Your space must be public to access it." },
{ status: 403 }
);
}
const repo: RepoDesignation = {
type: "space",
name: `${namespace}/${repoId}`,
};
await deleteRepo({
repo,
accessToken: user.token as string,
});
return NextResponse.json({ ok: true }, { status: 200 });
} catch (error: any) {
return NextResponse.json(
{ ok: false, error: error.message },
{ status: 500 }
);
}
}
export async function GET(
req: NextRequest,
{ params }: { params: Promise<{ namespace: string; repoId: string }> }
) {
const user = await isAuthenticated();
if (user instanceof NextResponse || !user) {
return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
}
const param = await params;
const { namespace, repoId } = param;
try {
const space = await spaceInfo({
name: namespace + "/" + repoId,
accessToken: user.token as string,
additionalFields: ["author"],
});
if (!space || space.sdk !== "static") {
return NextResponse.json(
{
ok: false,
error: "Space is not a static space",
},
{ status: 404 }
);
}
if (space.author !== user.name) {
return NextResponse.json(
{
ok: false,
error: "Space does not belong to the authenticated user",
},
{ status: 403 }
);
}
if (space.private) {
return NextResponse.json(
{
ok: false,
error: "Space must be public to access it",
},
{ status: 403 }
);
}
const repo: RepoDesignation = {
type: "space",
name: `${namespace}/${repoId}`,
};
const htmlFiles: Page[] = [];
const files: string[] = [];
const allowedFilesExtensions = ["jpg", "jpeg", "png", "gif", "svg", "webp", "avif", "heic", "heif", "ico", "bmp", "tiff", "tif"];
for await (const fileInfo of listFiles({repo, accessToken: user.token as string})) {
if (fileInfo.path.endsWith(".html")) {
const res = await fetch(`https://huggingface.co/spaces/${namespace}/${repoId}/raw/main/${fileInfo.path}`);
if (res.ok) {
const html = await res.text();
if (fileInfo.path === "index.html") {
htmlFiles.unshift({
path: fileInfo.path,
html,
});
} else {
htmlFiles.push({
path: fileInfo.path,
html,
});
}
}
}
if (fileInfo.type === "directory" && fileInfo.path === "images") {
for await (const imageInfo of listFiles({repo, accessToken: user.token as string, path: fileInfo.path})) {
if (allowedFilesExtensions.includes(imageInfo.path.split(".").pop() || "")) {
files.push(`https://huggingface.co/spaces/${namespace}/${repoId}/resolve/main/${imageInfo.path}`);
}
}
}
}
const commits: Commit[] = [];
for await (const commit of listCommits({ repo, accessToken: user.token as string })) {
if (commit.title.includes("initial commit") || commit.title.includes("image(s)") || commit.title.includes("Promote version")) {
continue;
}
commits.push({
title: commit.title,
oid: commit.oid,
date: commit.date,
});
}
if (htmlFiles.length === 0) {
return NextResponse.json(
{
ok: false,
error: "No HTML files found",
},
{ status: 404 }
);
}
return NextResponse.json(
{
project: {
id: space.id,
space_id: space.name,
_updatedAt: space.updatedAt,
},
pages: htmlFiles,
files,
commits,
ok: true,
},
{ status: 200 }
);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any) {
if (error.statusCode === 404) {
return NextResponse.json(
{ error: "Space not found", ok: false },
{ status: 404 }
);
}
return NextResponse.json(
{ error: error.message, ok: false },
{ status: 500 }
);
}
}
|