Update Dockerfile

#451
by XciD HF Staff - opened
This view is limited to 50 files because it contains too many changes. See the raw diff here.
Files changed (50) hide show
  1. .env.example +0 -4
  2. .github/workflows/deploy-prod.yml +0 -77
  3. .gitignore +1 -7
  4. Dockerfile +5 -11
  5. README.md +14 -8
  6. actions/mentions.ts +0 -31
  7. actions/projects.ts +0 -175
  8. app/(public)/layout.tsx +4 -3
  9. app/(public)/page.tsx +3 -23
  10. app/(public)/signin/page.tsx +0 -21
  11. app/[namespace]/[repoId]/page.tsx +28 -0
  12. app/[owner]/[repoId]/page.tsx +0 -35
  13. app/actions/auth.ts +18 -0
  14. app/actions/projects.ts +47 -0
  15. app/api/ask/route.ts +665 -133
  16. app/api/auth/[...nextauth]/route.ts +0 -6
  17. app/api/auth/login-url/route.ts +23 -0
  18. app/api/auth/logout/route.ts +25 -0
  19. app/api/auth/route.ts +106 -0
  20. app/api/healthcheck/route.ts +0 -5
  21. app/api/me/projects/[namespace]/[repoId]/commits/[commitId]/promote/route.ts +190 -0
  22. app/api/me/projects/[namespace]/[repoId]/images/route.ts +113 -0
  23. app/api/me/projects/[namespace]/[repoId]/route.ts +187 -0
  24. app/api/me/projects/[namespace]/[repoId]/save/route.ts +64 -0
  25. app/api/me/projects/route.ts +107 -0
  26. app/api/me/route.ts +46 -0
  27. app/api/projects/[repoId]/[commitId]/route.ts +0 -49
  28. app/api/projects/[repoId]/download/route.ts +0 -76
  29. app/api/projects/[repoId]/medias/route.ts +0 -87
  30. app/api/projects/[repoId]/rename/route.ts +0 -92
  31. app/api/projects/[repoId]/route.ts +0 -104
  32. app/api/projects/route.ts +0 -145
  33. app/api/re-design/route.ts +39 -0
  34. app/api/redesign/route.ts +0 -73
  35. app/auth/callback/page.tsx +97 -0
  36. app/auth/page.tsx +28 -0
  37. app/layout.tsx +57 -37
  38. app/new/page.tsx +10 -14
  39. app/not-found.tsx +0 -17
  40. app/sitemap.ts +28 -0
  41. {app → assets}/globals.css +236 -33
  42. assets/hf-logo.svg +0 -7
  43. assets/logo.svg +316 -0
  44. assets/minimax.svg +0 -1
  45. assets/pro.svg +0 -10
  46. chart/Chart.yaml +0 -5
  47. chart/env/prod.yaml +0 -59
  48. chart/templates/_helpers.tpl +0 -22
  49. chart/templates/config.yaml +0 -10
  50. chart/templates/deployment.yaml +0 -81
.env.example DELETED
@@ -1,4 +0,0 @@
1
- AUTH_HUGGINGFACE_ID=
2
- AUTH_HUGGINGFACE_SECRET=
3
- NEXTAUTH_URL=http://localhost:3001
4
- AUTH_SECRET=
 
 
 
 
 
.github/workflows/deploy-prod.yml DELETED
@@ -1,77 +0,0 @@
1
- name: Deploy to k8s
2
- on:
3
- # run this workflow manually from the Actions tab
4
- workflow_dispatch:
5
-
6
- jobs:
7
- build-and-publish:
8
- runs-on:
9
- group: cpu-high
10
- steps:
11
- - name: Checkout
12
- uses: actions/checkout@v4
13
-
14
- - name: Login to Registry
15
- uses: docker/login-action@v3
16
- with:
17
- registry: registry.internal.huggingface.tech
18
- username: ${{ secrets.DOCKER_INTERNAL_USERNAME }}
19
- password: ${{ secrets.DOCKER_INTERNAL_PASSWORD }}
20
-
21
- - name: Docker metadata
22
- id: meta
23
- uses: docker/metadata-action@v5
24
- with:
25
- images: |
26
- registry.internal.huggingface.tech/deepsite/deepsite
27
- tags: |
28
- type=raw,value=latest,enable={{is_default_branch}}
29
- type=sha,enable=true,prefix=sha-,format=short,sha-len=8
30
-
31
- - name: Set up Docker Buildx
32
- uses: docker/setup-buildx-action@v3
33
-
34
- - name: Inject slug/short variables
35
- uses: rlespinasse/github-slug-action@v4
36
-
37
- - name: Build and Publish image
38
- uses: docker/build-push-action@v5
39
- with:
40
- context: .
41
- file: Dockerfile
42
- push: ${{ github.event_name != 'pull_request' }}
43
- tags: ${{ steps.meta.outputs.tags }}
44
- labels: ${{ steps.meta.outputs.labels }}
45
- platforms: linux/amd64
46
- cache-to: type=gha,mode=max,scope=amd64
47
- cache-from: type=gha,scope=amd64
48
- provenance: false
49
-
50
- deploy:
51
- name: Deploy on prod
52
- runs-on: ubuntu-latest
53
- needs: ["build-and-publish"]
54
- steps:
55
- - name: Inject slug/short variables
56
- uses: rlespinasse/github-slug-action@v4
57
-
58
- - name: Gen values
59
- run: |
60
- VALUES=$(cat <<-END
61
- image:
62
- tag: "sha-${{ env.GITHUB_SHA_SHORT }}"
63
- END
64
- )
65
- echo "VALUES=$(echo "$VALUES" | yq -o=json | jq tostring)" >> $GITHUB_ENV
66
-
67
- - name: Deploy on infra-deployments
68
- uses: the-actions-org/workflow-dispatch@v2
69
- with:
70
- workflow: Update application single value
71
- repo: huggingface/infra-deployments
72
- wait-for-completion: true
73
- wait-for-completion-interval: 10s
74
- display-workflow-run-url-interval: 10s
75
- ref: refs/heads/main
76
- token: ${{ secrets.GIT_TOKEN_INFRA_DEPLOYMENT }}
77
- inputs: '{"path": "hub/deepsite/deepsite.yaml", "value": ${{ env.VALUES }}, "url": "${{ github.event.head_commit.url }}"}'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
.gitignore CHANGED
@@ -31,7 +31,7 @@ yarn-error.log*
31
  .pnpm-debug.log*
32
 
33
  # env files (can opt-in for committing if needed)
34
- .env
35
 
36
  # vercel
37
  .vercel
@@ -39,9 +39,3 @@ yarn-error.log*
39
  # typescript
40
  *.tsbuildinfo
41
  next-env.d.ts
42
-
43
- .idea
44
-
45
- # binary assets (hosted on CDN)
46
- assets/assistant.jpg
47
- .gitattributes
 
31
  .pnpm-debug.log*
32
 
33
  # env files (can opt-in for committing if needed)
34
+ .env*
35
 
36
  # vercel
37
  .vercel
 
39
  # typescript
40
  *.tsbuildinfo
41
  next-env.d.ts
 
 
 
 
 
 
Dockerfile CHANGED
@@ -1,22 +1,16 @@
1
- FROM node:20-alpine
2
- USER root
3
-
4
- # Install pnpm
5
- RUN corepack enable && corepack prepare pnpm@latest --activate
6
 
7
  USER 1000
8
  WORKDIR /usr/src/app
9
- # Copy package.json and pnpm-lock.yaml to the container
10
- COPY --chown=1000 package.json pnpm-lock.yaml ./
11
 
12
  # Copy the rest of the application files to the container
13
  COPY --chown=1000 . .
14
 
15
- RUN pnpm install
16
- RUN pnpm run build
17
 
18
  # Expose the application port (assuming your app runs on port 3000)
19
- EXPOSE 3001
20
 
21
  # Start the application
22
- CMD ["pnpm", "start"]
 
1
+ # FROM registry.hf.space/enzostvs-deepsite:cpu-bbc7882
2
+ FROM node:22
 
 
 
3
 
4
  USER 1000
5
  WORKDIR /usr/src/app
 
 
6
 
7
  # Copy the rest of the application files to the container
8
  COPY --chown=1000 . .
9
 
10
+ RUN npm install && npm run build
 
11
 
12
  # Expose the application port (assuming your app runs on port 3000)
13
+ EXPOSE 3000
14
 
15
  # Start the application
16
+ CMD ["npm", "start"]
README.md CHANGED
@@ -1,23 +1,29 @@
1
  ---
2
- title: DeepSite v4
3
  emoji: 🐳
4
  colorFrom: blue
5
  colorTo: blue
6
  sdk: docker
7
  pinned: true
8
- app_port: 3001
9
  license: mit
10
- failure_strategy: rollback
11
- short_description: Generate any application by Vibe Coding it
12
  models:
13
  - deepseek-ai/DeepSeek-V3-0324
14
- - deepseek-ai/DeepSeek-V3.2
15
- - Qwen/Qwen3-Coder-30B-A3B-Instruct
 
 
 
 
16
  - moonshotai/Kimi-K2-Instruct-0905
17
- - zai-org/GLM-4.7
18
- - MiniMaxAI/MiniMax-M2.1
19
  ---
20
 
21
  # DeepSite 🐳
22
 
23
  DeepSite is a Vibe Coding Platform designed to make coding smarter and more efficient. Tailored for developers, data scientists, and AI engineers, it integrates generative AI into your coding projects to enhance creativity and productivity.
 
 
 
 
 
1
  ---
2
+ title: DeepSite v3
3
  emoji: 🐳
4
  colorFrom: blue
5
  colorTo: blue
6
  sdk: docker
7
  pinned: true
8
+ app_port: 3000
9
  license: mit
10
+ short_description: Generate any application by Vibe Coding
 
11
  models:
12
  - deepseek-ai/DeepSeek-V3-0324
13
+ - deepseek-ai/DeepSeek-R1-0528
14
+ - deepseek-ai/DeepSeek-V3.1
15
+ - deepseek-ai/DeepSeek-V3.1-Terminus
16
+ - deepseek-ai/DeepSeek-V3.2-Exp
17
+ - Qwen/Qwen3-Coder-480B-A35B-Instruct
18
+ - moonshotai/Kimi-K2-Instruct
19
  - moonshotai/Kimi-K2-Instruct-0905
20
+ - zai-org/GLM-4.6
 
21
  ---
22
 
23
  # DeepSite 🐳
24
 
25
  DeepSite is a Vibe Coding Platform designed to make coding smarter and more efficient. Tailored for developers, data scientists, and AI engineers, it integrates generative AI into your coding projects to enhance creativity and productivity.
26
+
27
+ ## How to use it locally
28
+
29
+ Follow [this discussion](https://huggingface.co/spaces/enzostvs/deepsite/discussions/74)
actions/mentions.ts DELETED
@@ -1,31 +0,0 @@
1
- "use client";
2
-
3
- import { File } from "@/lib/type";
4
-
5
- export const searchMentions = async (query: string) => {
6
- const promises = [searchModels(query), searchDatasets(query)];
7
- const results = await Promise.all(promises);
8
- return { models: results[0], datasets: results[1] };
9
- };
10
-
11
- const searchModels = async (query: string) => {
12
- const response = await fetch(
13
- `https://huggingface.co/api/quicksearch?q=${query}&type=model&limit=3`
14
- );
15
- const data = await response.json();
16
- return data?.models ?? [];
17
- };
18
-
19
- const searchDatasets = async (query: string) => {
20
- const response = await fetch(
21
- `https://huggingface.co/api/quicksearch?q=${query}&type=dataset&limit=3`
22
- );
23
- const data = await response.json();
24
- return data?.datasets ?? [];
25
- };
26
-
27
- export const searchFilesMentions = async (query: string, files: File[]) => {
28
- if (!query) return files;
29
- const lowerQuery = query.toLowerCase();
30
- return files.filter((file) => file.path.toLowerCase().includes(lowerQuery));
31
- };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
actions/projects.ts DELETED
@@ -1,175 +0,0 @@
1
- "use server";
2
- import {
3
- downloadFile,
4
- listCommits,
5
- listFiles,
6
- listSpaces,
7
- RepoDesignation,
8
- SpaceEntry,
9
- spaceInfo,
10
- } from "@huggingface/hub";
11
-
12
- import { auth } from "@/lib/auth";
13
- import { Commit, File } from "@/lib/type";
14
-
15
- export interface ProjectWithCommits extends SpaceEntry {
16
- commits?: Commit[];
17
- medias?: string[];
18
- }
19
-
20
- const IGNORED_PATHS = ["README.md", ".gitignore", ".gitattributes"];
21
- const IGNORED_FORMATS = [
22
- ".png",
23
- ".jpg",
24
- ".jpeg",
25
- ".gif",
26
- ".svg",
27
- ".webp",
28
- ".mp4",
29
- ".mp3",
30
- ".wav",
31
- ];
32
-
33
- export const getProjects = async () => {
34
- const projects: SpaceEntry[] = [];
35
- const session = await auth();
36
- if (!session?.user) {
37
- return projects;
38
- }
39
- const token = session.accessToken;
40
- for await (const space of listSpaces({
41
- accessToken: token,
42
- additionalFields: ["author", "cardData"],
43
- search: {
44
- owner: session.user.username,
45
- },
46
- })) {
47
- if (
48
- space.sdk === "static" &&
49
- Array.isArray((space.cardData as { tags?: string[] })?.tags) &&
50
- (space.cardData as { tags?: string[] })?.tags?.some((tag) =>
51
- tag.includes("deepsite")
52
- )
53
- ) {
54
- projects.push(space);
55
- }
56
- }
57
- return projects;
58
- };
59
- export const getProject = async (id: string, commitId?: string) => {
60
- const session = await auth();
61
- if (!session?.user) {
62
- return null;
63
- }
64
- const token = session.accessToken;
65
- try {
66
- const project: ProjectWithCommits | null = await spaceInfo({
67
- name: id,
68
- accessToken: token,
69
- additionalFields: ["author", "cardData"],
70
- });
71
- const repo: RepoDesignation = {
72
- type: "space",
73
- name: id,
74
- };
75
- const files: File[] = [];
76
- const medias: string[] = [];
77
- const params = { repo, accessToken: token };
78
- if (commitId) {
79
- Object.assign(params, { revision: commitId });
80
- }
81
- for await (const fileInfo of listFiles(params)) {
82
- if (IGNORED_PATHS.includes(fileInfo.path)) continue;
83
- if (IGNORED_FORMATS.some((format) => fileInfo.path.endsWith(format))) {
84
- medias.push(
85
- `https://huggingface.co/spaces/${id}/resolve/main/${fileInfo.path}`
86
- );
87
- continue;
88
- }
89
-
90
- if (fileInfo.type === "directory") {
91
- for await (const subFile of listFiles({
92
- repo,
93
- accessToken: token,
94
- path: fileInfo.path,
95
- })) {
96
- if (IGNORED_FORMATS.some((format) => subFile.path.endsWith(format))) {
97
- medias.push(
98
- `https://huggingface.co/spaces/${id}/resolve/main/${subFile.path}`
99
- );
100
- }
101
- const blob = await downloadFile({
102
- repo,
103
- accessToken: token,
104
- path: subFile.path,
105
- raw: true,
106
- ...(commitId ? { revision: commitId } : {}),
107
- }).catch((_) => {
108
- return null;
109
- });
110
- if (!blob) {
111
- continue;
112
- }
113
- const html = await blob?.text();
114
- if (!html) {
115
- continue;
116
- }
117
- files[subFile.path === "index.html" ? "unshift" : "push"]({
118
- path: subFile.path,
119
- content: html,
120
- });
121
- }
122
- } else {
123
- const blob = await downloadFile({
124
- repo,
125
- accessToken: token,
126
- path: fileInfo.path,
127
- raw: true,
128
- ...(commitId ? { revision: commitId } : {}),
129
- }).catch((_) => {
130
- return null;
131
- });
132
- if (!blob) {
133
- continue;
134
- }
135
- const html = await blob?.text();
136
- if (!html) {
137
- continue;
138
- }
139
- files[fileInfo.path === "index.html" ? "unshift" : "push"]({
140
- path: fileInfo.path,
141
- content: html,
142
- });
143
- }
144
- }
145
- const commits: Commit[] = [];
146
- const commitIterator = listCommits({ repo, accessToken: token });
147
- for await (const commit of commitIterator) {
148
- if (
149
- commit.title?.toLowerCase() === "initial commit" ||
150
- commit.title
151
- ?.toLowerCase()
152
- ?.includes("upload media files through deepsite")
153
- )
154
- continue;
155
- commits.push({
156
- title: commit.title,
157
- oid: commit.oid,
158
- date: commit.date,
159
- });
160
- if (commits.length >= 20) {
161
- break;
162
- }
163
- }
164
-
165
- project.commits = commits;
166
- project.medias = medias;
167
-
168
- return { project, files };
169
- } catch (error) {
170
- return {
171
- project: null,
172
- files: [],
173
- };
174
- }
175
- };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/(public)/layout.tsx CHANGED
@@ -1,12 +1,13 @@
1
- import { Navigation } from "@/components/public/navigation";
2
 
3
- export default function PublicLayout({
4
  children,
5
  }: Readonly<{
6
  children: React.ReactNode;
7
  }>) {
8
  return (
9
- <div className="min-h-screen font-sans">
 
10
  <Navigation />
11
  {children}
12
  </div>
 
1
+ import Navigation from "@/components/public/navigation";
2
 
3
+ export default async function PublicLayout({
4
  children,
5
  }: Readonly<{
6
  children: React.ReactNode;
7
  }>) {
8
  return (
9
+ <div className="h-screen bg-neutral-950 z-1 relative overflow-auto scroll-smooth">
10
+ <div className="background__noisy" />
11
  <Navigation />
12
  {children}
13
  </div>
app/(public)/page.tsx CHANGED
@@ -1,25 +1,5 @@
1
- import { AnimatedDotsBackground } from "@/components/public/animated-dots-background";
2
- import { HeroHeader } from "@/components/public/hero-header";
3
- import { UserProjects } from "@/components/projects/user-projects";
4
- import { AskAiLanding } from "@/components/ask-ai/ask-ai-landing";
5
- import { Bento } from "@/components/public/bento";
6
 
7
- export const dynamic = "force-dynamic";
8
-
9
- export default async function Homepage() {
10
- return (
11
- <>
12
- <section className="container mx-auto relative z-10">
13
- <HeroHeader />
14
- <div className="absolute inset-0 -z-10">
15
- <AnimatedDotsBackground />
16
- </div>
17
- <div className="max-w-xl mx-auto px-6">
18
- <AskAiLanding />
19
- </div>
20
- </section>
21
- <UserProjects />
22
- <Bento />
23
- </>
24
- );
25
  }
 
1
+ import { MyProjects } from "@/components/my-projects";
 
 
 
 
2
 
3
+ export default async function HomePage() {
4
+ return <MyProjects />;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  }
app/(public)/signin/page.tsx DELETED
@@ -1,21 +0,0 @@
1
- import { LoginButtons } from "@/components/login/login-buttons";
2
-
3
- export default async function SignInPage({
4
- searchParams,
5
- }: {
6
- searchParams: Promise<{ callbackUrl: string }>;
7
- }) {
8
- const { callbackUrl } = await searchParams;
9
- console.log(callbackUrl);
10
- return (
11
- <section className="min-h-screen font-sans">
12
- <div className="px-6 py-16 max-w-5xl mx-auto text-center">
13
- <h1 className="text-5xl font-bold mb-5">You shall not pass 🧙</h1>
14
- <p className="text-lg text-muted-foreground mb-8">
15
- You can&apos;t access this resource without being signed in.
16
- </p>
17
- <LoginButtons callbackUrl={callbackUrl ?? "/"} />
18
- </div>
19
- </section>
20
- );
21
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/[namespace]/[repoId]/page.tsx ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { AppEditor } from "@/components/editor";
2
+ import { generateSEO } from "@/lib/seo";
3
+ import { Metadata } from "next";
4
+
5
+ export async function generateMetadata({
6
+ params,
7
+ }: {
8
+ params: Promise<{ namespace: string; repoId: string }>;
9
+ }): Promise<Metadata> {
10
+ const { namespace, repoId } = await params;
11
+
12
+ return generateSEO({
13
+ title: `${namespace}/${repoId} - DeepSite Editor`,
14
+ description: `Edit and build ${namespace}/${repoId} with AI-powered tools on DeepSite. Create stunning websites with no code required.`,
15
+ path: `/${namespace}/${repoId}`,
16
+ // Prevent indexing of individual project editor pages if they contain sensitive content
17
+ noIndex: false, // Set to true if you want to keep project pages private
18
+ });
19
+ }
20
+
21
+ export default async function ProjectNamespacePage({
22
+ params,
23
+ }: {
24
+ params: Promise<{ namespace: string; repoId: string }>;
25
+ }) {
26
+ const { namespace, repoId } = await params;
27
+ return <AppEditor namespace={namespace} repoId={repoId} />;
28
+ }
app/[owner]/[repoId]/page.tsx DELETED
@@ -1,35 +0,0 @@
1
- import { getProject } from "@/actions/projects";
2
- import { AppEditor } from "@/components/editor";
3
- import { auth } from "@/lib/auth";
4
- import { notFound, redirect } from "next/navigation";
5
-
6
- export default async function ProjectPage({
7
- params,
8
- searchParams,
9
- }: {
10
- params: Promise<{ owner: string; repoId: string }>;
11
- searchParams: Promise<{ commit?: string }>;
12
- }) {
13
- const session = await auth();
14
-
15
- const { owner, repoId } = await params;
16
- const { commit } = await searchParams;
17
- if (!session) {
18
- redirect(
19
- `/api/auth/signin?callbackUrl=/${owner}/${repoId}${
20
- commit ? `?commit=${commit}` : ""
21
- }`
22
- );
23
- }
24
- const datas = await getProject(`${owner}/${repoId}`, commit);
25
- if (!datas?.project) {
26
- return notFound();
27
- }
28
- return (
29
- <AppEditor
30
- project={datas.project}
31
- files={datas.files ?? []}
32
- isHistoryView={!!commit}
33
- />
34
- );
35
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/actions/auth.ts ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "use server";
2
+
3
+ import { headers } from "next/headers";
4
+
5
+ export async function getAuth() {
6
+ const authList = await headers();
7
+ const host = authList.get("host") ?? "localhost:3000";
8
+ const url = host.includes("/spaces/enzostvs")
9
+ ? "enzostvs-deepsite.hf.space"
10
+ : host;
11
+ const redirect_uri =
12
+ `${host.includes("localhost") ? "http://" : "https://"}` +
13
+ url +
14
+ "/auth/callback";
15
+
16
+ const loginRedirectUrl = `https://huggingface.co/oauth/authorize?client_id=${process.env.OAUTH_CLIENT_ID}&redirect_uri=${redirect_uri}&response_type=code&scope=openid%20profile%20write-repos%20manage-repos%20inference-api&prompt=consent&state=1234567890`;
17
+ return loginRedirectUrl;
18
+ }
app/actions/projects.ts ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "use server";
2
+
3
+ import { isAuthenticated } from "@/lib/auth";
4
+ import { NextResponse } from "next/server";
5
+ import { listSpaces } from "@huggingface/hub";
6
+ import { ProjectType } from "@/types";
7
+
8
+ export async function getProjects(): Promise<{
9
+ ok: boolean;
10
+ projects: ProjectType[];
11
+ isEmpty?: boolean;
12
+ }> {
13
+ const user = await isAuthenticated();
14
+
15
+ if (user instanceof NextResponse || !user) {
16
+ return {
17
+ ok: false,
18
+ projects: [],
19
+ };
20
+ }
21
+
22
+ const projects = [];
23
+ for await (const space of listSpaces({
24
+ accessToken: user.token as string,
25
+ additionalFields: ["author", "cardData"],
26
+ search: {
27
+ owner: user.name,
28
+ }
29
+ })) {
30
+ if (
31
+ !space.private &&
32
+ space.sdk === "static" &&
33
+ Array.isArray((space.cardData as { tags?: string[] })?.tags) &&
34
+ (
35
+ ((space.cardData as { tags?: string[] })?.tags?.includes("deepsite-v3")) ||
36
+ ((space.cardData as { tags?: string[] })?.tags?.includes("deepsite"))
37
+ )
38
+ ) {
39
+ projects.push(space);
40
+ }
41
+ }
42
+
43
+ return {
44
+ ok: true,
45
+ projects,
46
+ };
47
+ }
app/api/ask/route.ts CHANGED
@@ -1,37 +1,101 @@
 
 
1
  import { NextResponse } from "next/server";
 
2
  import { InferenceClient } from "@huggingface/inference";
3
 
4
- import { FOLLOW_UP_SYSTEM_PROMPT, INITIAL_SYSTEM_PROMPT } from "@/lib/prompts";
5
- import { auth } from "@/lib/auth";
6
- import { File, Message } from "@/lib/type";
7
- import { DEFAULT_MODEL, MODELS } from "@/lib/providers";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
- export async function POST(request: Request) {
10
- const session = await auth();
11
- if (!session) {
12
- return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
13
- }
14
- const token = session.accessToken;
15
 
16
  const body = await request.json();
17
- const {
18
- prompt,
19
- previousMessages = [],
20
- files = [],
21
- provider,
22
- model,
23
- redesignMd,
24
- medias,
25
- } = body;
26
-
27
- if (!prompt) {
28
- return NextResponse.json({ error: "Prompt is required" }, { status: 400 });
 
 
 
 
 
 
29
  }
30
- if (!model || !MODELS.find((m: (typeof MODELS)[0]) => m.value === model)) {
31
- return NextResponse.json({ error: "Model is required" }, { status: 400 });
 
 
 
 
 
 
 
 
 
 
32
  }
33
 
34
- const client = new InferenceClient(token);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
  try {
37
  const encoder = new TextEncoder();
@@ -45,139 +109,607 @@ export async function POST(request: Request) {
45
  Connection: "keep-alive",
46
  },
47
  });
48
- (async () => {
49
- let hasRetried = false;
50
- let currentModel = model;
51
 
52
- const tryGeneration = async (): Promise<void> => {
53
- try {
54
- const chatCompletion = client.chatCompletionStream({
55
- model: currentModel + (provider !== "auto" ? `:${provider}` : ""),
 
 
 
 
 
 
 
 
 
 
 
 
56
  messages: [
57
  {
58
  role: "system",
59
- content:
60
- files.length > 0
61
- ? FOLLOW_UP_SYSTEM_PROMPT
62
- : INITIAL_SYSTEM_PROMPT,
63
  },
64
- ...previousMessages.map((message: Message) => ({
65
- role: message.role,
66
- content: message.content,
67
- })),
68
- ...(files?.length > 0
69
- ? [
70
- {
71
- role: "user",
72
- content: `Here are the files that the user has provider:${files
73
- .map(
74
- (file: File) =>
75
- `File: ${file.path}\nContent: ${file.content}`
76
- )
77
- .join("\n")}\n\n${prompt}`,
78
- },
79
- ]
80
- : []),
81
  {
82
  role: "user",
83
- content: `${
84
- redesignMd?.url &&
85
- `Redesign the following website ${redesignMd.url}, try to use the same images and content, but you can still improve it if needed. Do the best version possibile. Here is the markdown:\n ${redesignMd.md} \n\n`
86
- }${prompt} ${
87
- medias && medias.length > 0
88
- ? `\nHere is the list of my media files: ${medias.join(
89
- ", "
90
- )}\n`
91
- : ""
92
- }`,
93
- }
94
  ],
95
- stream: true,
96
- max_tokens: 16_000,
97
- });
98
- while (true) {
99
- const { done, value } = await chatCompletion.next();
100
- if (done) {
101
- break;
102
- }
103
 
104
- const chunk = value.choices[0]?.delta?.content;
105
- if (chunk) {
106
- await writer.write(encoder.encode(chunk));
107
- }
108
  }
109
 
110
- await writer.close();
111
- } catch (error) {
112
- const errorMessage =
113
- error instanceof Error
114
- ? error.message
115
- : "An error occurred while processing your request";
116
-
117
- if (
118
- !hasRetried &&
119
- errorMessage?.includes(
120
- "Failed to perform inference: Model not found"
 
 
 
 
 
 
121
  )
122
- ) {
123
- hasRetried = true;
124
- if (model === DEFAULT_MODEL) {
125
- const availableFallbackModels = MODELS.filter(
126
- (m) => m.value !== model
127
- );
128
- const randomIndex = Math.floor(
129
- Math.random() * availableFallbackModels.length
130
- );
131
- currentModel = availableFallbackModels[randomIndex];
132
- } else {
133
- currentModel = DEFAULT_MODEL;
134
- }
135
- const switchMessage = `\n\n_Note: The selected model was not available. Switched to \`${currentModel}\`._\n\n`;
136
- await writer.write(encoder.encode(switchMessage));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
 
138
- return tryGeneration();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  }
 
 
 
 
 
 
 
 
 
140
 
141
- try {
142
- let errorPayload = "";
143
- if (
144
- errorMessage?.includes("exceeded your monthly included credits") ||
145
- errorMessage?.includes("reached the free monthly usage limit")
146
- ) {
147
- errorPayload = JSON.stringify({
148
- messageError: errorMessage,
149
- showProMessage: true,
150
- isError: true,
151
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  } else {
153
- errorPayload = JSON.stringify({
154
- messageError: errorMessage,
155
- isError: true,
156
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
  }
158
- await writer.write(encoder.encode(`\n\n__ERROR__:${errorPayload}`));
159
- await writer.close();
160
- } catch (closeError) {
161
- console.error("Failed to send error message:", closeError);
162
- try {
163
- await writer.abort(error);
164
- } catch (abortError) {
165
- console.error("Failed to abort writer:", abortError);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  }
167
  }
 
 
168
  }
169
- };
170
 
171
- await tryGeneration();
172
- })();
 
 
 
 
173
 
174
- return response;
175
- } catch (error) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
176
  return NextResponse.json(
177
  {
178
- error: error instanceof Error ? error.message : "Internal Server Error",
 
 
 
179
  },
180
  { status: 500 }
181
  );
182
  }
183
- }
 
1
+ /* eslint-disable @typescript-eslint/no-explicit-any */
2
+ import type { NextRequest } from "next/server";
3
  import { NextResponse } from "next/server";
4
+ import { headers } from "next/headers";
5
  import { InferenceClient } from "@huggingface/inference";
6
 
7
+ import { MODELS } from "@/lib/providers";
8
+ import {
9
+ DIVIDER,
10
+ FOLLOW_UP_SYSTEM_PROMPT,
11
+ INITIAL_SYSTEM_PROMPT,
12
+ MAX_REQUESTS_PER_IP,
13
+ NEW_PAGE_END,
14
+ NEW_PAGE_START,
15
+ REPLACE_END,
16
+ SEARCH_START,
17
+ UPDATE_PAGE_START,
18
+ UPDATE_PAGE_END,
19
+ PROMPT_FOR_PROJECT_NAME,
20
+ } from "@/lib/prompts";
21
+ import { calculateMaxTokens, estimateInputTokens, getProviderSpecificConfig } from "@/lib/max-tokens";
22
+ import MY_TOKEN_KEY from "@/lib/get-cookie-name";
23
+ import { Page } from "@/types";
24
+ import { createRepo, RepoDesignation, uploadFiles } from "@huggingface/hub";
25
+ import { isAuthenticated } from "@/lib/auth";
26
+ import { getBestProvider } from "@/lib/best-provider";
27
+ // import { rewritePrompt } from "@/lib/rewrite-prompt";
28
+ import { COLORS } from "@/lib/utils";
29
+ import { templates } from "@/lib/templates";
30
 
31
+ const ipAddresses = new Map();
32
+
33
+ export async function POST(request: NextRequest) {
34
+ const authHeaders = await headers();
35
+ const userToken = request.cookies.get(MY_TOKEN_KEY())?.value;
 
36
 
37
  const body = await request.json();
38
+ const { prompt, provider, model, redesignMarkdown, enhancedSettings, pages } = body;
39
+
40
+ if (!model || (!prompt && !redesignMarkdown)) {
41
+ return NextResponse.json(
42
+ { ok: false, error: "Missing required fields" },
43
+ { status: 400 }
44
+ );
45
+ }
46
+
47
+ const selectedModel = MODELS.find(
48
+ (m) => m.value === model || m.label === model
49
+ );
50
+
51
+ if (!selectedModel) {
52
+ return NextResponse.json(
53
+ { ok: false, error: "Invalid model selected" },
54
+ { status: 400 }
55
+ );
56
  }
57
+
58
+ let token: string | null = null;
59
+ if (userToken) token = userToken;
60
+ let billTo: string | null = null;
61
+
62
+ /**
63
+ * Handle local usage token, this bypass the need for a user token
64
+ * and allows local testing without authentication.
65
+ * This is useful for development and testing purposes.
66
+ */
67
+ if (process.env.HF_TOKEN && process.env.HF_TOKEN.length > 0) {
68
+ token = process.env.HF_TOKEN;
69
  }
70
 
71
+ const ip = authHeaders.get("x-forwarded-for")?.includes(",")
72
+ ? authHeaders.get("x-forwarded-for")?.split(",")[1].trim()
73
+ : authHeaders.get("x-forwarded-for");
74
+
75
+ if (!token) {
76
+ ipAddresses.set(ip, (ipAddresses.get(ip) || 0) + 1);
77
+ if (ipAddresses.get(ip) > MAX_REQUESTS_PER_IP) {
78
+ return NextResponse.json(
79
+ {
80
+ ok: false,
81
+ openLogin: true,
82
+ message: "Log In to continue using the service",
83
+ },
84
+ { status: 429 }
85
+ );
86
+ }
87
+
88
+ token = process.env.DEFAULT_HF_TOKEN as string;
89
+ billTo = "huggingface";
90
+ }
91
+
92
+ const selectedProvider = await getBestProvider(selectedModel.value, provider)
93
+
94
+ let rewrittenPrompt = redesignMarkdown ? `Here is my current design as a markdown:\n\n${redesignMarkdown}\n\nNow, please create a new design based on this markdown. Use the images in the markdown.` : prompt;
95
+
96
+ if (enhancedSettings.isActive) {
97
+ // rewrittenPrompt = await rewritePrompt(rewrittenPrompt, enhancedSettings, { token, billTo }, selectedModel.value, selectedProvider.provider);
98
+ }
99
 
100
  try {
101
  const encoder = new TextEncoder();
 
109
  Connection: "keep-alive",
110
  },
111
  });
 
 
 
112
 
113
+ (async () => {
114
+ // let completeResponse = "";
115
+ try {
116
+ const client = new InferenceClient(token);
117
+
118
+ const systemPrompt = INITIAL_SYSTEM_PROMPT;
119
+
120
+ const userPrompt = rewrittenPrompt;
121
+ const estimatedInputTokens = estimateInputTokens(systemPrompt, userPrompt);
122
+ const dynamicMaxTokens = calculateMaxTokens(selectedProvider, estimatedInputTokens, true);
123
+ const providerConfig = getProviderSpecificConfig(selectedProvider, dynamicMaxTokens);
124
+
125
+ const chatCompletion = client.chatCompletionStream(
126
+ {
127
+ model: selectedModel.value,
128
+ provider: selectedProvider.provider,
129
  messages: [
130
  {
131
  role: "system",
132
+ content: systemPrompt,
 
 
 
133
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134
  {
135
  role: "user",
136
+ content: userPrompt + (enhancedSettings.isActive ? `1. I want to use the following primary color: ${enhancedSettings.primaryColor} (eg: bg-${enhancedSettings.primaryColor}-500).
137
+ 2. I want to use the following secondary color: ${enhancedSettings.secondaryColor} (eg: bg-${enhancedSettings.secondaryColor}-500).
138
+ 3. I want to use the following theme: ${enhancedSettings.theme} mode.` : "")
139
+ },
 
 
 
 
 
 
 
140
  ],
141
+ ...providerConfig,
142
+ },
143
+ billTo ? { billTo } : {}
144
+ );
 
 
 
 
145
 
146
+ while (true) {
147
+ const { done, value } = await chatCompletion.next()
148
+ if (done) {
149
+ break;
150
  }
151
 
152
+ const chunk = value.choices[0]?.delta?.content;
153
+ if (chunk) {
154
+ await writer.write(encoder.encode(chunk));
155
+ }
156
+ }
157
+
158
+ // Explicitly close the writer after successful completion
159
+ await writer.close();
160
+ } catch (error: any) {
161
+ if (error.message?.includes("exceeded your monthly included credits")) {
162
+ await writer.write(
163
+ encoder.encode(
164
+ JSON.stringify({
165
+ ok: false,
166
+ openProModal: true,
167
+ message: error.message,
168
+ })
169
  )
170
+ );
171
+ } else if (error?.message?.includes("inference provider information")) {
172
+ await writer.write(
173
+ encoder.encode(
174
+ JSON.stringify({
175
+ ok: false,
176
+ openSelectProvider: true,
177
+ message: error.message,
178
+ })
179
+ )
180
+ );
181
+ }
182
+ else {
183
+ await writer.write(
184
+ encoder.encode(
185
+ JSON.stringify({
186
+ ok: false,
187
+ message:
188
+ error.message ||
189
+ "An error occurred while processing your request.",
190
+ })
191
+ )
192
+ );
193
+ }
194
+ } finally {
195
+ // Ensure the writer is always closed, even if already closed
196
+ try {
197
+ await writer?.close();
198
+ } catch {
199
+ // Ignore errors when closing the writer as it might already be closed
200
+ }
201
+ }
202
+ })();
203
+
204
+ return response;
205
+ } catch (error: any) {
206
+ return NextResponse.json(
207
+ {
208
+ ok: false,
209
+ openSelectProvider: true,
210
+ message:
211
+ error?.message || "An error occurred while processing your request.",
212
+ },
213
+ { status: 500 }
214
+ );
215
+ }
216
+ }
217
+
218
+ export async function PUT(request: NextRequest) {
219
+ const user = await isAuthenticated();
220
+ if (user instanceof NextResponse || !user) {
221
+ return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
222
+ }
223
+
224
+ const authHeaders = await headers();
225
+
226
+ const body = await request.json();
227
+ const { prompt, previousPrompts, provider, selectedElementHtml, model, pages, files, repoId: repoIdFromBody, isNew, enhancedSettings } =
228
+ body;
229
+
230
+ let repoId = repoIdFromBody;
231
+
232
+ if (!prompt || pages.length === 0) {
233
+ return NextResponse.json(
234
+ { ok: false, error: "Missing required fields" },
235
+ { status: 400 }
236
+ );
237
+ }
238
+
239
+ const selectedModel = MODELS.find(
240
+ (m) => m.value === model || m.label === model
241
+ );
242
+ if (!selectedModel) {
243
+ return NextResponse.json(
244
+ { ok: false, error: "Invalid model selected" },
245
+ { status: 400 }
246
+ );
247
+ }
248
 
249
+ let token = user.token as string;
250
+ let billTo: string | null = null;
251
+
252
+ /**
253
+ * Handle local usage token, this bypass the need for a user token
254
+ * and allows local testing without authentication.
255
+ * This is useful for development and testing purposes.
256
+ */
257
+ if (process.env.HF_TOKEN && process.env.HF_TOKEN.length > 0) {
258
+ token = process.env.HF_TOKEN;
259
+ }
260
+
261
+ const ip = authHeaders.get("x-forwarded-for")?.includes(",")
262
+ ? authHeaders.get("x-forwarded-for")?.split(",")[1].trim()
263
+ : authHeaders.get("x-forwarded-for");
264
+
265
+ if (!token) {
266
+ ipAddresses.set(ip, (ipAddresses.get(ip) || 0) + 1);
267
+ if (ipAddresses.get(ip) > MAX_REQUESTS_PER_IP) {
268
+ return NextResponse.json(
269
+ {
270
+ ok: false,
271
+ openLogin: true,
272
+ message: "Log In to continue using the service",
273
+ },
274
+ { status: 429 }
275
+ );
276
+ }
277
+
278
+ token = process.env.DEFAULT_HF_TOKEN as string;
279
+ billTo = "huggingface";
280
+ }
281
+
282
+ const client = new InferenceClient(token);
283
+
284
+ const escapeRegExp = (string: string) => {
285
+ return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
286
+ };
287
+
288
+ const normalizeHtml = (html: string): string => {
289
+ return html
290
+ // Normalize whitespace within tags
291
+ .replace(/\s+/g, ' ')
292
+ // Remove spaces before closing >
293
+ .replace(/\s+>/g, '>')
294
+ // Remove spaces before />
295
+ .replace(/\s+\/>/g, '/>')
296
+ // Normalize spaces around = in attributes
297
+ .replace(/\s*=\s*/g, '=')
298
+ // Normalize quotes (convert single to double)
299
+ .replace(/='([^']*)'/g, '="$1"')
300
+ // Remove trailing spaces in opening/closing tags
301
+ .replace(/<([^>]*?)\s+>/g, '<$1>')
302
+ // Normalize self-closing tags
303
+ .replace(/\/\s*>/g, '/>')
304
+ .trim();
305
+ };
306
+
307
+ const createFlexibleHtmlRegex = (searchBlock: string) => {
308
+ // Normalize both the search block for comparison
309
+ const normalizedSearch = normalizeHtml(searchBlock);
310
+
311
+ // Escape regex special characters
312
+ let searchRegex = escapeRegExp(normalizedSearch)
313
+ // Make whitespace flexible (but only between elements, not within tags)
314
+ .replace(/>\s*</g, '>\\s*<')
315
+ // Make line breaks and spaces around content flexible
316
+ .replace(/>\s*([^<]+)\s*</g, '>\\s*$1\\s*<');
317
+
318
+ return new RegExp(searchRegex, 'g');
319
+ };
320
+
321
+ const selectedProvider = await getBestProvider(selectedModel.value, provider)
322
+
323
+ try {
324
+ const systemPrompt = FOLLOW_UP_SYSTEM_PROMPT + (isNew ? PROMPT_FOR_PROJECT_NAME : "");
325
+ const userContext = "You are modifying the HTML file based on the user's request.";
326
+
327
+ // Send all pages without filtering
328
+ const allPages = pages || [];
329
+ const pagesContext = allPages
330
+ .map((p: Page) => `- ${p.path}\n${p.html}`)
331
+ .join("\n\n");
332
+
333
+ const assistantContext = `${
334
+ selectedElementHtml
335
+ ? `\n\nYou have to update ONLY the following element, NOTHING ELSE: \n\n\`\`\`html\n${selectedElementHtml}\n\`\`\` Could be in multiple pages, if so, update all the pages.`
336
+ : ""
337
+ }. Current pages (${allPages.length} total): ${pagesContext}. ${files?.length > 0 ? `Available images: ${files?.map((f: string) => f).join(', ')}.` : ""}`;
338
+
339
+ const estimatedInputTokens = estimateInputTokens(systemPrompt, prompt, userContext + assistantContext);
340
+ const dynamicMaxTokens = calculateMaxTokens(selectedProvider, estimatedInputTokens, false);
341
+ const providerConfig = getProviderSpecificConfig(selectedProvider, dynamicMaxTokens);
342
+
343
+ const chatCompletion = client.chatCompletionStream(
344
+ {
345
+ model: selectedModel.value,
346
+ provider: selectedProvider.provider,
347
+ messages: [
348
+ {
349
+ role: "system",
350
+ content: systemPrompt,
351
+ },
352
+ {
353
+ role: "user",
354
+ content: userContext,
355
+ },
356
+ {
357
+ role: "assistant",
358
+ content: assistantContext,
359
+ },
360
+ {
361
+ role: "user",
362
+ content: prompt,
363
+ },
364
+ ],
365
+ ...providerConfig,
366
+ },
367
+ billTo ? { billTo } : {}
368
+ );
369
+
370
+ let chunk = "";
371
+ while (true) {
372
+ const { done, value } = await chatCompletion.next();
373
+ if (done) {
374
+ break;
375
+ }
376
+
377
+ const deltaContent = value.choices[0]?.delta?.content;
378
+ if (deltaContent) {
379
+ chunk += deltaContent;
380
+ }
381
+ }
382
+ if (!chunk) {
383
+ return NextResponse.json(
384
+ { ok: false, message: "No content returned from the model" },
385
+ { status: 400 }
386
+ );
387
+ }
388
+
389
+ if (chunk) {
390
+ const updatedLines: number[][] = [];
391
+ let newHtml = "";
392
+ const updatedPages = [...(pages || [])];
393
+
394
+ const updatePageRegex = new RegExp(`${UPDATE_PAGE_START.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}([^\\s]+)\\s*${UPDATE_PAGE_END.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}([\\s\\S]*?)(?=${UPDATE_PAGE_START.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}|${NEW_PAGE_START.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}|$)`, 'g');
395
+ let updatePageMatch;
396
+
397
+ while ((updatePageMatch = updatePageRegex.exec(chunk)) !== null) {
398
+ const [, pagePath, pageContent] = updatePageMatch;
399
+
400
+ const pageIndex = updatedPages.findIndex(p => p.path === pagePath);
401
+ if (pageIndex !== -1) {
402
+ let pageHtml = updatedPages[pageIndex].html;
403
+
404
+ let processedContent = pageContent;
405
+ const htmlMatch = pageContent.match(/```html\s*([\s\S]*?)\s*```/);
406
+ if (htmlMatch) {
407
+ processedContent = htmlMatch[1];
408
  }
409
+ let position = 0;
410
+ let moreBlocks = true;
411
+
412
+ while (moreBlocks) {
413
+ const searchStartIndex = processedContent.indexOf(SEARCH_START, position);
414
+ if (searchStartIndex === -1) {
415
+ moreBlocks = false;
416
+ continue;
417
+ }
418
 
419
+ const dividerIndex = processedContent.indexOf(DIVIDER, searchStartIndex);
420
+ if (dividerIndex === -1) {
421
+ moreBlocks = false;
422
+ continue;
423
+ }
424
+
425
+ const replaceEndIndex = processedContent.indexOf(REPLACE_END, dividerIndex);
426
+ if (replaceEndIndex === -1) {
427
+ moreBlocks = false;
428
+ continue;
429
+ }
430
+
431
+ const searchBlock = processedContent.substring(
432
+ searchStartIndex + SEARCH_START.length,
433
+ dividerIndex
434
+ );
435
+ const replaceBlock = processedContent.substring(
436
+ dividerIndex + DIVIDER.length,
437
+ replaceEndIndex
438
+ );
439
+
440
+ if (searchBlock.trim() === "") {
441
+ pageHtml = `${replaceBlock}\n${pageHtml}`;
442
+ updatedLines.push([1, replaceBlock.split("\n").length]);
443
  } else {
444
+ const regex = createFlexibleHtmlRegex(searchBlock);
445
+
446
+ // Normalize the pageHtml for matching
447
+ const normalizedPageHtml = normalizeHtml(pageHtml);
448
+ const match = regex.exec(normalizedPageHtml);
449
+
450
+ if (match) {
451
+ // Find the original match in the non-normalized HTML
452
+ const normalizedSearch = normalizeHtml(searchBlock);
453
+ const originalMatchIndex = pageHtml.indexOf(searchBlock);
454
+
455
+ if (originalMatchIndex !== -1) {
456
+ const beforeText = pageHtml.substring(0, originalMatchIndex);
457
+ const startLineNumber = beforeText.split("\n").length;
458
+ const replaceLines = replaceBlock.split("\n").length;
459
+ const endLineNumber = startLineNumber + replaceLines - 1;
460
+
461
+ updatedLines.push([startLineNumber, endLineNumber]);
462
+ pageHtml = pageHtml.replace(searchBlock, replaceBlock);
463
+ } else {
464
+ // Fallback: try to find similar pattern in the original HTML
465
+ const flexibleRegex = new RegExp(
466
+ escapeRegExp(searchBlock)
467
+ .replace(/\s+/g, '\\s+')
468
+ .replace(/\s*=\s*/g, '\\s*=\\s*')
469
+ .replace(/'\s*([^']*)\s*'/g, "'\\s*$1\\s*'")
470
+ .replace(/"\s*([^"]*)\s*"/g, '"\\s*$1\\s*"')
471
+ .replace(/\s*>/g, '\\s*>')
472
+ .replace(/\s*\/>/g, '\\s*/>'),
473
+ 'g'
474
+ );
475
+
476
+ const flexibleMatch = flexibleRegex.exec(pageHtml);
477
+ if (flexibleMatch) {
478
+ const matchedText = flexibleMatch[0];
479
+ const beforeText = pageHtml.substring(0, flexibleMatch.index);
480
+ const startLineNumber = beforeText.split("\n").length;
481
+ const replaceLines = replaceBlock.split("\n").length;
482
+ const endLineNumber = startLineNumber + replaceLines - 1;
483
+
484
+ updatedLines.push([startLineNumber, endLineNumber]);
485
+ pageHtml = pageHtml.replace(matchedText, replaceBlock);
486
+ }
487
+ }
488
+ }
489
  }
490
+
491
+ position = replaceEndIndex + REPLACE_END.length;
492
+ }
493
+
494
+ updatedPages[pageIndex].html = pageHtml;
495
+
496
+ if (pagePath === '/' || pagePath === '/index' || pagePath === 'index') {
497
+ newHtml = pageHtml;
498
+ }
499
+ }
500
+ }
501
+
502
+ const newPageRegex = new RegExp(`${NEW_PAGE_START.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}([^\\s]+)\\s*${NEW_PAGE_END.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}([\\s\\S]*?)(?=${UPDATE_PAGE_START.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}|${NEW_PAGE_START.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}|$)`, 'g');
503
+ let newPageMatch;
504
+
505
+ while ((newPageMatch = newPageRegex.exec(chunk)) !== null) {
506
+ const [, pagePath, pageContent] = newPageMatch;
507
+
508
+ let pageHtml = pageContent;
509
+ const htmlMatch = pageContent.match(/```html\s*([\s\S]*?)\s*```/);
510
+ if (htmlMatch) {
511
+ pageHtml = htmlMatch[1];
512
+ }
513
+
514
+ const existingPageIndex = updatedPages.findIndex(p => p.path === pagePath);
515
+
516
+ if (existingPageIndex !== -1) {
517
+ updatedPages[existingPageIndex] = {
518
+ path: pagePath,
519
+ html: pageHtml.trim()
520
+ };
521
+ } else {
522
+ updatedPages.push({
523
+ path: pagePath,
524
+ html: pageHtml.trim()
525
+ });
526
+ }
527
+ }
528
+
529
+ if (updatedPages.length === pages?.length && !chunk.includes(UPDATE_PAGE_START)) {
530
+ let position = 0;
531
+ let moreBlocks = true;
532
+
533
+ while (moreBlocks) {
534
+ const searchStartIndex = chunk.indexOf(SEARCH_START, position);
535
+ if (searchStartIndex === -1) {
536
+ moreBlocks = false;
537
+ continue;
538
+ }
539
+
540
+ const dividerIndex = chunk.indexOf(DIVIDER, searchStartIndex);
541
+ if (dividerIndex === -1) {
542
+ moreBlocks = false;
543
+ continue;
544
+ }
545
+
546
+ const replaceEndIndex = chunk.indexOf(REPLACE_END, dividerIndex);
547
+ if (replaceEndIndex === -1) {
548
+ moreBlocks = false;
549
+ continue;
550
+ }
551
+
552
+ const searchBlock = chunk.substring(
553
+ searchStartIndex + SEARCH_START.length,
554
+ dividerIndex
555
+ );
556
+ const replaceBlock = chunk.substring(
557
+ dividerIndex + DIVIDER.length,
558
+ replaceEndIndex
559
+ );
560
+
561
+ if (searchBlock.trim() === "") {
562
+ newHtml = `${replaceBlock}\n${newHtml}`;
563
+ updatedLines.push([1, replaceBlock.split("\n").length]);
564
+ } else {
565
+ const regex = createFlexibleHtmlRegex(searchBlock);
566
+
567
+ // Get the main page HTML (first page or index page)
568
+ const mainPage = updatedPages.find(p => p.path === '/' || p.path === '/index' || p.path === 'index') || updatedPages[0];
569
+ if (!mainPage) continue;
570
+
571
+ newHtml = mainPage.html;
572
+
573
+ // Normalize the newHtml for matching
574
+ const normalizedNewHtml = normalizeHtml(newHtml);
575
+ const match = regex.exec(normalizedNewHtml);
576
+
577
+ if (match) {
578
+ // Find the original match in the non-normalized HTML
579
+ const originalMatchIndex = newHtml.indexOf(searchBlock);
580
+
581
+ if (originalMatchIndex !== -1) {
582
+ const beforeText = newHtml.substring(0, originalMatchIndex);
583
+ const startLineNumber = beforeText.split("\n").length;
584
+ const replaceLines = replaceBlock.split("\n").length;
585
+ const endLineNumber = startLineNumber + replaceLines - 1;
586
+
587
+ updatedLines.push([startLineNumber, endLineNumber]);
588
+ newHtml = newHtml.replace(searchBlock, replaceBlock);
589
+ } else {
590
+ // Fallback: try to find similar pattern in the original HTML
591
+ const flexibleRegex = new RegExp(
592
+ escapeRegExp(searchBlock)
593
+ .replace(/\s+/g, '\\s+')
594
+ .replace(/\s*=\s*/g, '\\s*=\\s*')
595
+ .replace(/'\s*([^']*)\s*'/g, "'\\s*$1\\s*'")
596
+ .replace(/"\s*([^"]*)\s*"/g, '"\\s*$1\\s*"')
597
+ .replace(/\s*>/g, '\\s*>')
598
+ .replace(/\s*\/>/g, '\\s*/>'),
599
+ 'g'
600
+ );
601
+
602
+ const flexibleMatch = flexibleRegex.exec(newHtml);
603
+ if (flexibleMatch) {
604
+ const matchedText = flexibleMatch[0];
605
+ const beforeText = newHtml.substring(0, flexibleMatch.index);
606
+ const startLineNumber = beforeText.split("\n").length;
607
+ const replaceLines = replaceBlock.split("\n").length;
608
+ const endLineNumber = startLineNumber + replaceLines - 1;
609
+
610
+ updatedLines.push([startLineNumber, endLineNumber]);
611
+ newHtml = newHtml.replace(matchedText, replaceBlock);
612
+ }
613
+ }
614
  }
615
  }
616
+
617
+ position = replaceEndIndex + REPLACE_END.length;
618
  }
 
619
 
620
+ // Update the main HTML if it's the index page
621
+ const mainPageIndex = updatedPages.findIndex(p => p.path === '/' || p.path === '/index' || p.path === 'index');
622
+ if (mainPageIndex !== -1) {
623
+ updatedPages[mainPageIndex].html = newHtml;
624
+ }
625
+ }
626
 
627
+ const files: File[] = [];
628
+ updatedPages.forEach((page: Page) => {
629
+ const file = new File([page.html], page.path, { type: "text/html" });
630
+ files.push(file);
631
+ });
632
+
633
+ if (isNew) {
634
+ const projectName = chunk.match(/<<<<<<< PROJECT_NAME_START ([\s\S]*?) >>>>>>> PROJECT_NAME_END/)?.[1]?.trim();
635
+ const formattedTitle = projectName?.toLowerCase()
636
+ .replace(/[^a-z0-9]+/g, "-")
637
+ .split("-")
638
+ .filter(Boolean)
639
+ .join("-")
640
+ .slice(0, 96);
641
+ const repo: RepoDesignation = {
642
+ type: "space",
643
+ name: `${user.name}/${formattedTitle}`,
644
+ };
645
+ const { repoUrl} = await createRepo({
646
+ repo,
647
+ accessToken: user.token as string,
648
+ });
649
+ repoId = repoUrl.split("/").slice(-2).join("/");
650
+ const colorFrom = COLORS[Math.floor(Math.random() * COLORS.length)];
651
+ const colorTo = COLORS[Math.floor(Math.random() * COLORS.length)];
652
+ const README = `---
653
+ title: ${projectName}
654
+ colorFrom: ${colorFrom}
655
+ colorTo: ${colorTo}
656
+ emoji: 🐳
657
+ sdk: static
658
+ pinned: false
659
+ tags:
660
+ - deepsite-v3
661
+ ---
662
+ # Welcome to your new DeepSite project!
663
+ This project was created with [DeepSite](https://deepsite.hf.co).
664
+ `;
665
+ files.push(new File([README], "README.md", { type: "text/markdown" }));
666
+ }
667
+
668
+ const response = await uploadFiles({
669
+ repo: {
670
+ type: "space",
671
+ name: repoId,
672
+ },
673
+ files,
674
+ commitTitle: prompt,
675
+ accessToken: user.token as string,
676
+ });
677
+
678
+ return NextResponse.json({
679
+ ok: true,
680
+ updatedLines,
681
+ pages: updatedPages,
682
+ repoId,
683
+ commit: {
684
+ ...response.commit,
685
+ title: prompt,
686
+ }
687
+ });
688
+ } else {
689
+ return NextResponse.json(
690
+ { ok: false, message: "No content returned from the model" },
691
+ { status: 400 }
692
+ );
693
+ }
694
+ } catch (error: any) {
695
+ if (error.message?.includes("exceeded your monthly included credits")) {
696
+ return NextResponse.json(
697
+ {
698
+ ok: false,
699
+ openProModal: true,
700
+ message: error.message,
701
+ },
702
+ { status: 402 }
703
+ );
704
+ }
705
  return NextResponse.json(
706
  {
707
+ ok: false,
708
+ openSelectProvider: true,
709
+ message:
710
+ error.message || "An error occurred while processing your request.",
711
  },
712
  { status: 500 }
713
  );
714
  }
715
+ }
app/api/auth/[...nextauth]/route.ts DELETED
@@ -1,6 +0,0 @@
1
- import NextAuth from "next-auth";
2
- import { authOptions } from "@/lib/auth";
3
-
4
- const handler = NextAuth(authOptions);
5
-
6
- export { handler as GET, handler as POST };
 
 
 
 
 
 
 
app/api/auth/login-url/route.ts ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { NextRequest, NextResponse } from "next/server";
2
+
3
+ export async function GET(req: NextRequest) {
4
+ const host = req.headers.get("host") ?? "localhost:3000";
5
+
6
+ let url: string;
7
+ if (host.includes("localhost")) {
8
+ url = host;
9
+ } else if (host.includes("hf.space") || host.includes("/spaces/enzostvs")) {
10
+ url = "enzostvs-deepsite.hf.space";
11
+ } else {
12
+ url = "deepsite.hf.co";
13
+ }
14
+
15
+ const redirect_uri =
16
+ `${host.includes("localhost") ? "http://" : "https://"}` +
17
+ url +
18
+ "/auth/callback";
19
+
20
+ const loginRedirectUrl = `https://huggingface.co/oauth/authorize?client_id=${process.env.OAUTH_CLIENT_ID}&redirect_uri=${redirect_uri}&response_type=code&scope=openid%20profile%20write-repos%20manage-repos%20inference-api&prompt=consent&state=1234567890`;
21
+
22
+ return NextResponse.json({ loginUrl: loginRedirectUrl });
23
+ }
app/api/auth/logout/route.ts ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { NextResponse } from "next/server";
2
+ import MY_TOKEN_KEY from "@/lib/get-cookie-name";
3
+
4
+ export async function POST() {
5
+ const cookieName = MY_TOKEN_KEY();
6
+ const isProduction = process.env.NODE_ENV === "production";
7
+
8
+ const response = NextResponse.json(
9
+ { message: "Logged out successfully" },
10
+ { status: 200 }
11
+ );
12
+
13
+ // Clear the HTTP-only cookie
14
+ const cookieOptions = [
15
+ `${cookieName}=`,
16
+ "Max-Age=0",
17
+ "Path=/",
18
+ "HttpOnly",
19
+ ...(isProduction ? ["Secure", "SameSite=None"] : ["SameSite=Lax"])
20
+ ].join("; ");
21
+
22
+ response.headers.set("Set-Cookie", cookieOptions);
23
+
24
+ return response;
25
+ }
app/api/auth/route.ts ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { NextRequest, NextResponse } from "next/server";
2
+ import MY_TOKEN_KEY from "@/lib/get-cookie-name";
3
+
4
+ export async function POST(req: NextRequest) {
5
+ const body = await req.json();
6
+ const { code } = body;
7
+
8
+ if (!code) {
9
+ return NextResponse.json(
10
+ { error: "Code is required" },
11
+ {
12
+ status: 400,
13
+ headers: {
14
+ "Content-Type": "application/json",
15
+ },
16
+ }
17
+ );
18
+ }
19
+
20
+ const Authorization = `Basic ${Buffer.from(
21
+ `${process.env.OAUTH_CLIENT_ID}:${process.env.OAUTH_CLIENT_SECRET}`
22
+ ).toString("base64")}`;
23
+
24
+ const host =
25
+ req.headers.get("host") ?? req.headers.get("origin") ?? "localhost:3000";
26
+
27
+ const url = host.includes("/spaces/enzostvs")
28
+ ? "enzostvs-deepsite.hf.space"
29
+ : host;
30
+ const redirect_uri =
31
+ `${host.includes("localhost") ? "http://" : "https://"}` +
32
+ url +
33
+ "/auth/callback";
34
+ const request_auth = await fetch("https://huggingface.co/oauth/token", {
35
+ method: "POST",
36
+ headers: {
37
+ "Content-Type": "application/x-www-form-urlencoded",
38
+ Authorization,
39
+ },
40
+ body: new URLSearchParams({
41
+ grant_type: "authorization_code",
42
+ code,
43
+ redirect_uri,
44
+ }),
45
+ });
46
+
47
+ const response = await request_auth.json();
48
+ if (!response.access_token) {
49
+ return NextResponse.json(
50
+ { error: "Failed to retrieve access token" },
51
+ {
52
+ status: 400,
53
+ headers: {
54
+ "Content-Type": "application/json",
55
+ },
56
+ }
57
+ );
58
+ }
59
+
60
+ const userResponse = await fetch("https://huggingface.co/api/whoami-v2", {
61
+ headers: {
62
+ Authorization: `Bearer ${response.access_token}`,
63
+ },
64
+ });
65
+
66
+ if (!userResponse.ok) {
67
+ return NextResponse.json(
68
+ { user: null, errCode: userResponse.status },
69
+ { status: userResponse.status }
70
+ );
71
+ }
72
+ const user = await userResponse.json();
73
+
74
+ const cookieName = MY_TOKEN_KEY();
75
+ const isProduction = process.env.NODE_ENV === "production";
76
+
77
+ // Create response with user data
78
+ const nextResponse = NextResponse.json(
79
+ {
80
+ access_token: response.access_token,
81
+ expires_in: response.expires_in,
82
+ user,
83
+ // Include fallback flag for iframe contexts
84
+ useLocalStorageFallback: true,
85
+ },
86
+ {
87
+ status: 200,
88
+ headers: {
89
+ "Content-Type": "application/json",
90
+ },
91
+ }
92
+ );
93
+
94
+ // Set HTTP-only cookie with proper attributes for iframe support
95
+ const cookieOptions = [
96
+ `${cookieName}=${response.access_token}`,
97
+ `Max-Age=${response.expires_in || 3600}`, // Default 1 hour if not provided
98
+ "Path=/",
99
+ "HttpOnly",
100
+ ...(isProduction ? ["Secure", "SameSite=None"] : ["SameSite=Lax"])
101
+ ].join("; ");
102
+
103
+ nextResponse.headers.set("Set-Cookie", cookieOptions);
104
+
105
+ return nextResponse;
106
+ }
app/api/healthcheck/route.ts DELETED
@@ -1,5 +0,0 @@
1
- import { NextResponse } from "next/server";
2
-
3
- export async function GET() {
4
- return NextResponse.json({ status: "ok" }, { status: 200 });
5
- }
 
 
 
 
 
 
app/api/me/projects/[namespace]/[repoId]/commits/[commitId]/promote/route.ts ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { NextRequest, NextResponse } from "next/server";
2
+ import { RepoDesignation, listFiles, spaceInfo, uploadFiles, deleteFiles } from "@huggingface/hub";
3
+
4
+ import { isAuthenticated } from "@/lib/auth";
5
+ import { Page } from "@/types";
6
+
7
+ export async function POST(
8
+ req: NextRequest,
9
+ { params }: {
10
+ params: Promise<{
11
+ namespace: string;
12
+ repoId: string;
13
+ commitId: string;
14
+ }>
15
+ }
16
+ ) {
17
+ const user = await isAuthenticated();
18
+
19
+ if (user instanceof NextResponse || !user) {
20
+ return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
21
+ }
22
+
23
+ const param = await params;
24
+ const { namespace, repoId, commitId } = param;
25
+
26
+ try {
27
+ const repo: RepoDesignation = {
28
+ type: "space",
29
+ name: `${namespace}/${repoId}`,
30
+ };
31
+
32
+ const space = await spaceInfo({
33
+ name: `${namespace}/${repoId}`,
34
+ accessToken: user.token as string,
35
+ additionalFields: ["author"],
36
+ });
37
+
38
+ if (!space || space.sdk !== "static") {
39
+ return NextResponse.json(
40
+ { ok: false, error: "Space is not a static space." },
41
+ { status: 404 }
42
+ );
43
+ }
44
+
45
+ if (space.author !== user.name) {
46
+ return NextResponse.json(
47
+ { ok: false, error: "Space does not belong to the authenticated user." },
48
+ { status: 403 }
49
+ );
50
+ }
51
+
52
+ // Fetch files from the specific commit
53
+ const files: File[] = [];
54
+ const pages: Page[] = [];
55
+ const allowedExtensions = ["html", "md", "css", "js", "json", "txt"];
56
+ const commitFilePaths: Set<string> = new Set();
57
+
58
+ // Get all files from the specific commit
59
+ for await (const fileInfo of listFiles({
60
+ repo,
61
+ accessToken: user.token as string,
62
+ revision: commitId,
63
+ })) {
64
+ const fileExtension = fileInfo.path.split('.').pop()?.toLowerCase();
65
+
66
+ if (allowedExtensions.includes(fileExtension || "")) {
67
+ commitFilePaths.add(fileInfo.path);
68
+
69
+ // Fetch the file content from the specific commit
70
+ const response = await fetch(
71
+ `https://huggingface.co/spaces/${namespace}/${repoId}/raw/${commitId}/${fileInfo.path}`
72
+ );
73
+
74
+ if (response.ok) {
75
+ const content = await response.text();
76
+ let mimeType = "text/plain";
77
+
78
+ switch (fileExtension) {
79
+ case "html":
80
+ mimeType = "text/html";
81
+ // Add HTML files to pages array for client-side setPages
82
+ pages.push({
83
+ path: fileInfo.path,
84
+ html: content,
85
+ });
86
+ break;
87
+ case "css":
88
+ mimeType = "text/css";
89
+ break;
90
+ case "js":
91
+ mimeType = "application/javascript";
92
+ break;
93
+ case "json":
94
+ mimeType = "application/json";
95
+ break;
96
+ case "md":
97
+ mimeType = "text/markdown";
98
+ break;
99
+ }
100
+
101
+ const file = new File([content], fileInfo.path, { type: mimeType });
102
+ files.push(file);
103
+ }
104
+ }
105
+ }
106
+
107
+ // Get files currently in main branch to identify files to delete
108
+ const mainBranchFilePaths: Set<string> = new Set();
109
+ for await (const fileInfo of listFiles({
110
+ repo,
111
+ accessToken: user.token as string,
112
+ revision: "main",
113
+ })) {
114
+ const fileExtension = fileInfo.path.split('.').pop()?.toLowerCase();
115
+
116
+ if (allowedExtensions.includes(fileExtension || "")) {
117
+ mainBranchFilePaths.add(fileInfo.path);
118
+ }
119
+ }
120
+
121
+ // Identify files to delete (exist in main but not in commit)
122
+ const filesToDelete: string[] = [];
123
+ for (const mainFilePath of mainBranchFilePaths) {
124
+ if (!commitFilePaths.has(mainFilePath)) {
125
+ filesToDelete.push(mainFilePath);
126
+ }
127
+ }
128
+
129
+ if (files.length === 0 && filesToDelete.length === 0) {
130
+ return NextResponse.json(
131
+ { ok: false, error: "No files found in the specified commit and no files to delete" },
132
+ { status: 404 }
133
+ );
134
+ }
135
+
136
+ // Delete files that exist in main but not in the commit being promoted
137
+ if (filesToDelete.length > 0) {
138
+ await deleteFiles({
139
+ repo,
140
+ paths: filesToDelete,
141
+ accessToken: user.token as string,
142
+ commitTitle: `Removed files from promoting ${commitId.slice(0, 7)}`,
143
+ commitDescription: `Removed files that don't exist in commit ${commitId}:\n${filesToDelete.map(path => `- ${path}`).join('\n')}`,
144
+ });
145
+ }
146
+
147
+ // Upload the files to the main branch with a promotion commit message
148
+ if (files.length > 0) {
149
+ await uploadFiles({
150
+ repo,
151
+ files,
152
+ accessToken: user.token as string,
153
+ commitTitle: `Promote version ${commitId.slice(0, 7)} to main`,
154
+ commitDescription: `Promoted commit ${commitId} to main branch`,
155
+ });
156
+ }
157
+
158
+ return NextResponse.json(
159
+ {
160
+ ok: true,
161
+ message: "Version promoted successfully",
162
+ promotedCommit: commitId,
163
+ pages: pages,
164
+ },
165
+ { status: 200 }
166
+ );
167
+
168
+ } catch (error: any) {
169
+
170
+ // Handle specific HuggingFace API errors
171
+ if (error.statusCode === 404) {
172
+ return NextResponse.json(
173
+ { ok: false, error: "Commit not found" },
174
+ { status: 404 }
175
+ );
176
+ }
177
+
178
+ if (error.statusCode === 403) {
179
+ return NextResponse.json(
180
+ { ok: false, error: "Access denied to repository" },
181
+ { status: 403 }
182
+ );
183
+ }
184
+
185
+ return NextResponse.json(
186
+ { ok: false, error: error.message || "Failed to promote version" },
187
+ { status: 500 }
188
+ );
189
+ }
190
+ }
app/api/me/projects/[namespace]/[repoId]/images/route.ts ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { NextRequest, NextResponse } from "next/server";
2
+ import { RepoDesignation, spaceInfo, uploadFiles } from "@huggingface/hub";
3
+
4
+ import { isAuthenticated } from "@/lib/auth";
5
+ import Project from "@/models/Project";
6
+ import dbConnect from "@/lib/mongodb";
7
+
8
+ export async function POST(
9
+ req: NextRequest,
10
+ { params }: { params: Promise<{ namespace: string; repoId: string }> }
11
+ ) {
12
+ try {
13
+ const user = await isAuthenticated();
14
+
15
+ if (user instanceof NextResponse || !user) {
16
+ return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
17
+ }
18
+
19
+ const param = await params;
20
+ const { namespace, repoId } = param;
21
+
22
+ const space = await spaceInfo({
23
+ name: `${namespace}/${repoId}`,
24
+ accessToken: user.token as string,
25
+ additionalFields: ["author"],
26
+ });
27
+
28
+ if (!space || space.sdk !== "static") {
29
+ return NextResponse.json(
30
+ { ok: false, error: "Space is not a static space." },
31
+ { status: 404 }
32
+ );
33
+ }
34
+
35
+ if (space.author !== user.name) {
36
+ return NextResponse.json(
37
+ { ok: false, error: "Space does not belong to the authenticated user." },
38
+ { status: 403 }
39
+ );
40
+ }
41
+
42
+ // Parse the FormData to get the images
43
+ const formData = await req.formData();
44
+ const imageFiles = formData.getAll("images") as File[];
45
+
46
+ if (!imageFiles || imageFiles.length === 0) {
47
+ return NextResponse.json(
48
+ {
49
+ ok: false,
50
+ error: "At least one image file is required under the 'images' key",
51
+ },
52
+ { status: 400 }
53
+ );
54
+ }
55
+
56
+ const files: File[] = [];
57
+ for (const file of imageFiles) {
58
+ if (!(file instanceof File)) {
59
+ return NextResponse.json(
60
+ {
61
+ ok: false,
62
+ error: "Invalid file format - all items under 'images' key must be files",
63
+ },
64
+ { status: 400 }
65
+ );
66
+ }
67
+
68
+ if (!file.type.startsWith('image/')) {
69
+ return NextResponse.json(
70
+ {
71
+ ok: false,
72
+ error: `File ${file.name} is not an image`,
73
+ },
74
+ { status: 400 }
75
+ );
76
+ }
77
+
78
+ // Create File object with images/ folder prefix
79
+ const fileName = `images/${file.name}`;
80
+ const processedFile = new File([file], fileName, { type: file.type });
81
+ files.push(processedFile);
82
+ }
83
+
84
+ // Upload files to HuggingFace space
85
+ const repo: RepoDesignation = {
86
+ type: "space",
87
+ name: `${namespace}/${repoId}`,
88
+ };
89
+
90
+ await uploadFiles({
91
+ repo,
92
+ files,
93
+ accessToken: user.token as string,
94
+ commitTitle: `Upload ${files.length} image(s)`,
95
+ });
96
+
97
+ return NextResponse.json({
98
+ ok: true,
99
+ message: `Successfully uploaded ${files.length} image(s) to ${namespace}/${repoId}/images/`,
100
+ uploadedFiles: files.map((file) => `https://huggingface.co/spaces/${namespace}/${repoId}/resolve/main/${file.name}`),
101
+ }, { status: 200 });
102
+
103
+ } catch (error) {
104
+ console.error('Error uploading images:', error);
105
+ return NextResponse.json(
106
+ {
107
+ ok: false,
108
+ error: "Failed to upload images",
109
+ },
110
+ { status: 500 }
111
+ );
112
+ }
113
+ }
app/api/me/projects/[namespace]/[repoId]/route.ts ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { NextRequest, NextResponse } from "next/server";
2
+ import { RepoDesignation, spaceInfo, listFiles, deleteRepo, listCommits, downloadFile } from "@huggingface/hub";
3
+
4
+ import { isAuthenticated } from "@/lib/auth";
5
+ import { Commit, Page } from "@/types";
6
+
7
+ export async function DELETE(
8
+ req: NextRequest,
9
+ { params }: { params: Promise<{ namespace: string; repoId: string }> }
10
+ ) {
11
+ const user = await isAuthenticated();
12
+
13
+ if (user instanceof NextResponse || !user) {
14
+ return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
15
+ }
16
+
17
+ const param = await params;
18
+ const { namespace, repoId } = param;
19
+
20
+ try {
21
+ const space = await spaceInfo({
22
+ name: `${namespace}/${repoId}`,
23
+ accessToken: user.token as string,
24
+ additionalFields: ["author"],
25
+ });
26
+
27
+ if (!space || space.sdk !== "static") {
28
+ return NextResponse.json(
29
+ { ok: false, error: "Space is not a static space." },
30
+ { status: 404 }
31
+ );
32
+ }
33
+
34
+ if (space.author !== user.name) {
35
+ return NextResponse.json(
36
+ { ok: false, error: "Space does not belong to the authenticated user." },
37
+ { status: 403 }
38
+ );
39
+ }
40
+
41
+ const repo: RepoDesignation = {
42
+ type: "space",
43
+ name: `${namespace}/${repoId}`,
44
+ };
45
+
46
+ await deleteRepo({
47
+ repo,
48
+ accessToken: user.token as string,
49
+ });
50
+
51
+
52
+ return NextResponse.json({ ok: true }, { status: 200 });
53
+ } catch (error: any) {
54
+ return NextResponse.json(
55
+ { ok: false, error: error.message },
56
+ { status: 500 }
57
+ );
58
+ }
59
+ }
60
+
61
+ export async function GET(
62
+ req: NextRequest,
63
+ { params }: { params: Promise<{ namespace: string; repoId: string }> }
64
+ ) {
65
+ const user = await isAuthenticated();
66
+
67
+ if (user instanceof NextResponse || !user) {
68
+ return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
69
+ }
70
+
71
+ const param = await params;
72
+ const { namespace, repoId } = param;
73
+
74
+ try {
75
+ const space = await spaceInfo({
76
+ name: namespace + "/" + repoId,
77
+ accessToken: user.token as string,
78
+ additionalFields: ["author"],
79
+ });
80
+
81
+ if (!space || space.sdk !== "static") {
82
+ return NextResponse.json(
83
+ {
84
+ ok: false,
85
+ error: "Space is not a static space",
86
+ },
87
+ { status: 404 }
88
+ );
89
+ }
90
+ if (space.author !== user.name) {
91
+ return NextResponse.json(
92
+ {
93
+ ok: false,
94
+ error: "Space does not belong to the authenticated user",
95
+ },
96
+ { status: 403 }
97
+ );
98
+ }
99
+
100
+ const repo: RepoDesignation = {
101
+ type: "space",
102
+ name: `${namespace}/${repoId}`,
103
+ };
104
+
105
+ const htmlFiles: Page[] = [];
106
+ const files: string[] = [];
107
+
108
+ const allowedFilesExtensions = ["jpg", "jpeg", "png", "gif", "svg", "webp", "avif", "heic", "heif", "ico", "bmp", "tiff", "tif"];
109
+
110
+ for await (const fileInfo of listFiles({repo, accessToken: user.token as string})) {
111
+ if (fileInfo.path.endsWith(".html")) {
112
+ const blob = await downloadFile({ repo, accessToken: user.token as string, path: fileInfo.path, raw: true });
113
+ const html = await blob?.text();
114
+ if (!html) {
115
+ continue;
116
+ }
117
+ if (fileInfo.path === "index.html") {
118
+ htmlFiles.unshift({
119
+ path: fileInfo.path,
120
+ html,
121
+ });
122
+ } else {
123
+ htmlFiles.push({
124
+ path: fileInfo.path,
125
+ html,
126
+ });
127
+ }
128
+ }
129
+ if (fileInfo.type === "directory" && fileInfo.path === "images") {
130
+ for await (const imageInfo of listFiles({repo, accessToken: user.token as string, path: fileInfo.path})) {
131
+ if (allowedFilesExtensions.includes(imageInfo.path.split(".").pop() || "")) {
132
+ files.push(`https://huggingface.co/spaces/${namespace}/${repoId}/resolve/main/${imageInfo.path}`);
133
+ }
134
+ }
135
+ }
136
+ }
137
+ const commits: Commit[] = [];
138
+ for await (const commit of listCommits({ repo, accessToken: user.token as string })) {
139
+ if (commit.title.includes("initial commit") || commit.title.includes("image(s)") || commit.title.includes("Removed files from promoting")) {
140
+ continue;
141
+ }
142
+ commits.push({
143
+ title: commit.title,
144
+ oid: commit.oid,
145
+ date: commit.date,
146
+ });
147
+ }
148
+
149
+ if (htmlFiles.length === 0) {
150
+ return NextResponse.json(
151
+ {
152
+ ok: false,
153
+ error: "No HTML files found",
154
+ },
155
+ { status: 404 }
156
+ );
157
+ }
158
+ return NextResponse.json(
159
+ {
160
+ project: {
161
+ id: space.id,
162
+ space_id: space.name,
163
+ private: space.private,
164
+ _updatedAt: space.updatedAt,
165
+ },
166
+ pages: htmlFiles,
167
+ files,
168
+ commits,
169
+ ok: true,
170
+ },
171
+ { status: 200 }
172
+ );
173
+
174
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
175
+ } catch (error: any) {
176
+ if (error.statusCode === 404) {
177
+ return NextResponse.json(
178
+ { error: "Space not found", ok: false },
179
+ { status: 404 }
180
+ );
181
+ }
182
+ return NextResponse.json(
183
+ { error: error.message, ok: false },
184
+ { status: 500 }
185
+ );
186
+ }
187
+ }
app/api/me/projects/[namespace]/[repoId]/save/route.ts ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { NextRequest, NextResponse } from "next/server";
2
+ import { uploadFiles } from "@huggingface/hub";
3
+
4
+ import { isAuthenticated } from "@/lib/auth";
5
+ import { Page } from "@/types";
6
+
7
+ export async function PUT(
8
+ req: NextRequest,
9
+ { params }: { params: Promise<{ namespace: string; repoId: string }> }
10
+ ) {
11
+ const user = await isAuthenticated();
12
+ if (user instanceof NextResponse || !user) {
13
+ return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
14
+ }
15
+
16
+ const param = await params;
17
+ const { namespace, repoId } = param;
18
+ const { pages, commitTitle = "Manual changes saved" } = await req.json();
19
+
20
+ if (!pages || !Array.isArray(pages) || pages.length === 0) {
21
+ return NextResponse.json(
22
+ { ok: false, error: "Pages are required" },
23
+ { status: 400 }
24
+ );
25
+ }
26
+
27
+ try {
28
+ // Prepare files for upload
29
+ const files: File[] = [];
30
+ pages.forEach((page: Page) => {
31
+ const file = new File([page.html], page.path, { type: "text/html" });
32
+ files.push(file);
33
+ });
34
+
35
+ // Upload files to HuggingFace Hub
36
+ const response = await uploadFiles({
37
+ repo: {
38
+ type: "space",
39
+ name: `${namespace}/${repoId}`,
40
+ },
41
+ files,
42
+ commitTitle,
43
+ accessToken: user.token as string,
44
+ });
45
+
46
+ return NextResponse.json({
47
+ ok: true,
48
+ pages,
49
+ commit: {
50
+ ...response.commit,
51
+ title: commitTitle,
52
+ }
53
+ });
54
+ } catch (error: any) {
55
+ console.error("Error saving manual changes:", error);
56
+ return NextResponse.json(
57
+ {
58
+ ok: false,
59
+ error: error.message || "Failed to save changes",
60
+ },
61
+ { status: 500 }
62
+ );
63
+ }
64
+ }
app/api/me/projects/route.ts ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { NextRequest, NextResponse } from "next/server";
2
+ import { RepoDesignation, createRepo, listCommits, spaceInfo, uploadFiles } from "@huggingface/hub";
3
+
4
+ import { isAuthenticated } from "@/lib/auth";
5
+ import { Commit, Page } from "@/types";
6
+ import { COLORS } from "@/lib/utils";
7
+
8
+ export async function POST(
9
+ req: NextRequest,
10
+ ) {
11
+ const user = await isAuthenticated();
12
+ if (user instanceof NextResponse || !user) {
13
+ return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
14
+ }
15
+
16
+ const { title: titleFromRequest, pages, prompt } = await req.json();
17
+
18
+ const title = titleFromRequest ?? "DeepSite Project";
19
+
20
+ const formattedTitle = title
21
+ .toLowerCase()
22
+ .replace(/[^a-z0-9]+/g, "-")
23
+ .split("-")
24
+ .filter(Boolean)
25
+ .join("-")
26
+ .slice(0, 96);
27
+
28
+ const repo: RepoDesignation = {
29
+ type: "space",
30
+ name: `${user.name}/${formattedTitle}`,
31
+ };
32
+ const colorFrom = COLORS[Math.floor(Math.random() * COLORS.length)];
33
+ const colorTo = COLORS[Math.floor(Math.random() * COLORS.length)];
34
+ const README = `---
35
+ title: ${title}
36
+ colorFrom: ${colorFrom}
37
+ colorTo: ${colorTo}
38
+ emoji: 🐳
39
+ sdk: static
40
+ pinned: false
41
+ tags:
42
+ - deepsite-v3
43
+ ---
44
+
45
+ # Welcome to your new DeepSite project!
46
+ This project was created with [DeepSite](https://deepsite.hf.co).
47
+ `;
48
+
49
+ const files: File[] = [];
50
+ const readmeFile = new File([README], "README.md", { type: "text/markdown" });
51
+ files.push(readmeFile);
52
+ pages.forEach((page: Page) => {
53
+ const file = new File([page.html], page.path, { type: "text/html" });
54
+ files.push(file);
55
+ });
56
+
57
+ try {
58
+ const { repoUrl} = await createRepo({
59
+ repo,
60
+ accessToken: user.token as string,
61
+ });
62
+ const commitTitle = !prompt || prompt.trim() === "" ? "Redesign my website" : prompt;
63
+ await uploadFiles({
64
+ repo,
65
+ files,
66
+ accessToken: user.token as string,
67
+ commitTitle
68
+ });
69
+
70
+ const path = repoUrl.split("/").slice(-2).join("/");
71
+
72
+ const commits: Commit[] = [];
73
+ for await (const commit of listCommits({ repo, accessToken: user.token as string })) {
74
+ if (commit.title.includes("initial commit") || commit.title.includes("image(s)") || commit.title.includes("Promote version")) {
75
+ continue;
76
+ }
77
+ commits.push({
78
+ title: commit.title,
79
+ oid: commit.oid,
80
+ date: commit.date,
81
+ });
82
+ }
83
+
84
+ const space = await spaceInfo({
85
+ name: repo.name,
86
+ accessToken: user.token as string,
87
+ });
88
+
89
+ let newProject = {
90
+ files,
91
+ pages,
92
+ commits,
93
+ project: {
94
+ id: space.id,
95
+ space_id: space.name,
96
+ _updatedAt: space.updatedAt,
97
+ }
98
+ }
99
+
100
+ return NextResponse.json({ space: newProject, path, ok: true }, { status: 201 });
101
+ } catch (err: any) {
102
+ return NextResponse.json(
103
+ { error: err.message, ok: false },
104
+ { status: 500 }
105
+ );
106
+ }
107
+ }
app/api/me/route.ts ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { listSpaces } from "@huggingface/hub";
2
+ import { headers } from "next/headers";
3
+ import { NextResponse } from "next/server";
4
+
5
+ export async function GET() {
6
+ const authHeaders = await headers();
7
+ const token = authHeaders.get("Authorization");
8
+ if (!token) {
9
+ return NextResponse.json({ user: null, errCode: 401 }, { status: 401 });
10
+ }
11
+
12
+ const userResponse = await fetch("https://huggingface.co/api/whoami-v2", {
13
+ headers: {
14
+ Authorization: `${token}`,
15
+ },
16
+ });
17
+
18
+ if (!userResponse.ok) {
19
+ return NextResponse.json(
20
+ { user: null, errCode: userResponse.status },
21
+ { status: userResponse.status }
22
+ );
23
+ }
24
+ const user = await userResponse.json();
25
+ const projects = [];
26
+ for await (const space of listSpaces({
27
+ accessToken: token.replace("Bearer ", "") as string,
28
+ additionalFields: ["author", "cardData"],
29
+ search: {
30
+ owner: user.name,
31
+ }
32
+ })) {
33
+ if (
34
+ space.sdk === "static" &&
35
+ Array.isArray((space.cardData as { tags?: string[] })?.tags) &&
36
+ (
37
+ ((space.cardData as { tags?: string[] })?.tags?.includes("deepsite-v3")) ||
38
+ ((space.cardData as { tags?: string[] })?.tags?.includes("deepsite"))
39
+ )
40
+ ) {
41
+ projects.push(space);
42
+ }
43
+ }
44
+
45
+ return NextResponse.json({ user, projects, errCode: null }, { status: 200 });
46
+ }
app/api/projects/[repoId]/[commitId]/route.ts DELETED
@@ -1,49 +0,0 @@
1
- import { auth } from "@/lib/auth";
2
- import { createBranch, RepoDesignation } from "@huggingface/hub";
3
- import { format } from "date-fns";
4
- import { NextResponse } from "next/server";
5
-
6
- export async function POST(
7
- request: Request,
8
- { params }: { params: Promise<{ repoId: string; commitId: string }> }
9
- ) {
10
- const { repoId, commitId }: { repoId: string; commitId: string } =
11
- await params;
12
- const session = await auth();
13
- if (!session) {
14
- return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
15
- }
16
- const token = session.accessToken;
17
-
18
- const repo: RepoDesignation = {
19
- type: "space",
20
- name: session.user?.username + "/" + repoId,
21
- };
22
-
23
- const commitTitle = `🔖 ${format(new Date(), "dd/MM")} - ${format(
24
- new Date(),
25
- "HH:mm"
26
- )} - Set commit ${commitId} as default.`;
27
-
28
- await fetch(
29
- `https://huggingface.co/api/spaces/${session.user?.username}/${repoId}/branch/main`,
30
- {
31
- method: "POST",
32
- headers: {
33
- Authorization: `Bearer ${token}`,
34
- "Content-Type": "application/json",
35
- },
36
- body: JSON.stringify({
37
- startingPoint: commitId,
38
- overwrite: true,
39
- }),
40
- }
41
- ).catch((error) => {
42
- return NextResponse.json(
43
- { error: error ?? "Failed to create branch" },
44
- { status: 500 }
45
- );
46
- });
47
-
48
- return NextResponse.json({ success: true }, { status: 200 });
49
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/projects/[repoId]/download/route.ts DELETED
@@ -1,76 +0,0 @@
1
- import { auth } from "@/lib/auth";
2
- import { downloadFile, listFiles, RepoDesignation } from "@huggingface/hub";
3
- import { NextResponse } from "next/server";
4
- import JSZip from "jszip";
5
-
6
- export async function GET(
7
- request: Request,
8
- { params }: { params: Promise<{ repoId: string }> }
9
- ) {
10
- const { repoId }: { repoId: string } = await params;
11
- const session = await auth();
12
- if (!session) {
13
- return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
14
- }
15
- const token = session.accessToken;
16
- const repo: RepoDesignation = {
17
- type: "space",
18
- name: session.user?.username + "/" + repoId,
19
- };
20
-
21
- try {
22
- const zip = new JSZip();
23
- for await (const fileInfo of listFiles({
24
- repo,
25
- accessToken: token as string,
26
- recursive: true,
27
- })) {
28
- if (fileInfo.type === "directory" || fileInfo.path.startsWith(".")) {
29
- continue;
30
- }
31
-
32
- try {
33
- const blob = await downloadFile({
34
- repo,
35
- accessToken: token as string,
36
- path: fileInfo.path,
37
- raw: true
38
- }).catch((error) => {
39
- return null;
40
- });
41
- if (!blob) {
42
- continue;
43
- }
44
-
45
- if (blob) {
46
- const arrayBuffer = await blob.arrayBuffer();
47
- zip.file(fileInfo.path, arrayBuffer);
48
- }
49
- } catch (error) {
50
- console.error(`Error downloading file ${fileInfo.path}:`, error);
51
- }
52
- }
53
-
54
- const zipBlob = await zip.generateAsync({
55
- type: "blob",
56
- compression: "DEFLATE",
57
- compressionOptions: {
58
- level: 6
59
- }
60
- });
61
-
62
- const projectName = `${session.user?.username}-${repoId}`.replace(/[^a-zA-Z0-9-_]/g, '_');
63
- const filename = `${projectName}.zip`;
64
-
65
- return new NextResponse(zipBlob, {
66
- headers: {
67
- "Content-Type": "application/zip",
68
- "Content-Disposition": `attachment; filename="${filename}"`,
69
- "Content-Length": zipBlob.size.toString(),
70
- },
71
- });
72
- } catch (error) {
73
- console.error("Error downloading project:", error);
74
- return NextResponse.json({ error: "Failed to download project" }, { status: 500 });
75
- }
76
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/projects/[repoId]/medias/route.ts DELETED
@@ -1,87 +0,0 @@
1
- import { auth } from "@/lib/auth";
2
- import { RepoDesignation, uploadFiles } from "@huggingface/hub";
3
- import { NextResponse } from "next/server";
4
-
5
- export async function POST(
6
- request: Request,
7
- { params }: { params: Promise<{ repoId: string }> }
8
- ) {
9
- const { repoId }: { repoId: string } = await params;
10
- const session = await auth();
11
- if (!session) {
12
- return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
13
- }
14
- const token = session.accessToken;
15
-
16
- const repo: RepoDesignation = {
17
- type: "space",
18
- name: session.user?.username + "/" + repoId,
19
- };
20
-
21
- const formData = await request.formData();
22
- const newMedias = formData.getAll("images") as File[];
23
-
24
- const filesToUpload: File[] = [];
25
-
26
- if (!newMedias || newMedias.length === 0) {
27
- return NextResponse.json(
28
- {
29
- ok: false,
30
- error: "At least one media file is required under the 'images' key",
31
- },
32
- { status: 400 }
33
- );
34
- }
35
-
36
- try {
37
- for (const media of newMedias) {
38
- const isImage = media.type.startsWith("image/");
39
- const isVideo = media.type.startsWith("video/");
40
- const isAudio = media.type.startsWith("audio/");
41
-
42
- const folderPath = isImage
43
- ? "images/"
44
- : isVideo
45
- ? "videos/"
46
- : isAudio
47
- ? "audios/"
48
- : null;
49
-
50
- if (!folderPath) {
51
- return NextResponse.json(
52
- { ok: false, error: "Unsupported media type: " + media.type },
53
- { status: 400 }
54
- );
55
- }
56
-
57
- const mediaName = `${folderPath}${media.name}`;
58
- const processedFile = new File([media], mediaName, { type: media.type });
59
- filesToUpload.push(processedFile);
60
- }
61
-
62
- await uploadFiles({
63
- repo,
64
- files: filesToUpload,
65
- accessToken: token,
66
- commitTitle: `📁 Upload media files through DeepSite`,
67
- });
68
-
69
- return NextResponse.json(
70
- {
71
- success: true,
72
- medias: filesToUpload.map(
73
- (file) =>
74
- `https://huggingface.co/spaces/${session.user?.username}/${repoId}/resolve/main/${file.name}`
75
- ),
76
- },
77
- { status: 200 }
78
- );
79
- } catch (error) {
80
- return NextResponse.json(
81
- { ok: false, error: error ?? "Failed to upload media files" },
82
- { status: 500 }
83
- );
84
- }
85
-
86
- return NextResponse.json({ success: true }, { status: 200 });
87
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/projects/[repoId]/rename/route.ts DELETED
@@ -1,92 +0,0 @@
1
- import { auth } from "@/lib/auth";
2
- import { downloadFile, RepoDesignation, uploadFile } from "@huggingface/hub";
3
- import { format } from "date-fns";
4
- import { NextResponse } from "next/server";
5
-
6
- export async function PUT(
7
- request: Request,
8
- { params }: { params: Promise<{ repoId: string }> }
9
- ) {
10
- const { repoId }: { repoId: string } = await params;
11
- const session = await auth();
12
- if (!session) {
13
- return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
14
- }
15
- const token = session.accessToken;
16
-
17
- const body = await request.json();
18
- const { newTitle } = body;
19
-
20
- if (!newTitle) {
21
- return NextResponse.json(
22
- { error: "newTitle is required" },
23
- { status: 400 }
24
- );
25
- }
26
-
27
- const repo: RepoDesignation = {
28
- type: "space",
29
- name: session.user?.username + "/" + repoId,
30
- };
31
-
32
- const blob = await downloadFile({
33
- repo,
34
- accessToken: token,
35
- path: "README.md",
36
- raw: true,
37
- }).catch((_) => {
38
- return null;
39
- });
40
-
41
- if (!blob) {
42
- return NextResponse.json(
43
- { error: "Could not fetch README.md" },
44
- { status: 500 }
45
- );
46
- }
47
-
48
- const readmeFile = await blob?.text();
49
- if (!readmeFile) {
50
- return NextResponse.json(
51
- { error: "Could not read README.md content" },
52
- { status: 500 }
53
- );
54
- }
55
-
56
- // Escape YAML values to prevent injection attacks
57
- const escapeYamlValue = (value: string): string => {
58
- if (/[:|>]|^[-*#]|^\s|['"]/.test(value) || value.includes("\n")) {
59
- return `"${value.replace(/"/g, '\\"')}"`;
60
- }
61
- return value;
62
- };
63
-
64
- // Escape commit message to prevent injection
65
- const escapeCommitMessage = (message: string): string => {
66
- return message.replace(/[\r\n]/g, " ").slice(0, 200);
67
- };
68
-
69
- const updatedReadmeFile = readmeFile.replace(
70
- /^title:\s*(.*)$/m,
71
- `title: ${escapeYamlValue(newTitle)}`
72
- );
73
-
74
- await uploadFile({
75
- repo,
76
- accessToken: token,
77
- file: new File([updatedReadmeFile], "README.md", { type: "text/markdown" }),
78
- commitTitle: escapeCommitMessage(
79
- `🐳 ${format(new Date(), "dd/MM")} - ${format(
80
- new Date(),
81
- "HH:mm"
82
- )} - Rename project to "${newTitle}"`
83
- ),
84
- });
85
-
86
- return NextResponse.json(
87
- {
88
- success: true,
89
- },
90
- { status: 200 }
91
- );
92
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/projects/[repoId]/route.ts DELETED
@@ -1,104 +0,0 @@
1
- import { auth } from "@/lib/auth";
2
- import { RepoDesignation, deleteRepo, uploadFiles } from "@huggingface/hub";
3
- import { format } from "date-fns";
4
- import { NextResponse } from "next/server";
5
-
6
- export async function PUT(
7
- request: Request,
8
- { params }: { params: Promise<{ repoId: string }> }
9
- ) {
10
- const { repoId }: { repoId: string } = await params;
11
- const session = await auth();
12
- if (!session) {
13
- return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
14
- }
15
- const token = session.accessToken;
16
-
17
- const body = await request.json();
18
- const { files, prompt, isManualChanges } = body;
19
-
20
- if (!files) {
21
- return NextResponse.json({ error: "Files are required" }, { status: 400 });
22
- }
23
-
24
- if (!prompt) {
25
- return NextResponse.json({ error: "Prompt is required" }, { status: 400 });
26
- }
27
-
28
- const repo: RepoDesignation = {
29
- type: "space",
30
- name: session.user?.username + "/" + repoId,
31
- };
32
-
33
- const filesToUpload: File[] = [];
34
- for (const file of files) {
35
- let mimeType = "text/x-python";
36
- if (file.path.endsWith(".txt")) {
37
- mimeType = "text/plain";
38
- } else if (file.path.endsWith(".md")) {
39
- mimeType = "text/markdown";
40
- } else if (file.path.endsWith(".json")) {
41
- mimeType = "application/json";
42
- }
43
- filesToUpload.push(new File([file.content], file.path, { type: mimeType }));
44
- }
45
- // Escape commit title to prevent injection
46
- const escapeCommitTitle = (title: string): string => {
47
- return title.replace(/[\r\n]/g, " ").slice(0, 200);
48
- };
49
-
50
- const baseTitle = isManualChanges
51
- ? ""
52
- : `🐳 ${format(new Date(), "dd/MM")} - ${format(new Date(), "HH:mm")} - `;
53
- const commitTitle = escapeCommitTitle(
54
- baseTitle + (prompt ?? "Follow-up DeepSite commit")
55
- );
56
- const response = await uploadFiles({
57
- repo,
58
- files: filesToUpload,
59
- accessToken: token,
60
- commitTitle,
61
- });
62
-
63
- return NextResponse.json(
64
- {
65
- success: true,
66
- commit: {
67
- oid: response.commit,
68
- title: commitTitle,
69
- date: new Date(),
70
- },
71
- },
72
- { status: 200 }
73
- );
74
- }
75
-
76
- export async function DELETE(
77
- request: Request,
78
- { params }: { params: Promise<{ repoId: string }> }
79
- ) {
80
- const { repoId }: { repoId: string } = await params;
81
- const session = await auth();
82
- if (!session) {
83
- return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
84
- }
85
- const token = session.accessToken;
86
-
87
- const repo: RepoDesignation = {
88
- type: "space",
89
- name: session.user?.username + "/" + repoId,
90
- };
91
-
92
- try {
93
- await deleteRepo({
94
- repo,
95
- accessToken: token as string,
96
- });
97
-
98
- return NextResponse.json({ success: true }, { status: 200 });
99
- } catch (error) {
100
- const errMsg =
101
- error instanceof Error ? error.message : "Failed to delete project";
102
- return NextResponse.json({ error: errMsg }, { status: 500 });
103
- }
104
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/projects/route.ts DELETED
@@ -1,145 +0,0 @@
1
- import { NextResponse } from "next/server";
2
- import { RepoDesignation, createRepo, uploadFiles } from "@huggingface/hub";
3
-
4
- import { auth } from "@/lib/auth";
5
- import {
6
- COLORS,
7
- EMOJIS_FOR_SPACE,
8
- injectDeepSiteBadge,
9
- isIndexPage,
10
- } from "@/lib/utils";
11
-
12
- // todo: catch error while publishing project, and return the error to the user
13
- // if space has been created, but can't push, try again or catch well the error and return the error to the user
14
-
15
- export async function POST(request: Request) {
16
- const session = await auth();
17
- if (!session) {
18
- return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
19
- }
20
- const token = session.accessToken;
21
-
22
- const body = await request.json();
23
- const { projectTitle, files, prompt } = body;
24
-
25
- if (!files) {
26
- return NextResponse.json(
27
- { error: "Project title and files are required" },
28
- { status: 400 }
29
- );
30
- }
31
-
32
- const title =
33
- projectTitle || projectTitle !== "" ? projectTitle : "DeepSite Project";
34
-
35
- let formattedTitle = title
36
- .toLowerCase()
37
- .replace(/[^a-z0-9]+/g, "-")
38
- .split("-")
39
- .filter(Boolean)
40
- .join("-")
41
- .slice(0, 75);
42
-
43
- formattedTitle =
44
- formattedTitle + "-" + Math.random().toString(36).substring(2, 7);
45
-
46
- const repo: RepoDesignation = {
47
- type: "space",
48
- name: session.user?.username + "/" + formattedTitle,
49
- };
50
-
51
- // Escape YAML values to prevent injection attacks
52
- const escapeYamlValue = (value: string): string => {
53
- if (/[:|>]|^[-*#]|^\s|['"]/.test(value) || value.includes("\n")) {
54
- return `"${value.replace(/"/g, '\\"')}"`;
55
- }
56
- return value;
57
- };
58
-
59
- // Escape markdown headers to prevent injection
60
- const escapeMarkdownHeader = (value: string): string => {
61
- return value.replace(/^#+\s*/g, "").replace(/\n/g, " ");
62
- };
63
-
64
- const colorFrom = COLORS[Math.floor(Math.random() * COLORS.length)];
65
- const colorTo = COLORS[Math.floor(Math.random() * COLORS.length)];
66
- const emoji =
67
- EMOJIS_FOR_SPACE[Math.floor(Math.random() * EMOJIS_FOR_SPACE.length)];
68
- const README = `---
69
- title: ${escapeYamlValue(projectTitle)}
70
- colorFrom: ${colorFrom}
71
- colorTo: ${colorTo}
72
- sdk: static
73
- emoji: ${emoji}
74
- tags:
75
- - deepsite-v4
76
- ---
77
-
78
- # ${escapeMarkdownHeader(title)}
79
-
80
- This project has been created with [DeepSite](https://deepsite.hf.co) AI Vibe Coding.
81
- `;
82
-
83
- const filesToUpload: File[] = [
84
- new File([README], "README.md", { type: "text/markdown" }),
85
- ];
86
- for (const file of files) {
87
- let mimeType = "text/html";
88
- if (file.path.endsWith(".css")) {
89
- mimeType = "text/css";
90
- } else if (file.path.endsWith(".js")) {
91
- mimeType = "text/javascript";
92
- }
93
- const content =
94
- mimeType === "text/html" && isIndexPage(file.path)
95
- ? injectDeepSiteBadge(file.content)
96
- : file.content;
97
-
98
- filesToUpload.push(new File([content], file.path, { type: mimeType }));
99
- }
100
-
101
- let repoUrl: string | undefined;
102
-
103
- try {
104
- // Create the space first
105
- const createResult = await createRepo({
106
- accessToken: token as string,
107
- repo: repo,
108
- sdk: "static",
109
- });
110
- repoUrl = createResult.repoUrl;
111
-
112
- // Escape commit message to prevent injection
113
- const escapeCommitMessage = (message: string): string => {
114
- return message.replace(/[\r\n]/g, " ").slice(0, 200);
115
- };
116
- const commitMessage = escapeCommitMessage(prompt ?? "Initial DeepSite commit");
117
-
118
- // Upload files to the created space
119
- await uploadFiles({
120
- repo,
121
- files: filesToUpload,
122
- accessToken: token as string,
123
- commitTitle: commitMessage,
124
- });
125
-
126
- const path = repoUrl.split("/").slice(-2).join("/");
127
-
128
- return NextResponse.json({ repoUrl: path }, { status: 200 });
129
- } catch (error) {
130
- const errMsg =
131
- error instanceof Error ? error.message : "Failed to create or upload to space";
132
-
133
- // If space was created but upload failed, include the repo URL in the error
134
- if (repoUrl) {
135
- const path = repoUrl.split("/").slice(-2).join("/");
136
- return NextResponse.json({
137
- error: `${errMsg}. Space was created at ${path} but files could not be uploaded.`,
138
- repoUrl: path,
139
- partialSuccess: true
140
- }, { status: 500 });
141
- }
142
-
143
- return NextResponse.json({ error: errMsg }, { status: 500 });
144
- }
145
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/api/re-design/route.ts ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { NextRequest, NextResponse } from "next/server";
2
+
3
+ export async function PUT(request: NextRequest) {
4
+ const body = await request.json();
5
+ const { url } = body;
6
+
7
+ if (!url) {
8
+ return NextResponse.json({ error: "URL is required" }, { status: 400 });
9
+ }
10
+
11
+ try {
12
+ const response = await fetch(
13
+ `https://r.jina.ai/${encodeURIComponent(url)}`,
14
+ {
15
+ method: "POST",
16
+ }
17
+ );
18
+ if (!response.ok) {
19
+ return NextResponse.json(
20
+ { error: "Failed to fetch redesign" },
21
+ { status: 500 }
22
+ );
23
+ }
24
+ const markdown = await response.text();
25
+ return NextResponse.json(
26
+ {
27
+ ok: true,
28
+ markdown,
29
+ },
30
+ { status: 200 }
31
+ );
32
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
33
+ } catch (error: any) {
34
+ return NextResponse.json(
35
+ { error: error.message || "An error occurred" },
36
+ { status: 500 }
37
+ );
38
+ }
39
+ }
app/api/redesign/route.ts DELETED
@@ -1,73 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import { NextRequest, NextResponse } from "next/server";
3
-
4
- const FETCH_TIMEOUT = 30_000;
5
- export const maxDuration = 60;
6
-
7
- export async function PUT(request: NextRequest) {
8
- const body = await request.json();
9
- const { url } = body;
10
-
11
- if (!url) {
12
- return NextResponse.json({ error: "URL is required" }, { status: 400 });
13
- }
14
-
15
- try {
16
- const controller = new AbortController();
17
- const timeoutId = setTimeout(() => controller.abort(), FETCH_TIMEOUT);
18
-
19
- try {
20
- const response = await fetch(
21
- `https://r.jina.ai/${encodeURIComponent(url)}`,
22
- {
23
- method: "POST",
24
- signal: controller.signal,
25
- }
26
- );
27
-
28
- clearTimeout(timeoutId);
29
-
30
- if (!response.ok) {
31
- return NextResponse.json(
32
- { error: "Failed to fetch redesign" },
33
- { status: 500 }
34
- );
35
- }
36
- const markdown = await response.text();
37
- return NextResponse.json(
38
- {
39
- ok: true,
40
- markdown,
41
- },
42
- { status: 200 }
43
- );
44
- } catch (fetchError: any) {
45
- clearTimeout(timeoutId);
46
-
47
- if (fetchError.name === "AbortError") {
48
- return NextResponse.json(
49
- {
50
- error:
51
- "Request timeout: The external service took too long to respond. Please try again.",
52
- },
53
- { status: 504 }
54
- );
55
- }
56
- throw fetchError;
57
- }
58
- } catch (error: any) {
59
- if (error.name === "AbortError" || error.message?.includes("timeout")) {
60
- return NextResponse.json(
61
- {
62
- error:
63
- "Request timeout: The external service took too long to respond. Please try again.",
64
- },
65
- { status: 504 }
66
- );
67
- }
68
- return NextResponse.json(
69
- { error: error.message || "An error occurred" },
70
- { status: 500 }
71
- );
72
- }
73
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/auth/callback/page.tsx ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "use client";
2
+ import Link from "next/link";
3
+ import { useUser } from "@/hooks/useUser";
4
+ import { use, useState } from "react";
5
+ import { useMount, useTimeoutFn } from "react-use";
6
+
7
+ import { Button } from "@/components/ui/button";
8
+ import { AnimatedBlobs } from "@/components/animated-blobs";
9
+ import { useBroadcastChannel } from "@/lib/useBroadcastChannel";
10
+ export default function AuthCallback({
11
+ searchParams,
12
+ }: {
13
+ searchParams: Promise<{ code: string }>;
14
+ }) {
15
+ const [showButton, setShowButton] = useState(false);
16
+ const [isPopupAuth, setIsPopupAuth] = useState(false);
17
+ const { code } = use(searchParams);
18
+ const { loginFromCode } = useUser();
19
+ const { postMessage } = useBroadcastChannel("auth", () => {});
20
+
21
+ useMount(async () => {
22
+ if (code) {
23
+ const isPopup = window.opener || window.parent !== window;
24
+ setIsPopupAuth(isPopup);
25
+
26
+ if (isPopup) {
27
+ postMessage({
28
+ type: "user-oauth",
29
+ code: code,
30
+ });
31
+
32
+ setTimeout(() => {
33
+ if (window.opener) {
34
+ window.close();
35
+ }
36
+ }, 1000);
37
+ } else {
38
+ await loginFromCode(code);
39
+ }
40
+ }
41
+ });
42
+
43
+ useTimeoutFn(() => setShowButton(true), 7000);
44
+
45
+ return (
46
+ <div className="h-screen flex flex-col justify-center items-center bg-neutral-950 z-1 relative">
47
+ <div className="background__noisy" />
48
+ <div className="relative max-w-4xl py-10 flex items-center justify-center w-full">
49
+ <div className="max-w-lg mx-auto !rounded-2xl !p-0 !bg-white !border-neutral-100 min-w-xs text-center overflow-hidden ring-[8px] ring-white/20">
50
+ <header className="bg-neutral-50 p-6 border-b border-neutral-200/60">
51
+ <div className="flex items-center justify-center -space-x-4 mb-3">
52
+ <div className="size-9 rounded-full bg-pink-200 shadow-2xs flex items-center justify-center text-xl opacity-50">
53
+ 🚀
54
+ </div>
55
+ <div className="size-11 rounded-full bg-amber-200 shadow-2xl flex items-center justify-center text-2xl z-2">
56
+ 👋
57
+ </div>
58
+ <div className="size-9 rounded-full bg-sky-200 shadow-2xs flex items-center justify-center text-xl opacity-50">
59
+ 🙌
60
+ </div>
61
+ </div>
62
+ <p className="text-xl font-semibold text-neutral-950">
63
+ {isPopupAuth
64
+ ? "Authentication Complete!"
65
+ : "Login In Progress..."}
66
+ </p>
67
+ <p className="text-sm text-neutral-500 mt-1.5">
68
+ {isPopupAuth
69
+ ? "You can now close this tab and return to the previous page."
70
+ : "Wait a moment while we log you in with your code."}
71
+ </p>
72
+ </header>
73
+ <main className="space-y-4 p-6">
74
+ <div>
75
+ <p className="text-sm text-neutral-700 mb-4 max-w-xs">
76
+ If you are not redirected automatically in the next 5 seconds,
77
+ please click the button below
78
+ </p>
79
+ {showButton ? (
80
+ <Link href="/">
81
+ <Button variant="black" className="relative">
82
+ Go to Home
83
+ </Button>
84
+ </Link>
85
+ ) : (
86
+ <p className="text-xs text-neutral-500">
87
+ Please wait, we are logging you in...
88
+ </p>
89
+ )}
90
+ </div>
91
+ </main>
92
+ </div>
93
+ <AnimatedBlobs />
94
+ </div>
95
+ </div>
96
+ );
97
+ }
app/auth/page.tsx ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { redirect } from "next/navigation";
2
+ import { Metadata } from "next";
3
+
4
+ import { getAuth } from "@/app/actions/auth";
5
+
6
+ export const revalidate = 1;
7
+
8
+ export const metadata: Metadata = {
9
+ robots: "noindex, nofollow",
10
+ };
11
+
12
+ export default async function Auth() {
13
+ const loginRedirectUrl = await getAuth();
14
+ if (loginRedirectUrl) {
15
+ redirect(loginRedirectUrl);
16
+ }
17
+
18
+ return (
19
+ <div className="p-4">
20
+ <div className="border bg-red-500/10 border-red-500/20 text-red-500 px-5 py-3 rounded-lg">
21
+ <h1 className="text-xl font-bold">Error</h1>
22
+ <p className="text-sm">
23
+ An error occurred while trying to log in. Please try again later.
24
+ </p>
25
+ </div>
26
+ </div>
27
+ );
28
+ }
app/layout.tsx CHANGED
@@ -1,24 +1,29 @@
 
1
  import type { Metadata, Viewport } from "next";
2
- import { Geist, Geist_Mono } from "next/font/google";
3
- import { NextStepProvider } from "nextstepjs";
4
  import Script from "next/script";
5
 
6
- import "@/app/globals.css";
7
- import { ThemeProvider } from "@/components/providers/theme";
8
- import { AuthProvider } from "@/components/providers/session";
9
  import { Toaster } from "@/components/ui/sonner";
10
- import { ReactQueryProvider } from "@/components/providers/react-query";
 
 
 
 
 
 
11
  import { generateSEO, generateStructuredData } from "@/lib/seo";
12
- import { NotAuthorizedDomain } from "@/components/not-authorized";
13
 
14
- const geistSans = Geist({
15
- variable: "--font-geist-sans",
16
  subsets: ["latin"],
17
  });
18
 
19
- const geistMono = Geist_Mono({
20
- variable: "--font-geist-mono",
21
  subsets: ["latin"],
 
22
  });
23
 
24
  export const metadata: Metadata = {
@@ -46,29 +51,47 @@ export const metadata: Metadata = {
46
  export const viewport: Viewport = {
47
  initialScale: 1,
48
  maximumScale: 1,
49
- themeColor: "#4f46e5",
50
  };
51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  export default async function RootLayout({
53
  children,
54
  }: Readonly<{
55
  children: React.ReactNode;
56
  }>) {
 
 
 
57
  const structuredData = generateStructuredData("WebApplication", {
58
  name: "DeepSite",
59
  description: "Build websites with AI, no code required",
60
  url: "https://deepsite.hf.co",
61
  });
 
62
  const organizationData = generateStructuredData("Organization", {
63
  name: "DeepSite",
64
  url: "https://deepsite.hf.co",
65
  });
66
 
67
  return (
68
- <html lang="en" suppressHydrationWarning>
69
- <body
70
- className={`${geistSans.variable} ${geistMono.variable} antialiased`}
71
- >
72
  <script
73
  type="application/ld+json"
74
  dangerouslySetInnerHTML={{
@@ -81,27 +104,24 @@ export default async function RootLayout({
81
  __html: JSON.stringify(organizationData),
82
  }}
83
  />
84
- <Script
85
- defer
86
- data-domain="deepsite.hf.co"
87
- src="https://plausible.io/js/script.js"
88
- />
89
- <Toaster richColors />
90
- <AuthProvider>
91
- <ReactQueryProvider>
92
- <ThemeProvider
93
- attribute="class"
94
- defaultTheme="dark"
95
- enableSystem
96
- disableTransitionOnChange
97
- >
98
- <NextStepProvider>
99
- {children}
100
- <NotAuthorizedDomain />
101
- </NextStepProvider>
102
- </ThemeProvider>
103
- </ReactQueryProvider>
104
- </AuthProvider>
105
  </body>
106
  </html>
107
  );
 
1
+ /* eslint-disable @typescript-eslint/no-explicit-any */
2
  import type { Metadata, Viewport } from "next";
3
+ import { Inter, PT_Sans } from "next/font/google";
4
+ import { cookies } from "next/headers";
5
  import Script from "next/script";
6
 
7
+ import "@/assets/globals.css";
 
 
8
  import { Toaster } from "@/components/ui/sonner";
9
+ import MY_TOKEN_KEY from "@/lib/get-cookie-name";
10
+ import { apiServer } from "@/lib/api";
11
+ import IframeDetector from "@/components/iframe-detector";
12
+ import AppContext from "@/components/contexts/app-context";
13
+ import TanstackContext from "@/components/contexts/tanstack-query-context";
14
+ import { LoginProvider } from "@/components/contexts/login-context";
15
+ import { ProProvider } from "@/components/contexts/pro-context";
16
  import { generateSEO, generateStructuredData } from "@/lib/seo";
 
17
 
18
+ const inter = Inter({
19
+ variable: "--font-inter-sans",
20
  subsets: ["latin"],
21
  });
22
 
23
+ const ptSans = PT_Sans({
24
+ variable: "--font-ptSans-mono",
25
  subsets: ["latin"],
26
+ weight: ["400", "700"],
27
  });
28
 
29
  export const metadata: Metadata = {
 
51
  export const viewport: Viewport = {
52
  initialScale: 1,
53
  maximumScale: 1,
54
+ themeColor: "#000000",
55
  };
56
 
57
+ async function getMe() {
58
+ const cookieStore = await cookies();
59
+ const token = cookieStore.get(MY_TOKEN_KEY())?.value;
60
+ if (!token) return { user: null, projects: [], errCode: null };
61
+ try {
62
+ const res = await apiServer.get("/me", {
63
+ headers: {
64
+ Authorization: `Bearer ${token}`,
65
+ },
66
+ });
67
+ return { user: res.data.user, projects: res.data.projects, errCode: null };
68
+ } catch (err: any) {
69
+ return { user: null, projects: [], errCode: err.status };
70
+ }
71
+ }
72
+
73
  export default async function RootLayout({
74
  children,
75
  }: Readonly<{
76
  children: React.ReactNode;
77
  }>) {
78
+ const data = await getMe();
79
+
80
+ // Generate structured data
81
  const structuredData = generateStructuredData("WebApplication", {
82
  name: "DeepSite",
83
  description: "Build websites with AI, no code required",
84
  url: "https://deepsite.hf.co",
85
  });
86
+
87
  const organizationData = generateStructuredData("Organization", {
88
  name: "DeepSite",
89
  url: "https://deepsite.hf.co",
90
  });
91
 
92
  return (
93
+ <html lang="en">
94
+ <head>
 
 
95
  <script
96
  type="application/ld+json"
97
  dangerouslySetInnerHTML={{
 
104
  __html: JSON.stringify(organizationData),
105
  }}
106
  />
107
+ </head>
108
+ <Script
109
+ defer
110
+ data-domain="deepsite.hf.co"
111
+ src="https://plausible.io/js/script.js"
112
+ ></Script>
113
+ <body
114
+ className={`${inter.variable} ${ptSans.variable} antialiased bg-black dark h-[100dvh] overflow-hidden`}
115
+ >
116
+ <IframeDetector />
117
+ <Toaster richColors position="bottom-center" />
118
+ <TanstackContext>
119
+ <AppContext me={data}>
120
+ <LoginProvider>
121
+ <ProProvider>{children}</ProProvider>
122
+ </LoginProvider>
123
+ </AppContext>
124
+ </TanstackContext>
 
 
 
125
  </body>
126
  </html>
127
  );
app/new/page.tsx CHANGED
@@ -1,18 +1,14 @@
1
  import { AppEditor } from "@/components/editor";
2
- import { auth } from "@/lib/auth";
3
- import { redirect } from "next/navigation";
4
 
5
- export default async function NewProjectPage({
6
- searchParams,
7
- }: {
8
- searchParams: Promise<{ prompt: string }>;
9
- }) {
10
- const session = await auth();
11
 
12
- if (!session) {
13
- redirect("/api/auth/signin?callbackUrl=/new");
14
- }
15
-
16
- const { prompt } = await searchParams;
17
- return <AppEditor isNew={true} initialPrompt={prompt} />;
18
  }
 
1
  import { AppEditor } from "@/components/editor";
2
+ import { Metadata } from "next";
3
+ import { generateSEO } from "@/lib/seo";
4
 
5
+ export const metadata: Metadata = generateSEO({
6
+ title: "Create New Project - DeepSite",
7
+ description:
8
+ "Start building your next website with AI. Create a new project on DeepSite and experience the power of AI-driven web development.",
9
+ path: "/new",
10
+ });
11
 
12
+ export default function NewProjectPage() {
13
+ return <AppEditor isNew />;
 
 
 
 
14
  }
app/not-found.tsx DELETED
@@ -1,17 +0,0 @@
1
- import { NotFoundButtons } from "@/components/not-found/buttons";
2
- import { Navigation } from "@/components/public/navigation";
3
-
4
- export default function NotFound() {
5
- return (
6
- <div className="min-h-screen font-sans">
7
- <Navigation />
8
- <div className="px-6 py-16 max-w-5xl mx-auto text-center">
9
- <h1 className="text-5xl font-bold mb-5">Oh no! Page not found.</h1>
10
- <p className="text-lg text-muted-foreground mb-8">
11
- The page you are looking for does not exist.
12
- </p>
13
- <NotFoundButtons />
14
- </div>
15
- </div>
16
- );
17
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/sitemap.ts ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { MetadataRoute } from 'next';
2
+
3
+ export default function sitemap(): MetadataRoute.Sitemap {
4
+ const baseUrl = 'https://deepsite.hf.co';
5
+
6
+ return [
7
+ {
8
+ url: baseUrl,
9
+ lastModified: new Date(),
10
+ changeFrequency: 'daily',
11
+ priority: 1,
12
+ },
13
+ {
14
+ url: `${baseUrl}/new`,
15
+ lastModified: new Date(),
16
+ changeFrequency: 'weekly',
17
+ priority: 0.8,
18
+ },
19
+ {
20
+ url: `${baseUrl}/auth`,
21
+ lastModified: new Date(),
22
+ changeFrequency: 'monthly',
23
+ priority: 0.5,
24
+ },
25
+ // Note: Dynamic project routes will be handled by Next.js automatically
26
+ // but you can add specific high-priority project pages here if needed
27
+ ];
28
+ }
{app → assets}/globals.css RENAMED
@@ -6,8 +6,8 @@
6
  @theme inline {
7
  --color-background: var(--background);
8
  --color-foreground: var(--foreground);
9
- --font-sans: var(--font-geist-sans);
10
- --font-mono: var(--font-geist-mono);
11
  --color-sidebar-ring: var(--sidebar-ring);
12
  --color-sidebar-border: var(--sidebar-border);
13
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
@@ -44,7 +44,7 @@
44
  }
45
 
46
  :root {
47
- --radius: 0.65rem;
48
  --background: oklch(1 0 0);
49
  --foreground: oklch(0.145 0 0);
50
  --card: oklch(1 0 0);
@@ -68,7 +68,6 @@
68
  --chart-3: oklch(0.398 0.07 227.392);
69
  --chart-4: oklch(0.828 0.189 84.429);
70
  --chart-5: oklch(0.769 0.188 70.08);
71
- --radius: 0.625rem;
72
  --sidebar: oklch(0.985 0 0);
73
  --sidebar-foreground: oklch(0.145 0 0);
74
  --sidebar-primary: oklch(0.205 0 0);
@@ -113,6 +112,10 @@
113
  --sidebar-ring: oklch(0.556 0 0);
114
  }
115
 
 
 
 
 
116
  @layer base {
117
  * {
118
  @apply border-border outline-ring/50;
@@ -120,49 +123,249 @@
120
  body {
121
  @apply bg-background text-foreground;
122
  }
 
 
 
 
 
 
 
 
 
 
123
  }
124
 
125
  .monaco-editor .margin {
126
- @apply bg-background!;
127
  }
128
  .monaco-editor .monaco-editor-background {
129
- @apply bg-background!;
130
  }
131
- .monaco-editor .decorationsOverviewRuler {
132
- @apply opacity-0!;
133
  }
134
- .monaco-editor .view-line {
135
- /* @apply bg-primary/50!; */
 
136
  }
137
- .monaco-editor .scroll-decoration {
138
- @apply opacity-0!;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  }
140
- .monaco-editor .cursors-layer .cursor {
141
- @apply bg-primary!;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  }
143
 
144
- .content-placeholder::before {
145
- content: attr(data-placeholder);
146
- position: absolute;
147
- pointer-events: none;
148
- opacity: 0.5;
149
- @apply top-5 left-6;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  }
151
 
152
- .sp-layout
153
- .sp-file-explorer
154
- .sp-file-explorer-list
155
- .sp-explorer[data-active="true"] {
156
- @apply text-indigo-500!;
 
 
 
157
  }
158
 
159
- .sp-layout
160
- .sp-stack
161
- .sp-tabs
162
- .sp-tab-container[aria-selected="true"]
163
- .sp-tab-button {
164
- @apply text-indigo-500!;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  }
166
- .sp-layout .sp-stack .sp-tabs .sp-tab-container:has(button:focus) {
167
- @apply outline-none! border-none!;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  }
 
6
  @theme inline {
7
  --color-background: var(--background);
8
  --color-foreground: var(--foreground);
9
+ --font-sans: var(--font-inter-sans);
10
+ --font-mono: var(--font-ptSans-mono);
11
  --color-sidebar-ring: var(--sidebar-ring);
12
  --color-sidebar-border: var(--sidebar-border);
13
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
 
44
  }
45
 
46
  :root {
47
+ --radius: 0.625rem;
48
  --background: oklch(1 0 0);
49
  --foreground: oklch(0.145 0 0);
50
  --card: oklch(1 0 0);
 
68
  --chart-3: oklch(0.398 0.07 227.392);
69
  --chart-4: oklch(0.828 0.189 84.429);
70
  --chart-5: oklch(0.769 0.188 70.08);
 
71
  --sidebar: oklch(0.985 0 0);
72
  --sidebar-foreground: oklch(0.145 0 0);
73
  --sidebar-primary: oklch(0.205 0 0);
 
112
  --sidebar-ring: oklch(0.556 0 0);
113
  }
114
 
115
+ body {
116
+ @apply scroll-smooth
117
+ }
118
+
119
  @layer base {
120
  * {
121
  @apply border-border outline-ring/50;
 
123
  body {
124
  @apply bg-background text-foreground;
125
  }
126
+ html {
127
+ @apply scroll-smooth;
128
+ }
129
+ }
130
+
131
+ .background__noisy {
132
+ @apply bg-blend-normal pointer-events-none opacity-90;
133
+ background-size: 25ww auto;
134
+ background-image: url("/background_noisy.webp");
135
+ @apply fixed w-screen h-screen -z-1 top-0 left-0;
136
  }
137
 
138
  .monaco-editor .margin {
139
+ @apply !bg-neutral-900;
140
  }
141
  .monaco-editor .monaco-editor-background {
142
+ @apply !bg-neutral-900;
143
  }
144
+ .monaco-editor .line-numbers {
145
+ @apply !text-neutral-500;
146
  }
147
+
148
+ .matched-line {
149
+ @apply bg-sky-500/30;
150
  }
151
+
152
+ /* Fast liquid deformation animations */
153
+ @keyframes liquidBlob1 {
154
+ 0%, 100% {
155
+ border-radius: 40% 60% 50% 50%;
156
+ transform: scaleX(1) scaleY(1) rotate(0deg);
157
+ }
158
+ 12.5% {
159
+ border-radius: 20% 80% 70% 30%;
160
+ transform: scaleX(1.6) scaleY(0.4) rotate(25deg);
161
+ }
162
+ 25% {
163
+ border-radius: 80% 20% 30% 70%;
164
+ transform: scaleX(0.5) scaleY(2.1) rotate(-15deg);
165
+ }
166
+ 37.5% {
167
+ border-radius: 30% 70% 80% 20%;
168
+ transform: scaleX(1.8) scaleY(0.6) rotate(40deg);
169
+ }
170
+ 50% {
171
+ border-radius: 70% 30% 20% 80%;
172
+ transform: scaleX(0.4) scaleY(1.9) rotate(-30deg);
173
+ }
174
+ 62.5% {
175
+ border-radius: 25% 75% 60% 40%;
176
+ transform: scaleX(1.5) scaleY(0.7) rotate(55deg);
177
+ }
178
+ 75% {
179
+ border-radius: 75% 25% 40% 60%;
180
+ transform: scaleX(0.6) scaleY(1.7) rotate(-10deg);
181
+ }
182
+ 87.5% {
183
+ border-radius: 50% 50% 75% 25%;
184
+ transform: scaleX(1.3) scaleY(0.8) rotate(35deg);
185
+ }
186
  }
187
+
188
+ @keyframes liquidBlob2 {
189
+ 0%, 100% {
190
+ border-radius: 60% 40% 50% 50%;
191
+ transform: scaleX(1) scaleY(1) rotate(12deg);
192
+ }
193
+ 16% {
194
+ border-radius: 15% 85% 60% 40%;
195
+ transform: scaleX(0.3) scaleY(2.3) rotate(50deg);
196
+ }
197
+ 32% {
198
+ border-radius: 85% 15% 25% 75%;
199
+ transform: scaleX(2.0) scaleY(0.5) rotate(-20deg);
200
+ }
201
+ 48% {
202
+ border-radius: 30% 70% 85% 15%;
203
+ transform: scaleX(0.4) scaleY(1.8) rotate(70deg);
204
+ }
205
+ 64% {
206
+ border-radius: 70% 30% 15% 85%;
207
+ transform: scaleX(1.9) scaleY(0.6) rotate(-35deg);
208
+ }
209
+ 80% {
210
+ border-radius: 40% 60% 70% 30%;
211
+ transform: scaleX(0.7) scaleY(1.6) rotate(45deg);
212
+ }
213
  }
214
 
215
+ @keyframes liquidBlob3 {
216
+ 0%, 100% {
217
+ border-radius: 50% 50% 40% 60%;
218
+ transform: scaleX(1) scaleY(1) rotate(0deg);
219
+ }
220
+ 20% {
221
+ border-radius: 10% 90% 75% 25%;
222
+ transform: scaleX(2.2) scaleY(0.3) rotate(-45deg);
223
+ }
224
+ 40% {
225
+ border-radius: 90% 10% 20% 80%;
226
+ transform: scaleX(0.4) scaleY(2.5) rotate(60deg);
227
+ }
228
+ 60% {
229
+ border-radius: 25% 75% 90% 10%;
230
+ transform: scaleX(1.7) scaleY(0.5) rotate(-25deg);
231
+ }
232
+ 80% {
233
+ border-radius: 75% 25% 10% 90%;
234
+ transform: scaleX(0.6) scaleY(2.0) rotate(80deg);
235
+ }
236
+ }
237
+
238
+ @keyframes liquidBlob4 {
239
+ 0%, 100% {
240
+ border-radius: 45% 55% 50% 50%;
241
+ transform: scaleX(1) scaleY(1) rotate(-15deg);
242
+ }
243
+ 14% {
244
+ border-radius: 90% 10% 65% 35%;
245
+ transform: scaleX(0.2) scaleY(2.8) rotate(35deg);
246
+ }
247
+ 28% {
248
+ border-radius: 10% 90% 20% 80%;
249
+ transform: scaleX(2.4) scaleY(0.4) rotate(-50deg);
250
+ }
251
+ 42% {
252
+ border-radius: 35% 65% 90% 10%;
253
+ transform: scaleX(0.3) scaleY(2.1) rotate(70deg);
254
+ }
255
+ 56% {
256
+ border-radius: 80% 20% 10% 90%;
257
+ transform: scaleX(2.0) scaleY(0.5) rotate(-40deg);
258
+ }
259
+ 70% {
260
+ border-radius: 20% 80% 55% 45%;
261
+ transform: scaleX(0.5) scaleY(1.9) rotate(55deg);
262
+ }
263
+ 84% {
264
+ border-radius: 65% 35% 80% 20%;
265
+ transform: scaleX(1.6) scaleY(0.6) rotate(-25deg);
266
+ }
267
+ }
268
+
269
+ /* Fast flowing movement animations */
270
+ @keyframes liquidFlow1 {
271
+ 0%, 100% { transform: translate(0, 0); }
272
+ 16% { transform: translate(60px, -40px); }
273
+ 32% { transform: translate(-45px, -70px); }
274
+ 48% { transform: translate(80px, 25px); }
275
+ 64% { transform: translate(-30px, 60px); }
276
+ 80% { transform: translate(50px, -20px); }
277
+ }
278
+
279
+ @keyframes liquidFlow2 {
280
+ 0%, 100% { transform: translate(0, 0); }
281
+ 20% { transform: translate(-70px, 50px); }
282
+ 40% { transform: translate(90px, -30px); }
283
+ 60% { transform: translate(-40px, -55px); }
284
+ 80% { transform: translate(65px, 35px); }
285
+ }
286
+
287
+ @keyframes liquidFlow3 {
288
+ 0%, 100% { transform: translate(0, 0); }
289
+ 12% { transform: translate(-50px, -60px); }
290
+ 24% { transform: translate(40px, -20px); }
291
+ 36% { transform: translate(-30px, 70px); }
292
+ 48% { transform: translate(70px, 20px); }
293
+ 60% { transform: translate(-60px, -35px); }
294
+ 72% { transform: translate(35px, 55px); }
295
+ 84% { transform: translate(-25px, -45px); }
296
  }
297
 
298
+ @keyframes liquidFlow4 {
299
+ 0%, 100% { transform: translate(0, 0); }
300
+ 14% { transform: translate(50px, 60px); }
301
+ 28% { transform: translate(-80px, -40px); }
302
+ 42% { transform: translate(30px, -90px); }
303
+ 56% { transform: translate(-55px, 45px); }
304
+ 70% { transform: translate(75px, -25px); }
305
+ 84% { transform: translate(-35px, 65px); }
306
  }
307
 
308
+ /* Light sweep animation for buttons */
309
+ @keyframes lightSweep {
310
+ 0% {
311
+ transform: translateX(-150%);
312
+ opacity: 0;
313
+ }
314
+ 8% {
315
+ opacity: 0.3;
316
+ }
317
+ 25% {
318
+ opacity: 0.8;
319
+ }
320
+ 42% {
321
+ opacity: 0.3;
322
+ }
323
+ 50% {
324
+ transform: translateX(150%);
325
+ opacity: 0;
326
+ }
327
+ 58% {
328
+ opacity: 0.3;
329
+ }
330
+ 75% {
331
+ opacity: 0.8;
332
+ }
333
+ 92% {
334
+ opacity: 0.3;
335
+ }
336
+ 100% {
337
+ transform: translateX(-150%);
338
+ opacity: 0;
339
+ }
340
+ }
341
+
342
+ .light-sweep {
343
+ position: relative;
344
+ overflow: hidden;
345
  }
346
+
347
+ .light-sweep::before {
348
+ content: '';
349
+ position: absolute;
350
+ top: 0;
351
+ left: 0;
352
+ right: 0;
353
+ bottom: 0;
354
+ width: 300%;
355
+ background: linear-gradient(
356
+ 90deg,
357
+ transparent 0%,
358
+ transparent 20%,
359
+ rgba(56, 189, 248, 0.1) 35%,
360
+ rgba(56, 189, 248, 0.2) 45%,
361
+ rgba(255, 255, 255, 0.2) 50%,
362
+ rgba(168, 85, 247, 0.2) 55%,
363
+ rgba(168, 85, 247, 0.1) 65%,
364
+ transparent 80%,
365
+ transparent 100%
366
+ );
367
+ animation: lightSweep 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
368
+ pointer-events: none;
369
+ z-index: 1;
370
+ filter: blur(1px);
371
  }
assets/hf-logo.svg DELETED
assets/logo.svg ADDED
assets/minimax.svg DELETED
assets/pro.svg DELETED
chart/Chart.yaml DELETED
@@ -1,5 +0,0 @@
1
- apiVersion: v2
2
- name: deepsite
3
- version: 0.0.0-latest
4
- type: application
5
- icon: https://huggingface.co/front/assets/huggingface_logo-noborder.svg
 
 
 
 
 
 
chart/env/prod.yaml DELETED
@@ -1,59 +0,0 @@
1
- nodeSelector:
2
- role-deepsite: "true"
3
-
4
- tolerations:
5
- - key: "huggingface.co/deepsite"
6
- operator: "Equal"
7
- value: "true"
8
- effect: "NoSchedule"
9
-
10
- serviceAccount:
11
- enabled: true
12
- create: true
13
- name: deepsite-prod
14
-
15
- ingress:
16
- path: "/"
17
- annotations:
18
- alb.ingress.kubernetes.io/healthcheck-path: "/api/healthcheck"
19
- alb.ingress.kubernetes.io/listen-ports: "[{\"HTTP\": 80}, {\"HTTPS\": 443}]"
20
- alb.ingress.kubernetes.io/load-balancer-name: "hub-utils-prod-cloudfront"
21
- alb.ingress.kubernetes.io/group.name: "hub-utils-prod-cloudfront"
22
- alb.ingress.kubernetes.io/scheme: "internal"
23
- alb.ingress.kubernetes.io/ssl-redirect: "443"
24
- alb.ingress.kubernetes.io/tags: "Env=prod,Project=hub,Terraform=true"
25
- alb.ingress.kubernetes.io/target-group-attributes: deregistration_delay.timeout_seconds=30
26
- alb.ingress.kubernetes.io/target-type: "ip"
27
- alb.ingress.kubernetes.io/certificate-arn: "arn:aws:acm:us-east-1:707930574880:certificate/5b25b145-75db-4837-b9f3-7f238ba8a9c7,arn:aws:acm:us-east-1:707930574880:certificate/bfdf509c-f44b-400f-b9e1-6f7a861abe91"
28
- kubernetes.io/ingress.class: "alb"
29
-
30
- networkPolicy:
31
- enabled: true
32
- allowedBlocks:
33
- - 10.0.0.0/16
34
-
35
-
36
- ingressInternal:
37
- enabled: false
38
-
39
- envVars:
40
- NEXTAUTH_URL: https://deepsite.hf.co/api/auth
41
-
42
- infisical:
43
- enabled: true
44
- env: "prod-us-east-1"
45
-
46
- autoscaling:
47
- enabled: true
48
- minReplicas: 1
49
- maxReplicas: 10
50
- targetMemoryUtilizationPercentage: "50"
51
- targetCPUUtilizationPercentage: "50"
52
-
53
- resources:
54
- requests:
55
- cpu: 2
56
- memory: 4Gi
57
- limits:
58
- cpu: 4
59
- memory: 8Gi
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
chart/templates/_helpers.tpl DELETED
@@ -1,22 +0,0 @@
1
- {{- define "name" -}}
2
- {{- default $.Release.Name | trunc 63 | trimSuffix "-" -}}
3
- {{- end -}}
4
-
5
- {{- define "app.name" -}}
6
- chat-ui
7
- {{- end -}}
8
-
9
- {{- define "labels.standard" -}}
10
- release: {{ $.Release.Name | quote }}
11
- heritage: {{ $.Release.Service | quote }}
12
- chart: "{{ include "name" . }}"
13
- app: "{{ include "app.name" . }}"
14
- {{- end -}}
15
-
16
- {{- define "labels.resolver" -}}
17
- release: {{ $.Release.Name | quote }}
18
- heritage: {{ $.Release.Service | quote }}
19
- chart: "{{ include "name" . }}"
20
- app: "{{ include "app.name" . }}-resolver"
21
- {{- end -}}
22
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
chart/templates/config.yaml DELETED
@@ -1,10 +0,0 @@
1
- apiVersion: v1
2
- kind: ConfigMap
3
- metadata:
4
- labels: {{ include "labels.standard" . | nindent 4 }}
5
- name: {{ include "name" . }}
6
- namespace: {{ .Release.Namespace }}
7
- data:
8
- {{- range $key, $value := $.Values.envVars }}
9
- {{ $key }}: {{ $value | quote }}
10
- {{- end }}
 
 
 
 
 
 
 
 
 
 
 
chart/templates/deployment.yaml DELETED
@@ -1,81 +0,0 @@
1
- apiVersion: apps/v1
2
- kind: Deployment
3
- metadata:
4
- labels: {{ include "labels.standard" . | nindent 4 }}
5
- name: {{ include "name" . }}
6
- namespace: {{ .Release.Namespace }}
7
- {{- if .Values.infisical.enabled }}
8
- annotations:
9
- secrets.infisical.com/auto-reload: "true"
10
- {{- end }}
11
- spec:
12
- progressDeadlineSeconds: 600
13
- {{- if not $.Values.autoscaling.enabled }}
14
- replicas: {{ .Values.replicas }}
15
- {{- end }}
16
- revisionHistoryLimit: 10
17
- selector:
18
- matchLabels: {{ include "labels.standard" . | nindent 6 }}
19
- strategy:
20
- rollingUpdate:
21
- maxSurge: 25%
22
- maxUnavailable: 25%
23
- type: RollingUpdate
24
- template:
25
- metadata:
26
- labels: {{ include "labels.standard" . | nindent 8 }}
27
- annotations:
28
- checksum/config: {{ include (print $.Template.BasePath "/config.yaml") . | sha256sum }}
29
- {{- if $.Values.envVars.NODE_LOG_STRUCTURED_DATA }}
30
- co.elastic.logs/json.expand_keys: "true"
31
- {{- end }}
32
- spec:
33
- {{- if .Values.serviceAccount.enabled }}
34
- serviceAccountName: "{{ .Values.serviceAccount.name | default (include "name" .) }}"
35
- {{- end }}
36
- containers:
37
- - name: chat-ui
38
- image: "{{ .Values.image.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}"
39
- imagePullPolicy: {{ .Values.image.pullPolicy }}
40
- readinessProbe:
41
- failureThreshold: 30
42
- periodSeconds: 10
43
- httpGet:
44
- path: {{ $.Values.envVars.APP_BASE | default "" }}/api/healthcheck
45
- port: {{ $.Values.envVars.APP_PORT | default 3001 | int }}
46
- livenessProbe:
47
- failureThreshold: 30
48
- periodSeconds: 10
49
- httpGet:
50
- path: {{ $.Values.envVars.APP_BASE | default "" }}/api/healthcheck
51
- port: {{ $.Values.envVars.APP_PORT | default 3001 | int }}
52
- ports:
53
- - containerPort: {{ $.Values.envVars.APP_PORT | default 3001 | int }}
54
- name: http
55
- protocol: TCP
56
- {{- if eq "true" $.Values.envVars.METRICS_ENABLED }}
57
- - containerPort: {{ $.Values.envVars.METRICS_PORT | default 5565 | int }}
58
- name: metrics
59
- protocol: TCP
60
- {{- end }}
61
- resources: {{ toYaml .Values.resources | nindent 12 }}
62
- {{- with $.Values.extraEnv }}
63
- env:
64
- {{- toYaml . | nindent 14 }}
65
- {{- end }}
66
- envFrom:
67
- - configMapRef:
68
- name: {{ include "name" . }}
69
- {{- if $.Values.infisical.enabled }}
70
- - secretRef:
71
- name: {{ include "name" $ }}-secs
72
- {{- end }}
73
- {{- with $.Values.extraEnvFrom }}
74
- {{- toYaml . | nindent 14 }}
75
- {{- end }}
76
- nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
77
- tolerations: {{ toYaml .Values.tolerations | nindent 8 }}
78
- volumes:
79
- - name: config
80
- configMap:
81
- name: {{ include "name" . }}