|
import express from "express"; |
|
import path from "path"; |
|
import { fileURLToPath } from "url"; |
|
import dotenv from "dotenv"; |
|
import cookieParser from "cookie-parser"; |
|
import { createRepo, uploadFile, whoAmI } from "@huggingface/hub"; |
|
import { InferenceClient } from "@huggingface/inference"; |
|
import bodyParser from "body-parser"; |
|
|
|
import checkUser from "./middlewares/checkUser.js"; |
|
|
|
|
|
dotenv.config(); |
|
|
|
const app = express(); |
|
|
|
const ipAddresses = new Map(); |
|
|
|
const __filename = fileURLToPath(import.meta.url); |
|
const __dirname = path.dirname(__filename); |
|
|
|
const PORT = process.env.APP_PORT || 3000; |
|
const REDIRECT_URI = |
|
process.env.REDIRECT_URI || `http://localhost:${PORT}/auth/login`; |
|
const MODEL_ID = "deepseek-ai/DeepSeek-V3-0324"; |
|
|
|
app.use(cookieParser()); |
|
app.use(bodyParser.json()); |
|
app.use(express.static(path.join(__dirname, "dist"))); |
|
|
|
app.get("/api/login", (_req, res) => { |
|
res.redirect( |
|
302, |
|
`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` |
|
); |
|
}); |
|
app.get("/auth/login", async (req, res) => { |
|
const { code } = req.query; |
|
|
|
if (!code) { |
|
return res.redirect(302, "/"); |
|
} |
|
const Authorization = `Basic ${Buffer.from( |
|
`${process.env.OAUTH_CLIENT_ID}:${process.env.OAUTH_CLIENT_SECRET}` |
|
).toString("base64")}`; |
|
|
|
const request_auth = await fetch("https://huggingface.co/oauth/token", { |
|
method: "POST", |
|
headers: { |
|
"Content-Type": "application/x-www-form-urlencoded", |
|
Authorization, |
|
}, |
|
body: new URLSearchParams({ |
|
grant_type: "authorization_code", |
|
code: code, |
|
redirect_uri: REDIRECT_URI, |
|
}), |
|
}); |
|
|
|
const response = await request_auth.json(); |
|
|
|
if (!response.access_token) { |
|
return res.redirect(302, "/"); |
|
} |
|
|
|
res.cookie("hf_token", response.access_token, { |
|
httpOnly: false, |
|
secure: true, |
|
sameSite: "none", |
|
maxAge: 30 * 24 * 60 * 60 * 1000, |
|
}); |
|
|
|
return res.redirect(302, "/"); |
|
}); |
|
app.get("/api/@me", checkUser, async (req, res) => { |
|
const { hf_token } = req.cookies; |
|
try { |
|
const request_user = await fetch("https://huggingface.co/oauth/userinfo", { |
|
headers: { |
|
Authorization: `Bearer ${hf_token}`, |
|
}, |
|
}); |
|
|
|
const user = await request_user.json(); |
|
res.send(user); |
|
} catch (err) { |
|
res.clearCookie("hf_token"); |
|
res.status(401).send({ |
|
ok: false, |
|
message: err.message, |
|
}); |
|
} |
|
}); |
|
|
|
app.post("/api/deploy", checkUser, async (req, res) => { |
|
const { html, title, path } = req.body; |
|
if (!html || !title) { |
|
return res.status(400).send({ |
|
ok: false, |
|
message: "Missing required fields", |
|
}); |
|
} |
|
|
|
const file = new Blob([html], { type: "text/html" }); |
|
file.name = "index.html"; |
|
|
|
const { hf_token } = req.cookies; |
|
try { |
|
const repo = { |
|
type: "space", |
|
name: path ?? "", |
|
}; |
|
if (!path || path === "") { |
|
const { name: username } = await whoAmI({ accessToken: hf_token }); |
|
const newTitle = title |
|
.toLowerCase() |
|
.replace(/[^a-z0-9]+/g, "-") |
|
.split("-") |
|
.filter(Boolean) |
|
.join("-") |
|
.slice(0, 96); |
|
|
|
const repoId = `${username}/${newTitle}`; |
|
repo.name = repoId; |
|
await createRepo({ |
|
repo, |
|
accessToken: hf_token, |
|
}); |
|
} |
|
await uploadFile({ |
|
repo, |
|
file, |
|
accessToken: hf_token, |
|
}); |
|
return res.status(200).send({ ok: true, path: repo.name }); |
|
} catch (err) { |
|
return res.status(500).send({ |
|
ok: false, |
|
message: err.message, |
|
}); |
|
} |
|
}); |
|
|
|
app.post("/api/ask-ai", async (req, res) => { |
|
const { prompt, html } = req.body; |
|
if (!prompt) { |
|
return res.status(400).send({ |
|
ok: false, |
|
message: "Missing required fields", |
|
}); |
|
} |
|
|
|
const { hf_token } = req.cookies; |
|
let token = hf_token; |
|
const ip = |
|
req.headers["x-forwarded-for"]?.split(",")[0].trim() || |
|
req.headers["x-real-ip"] || |
|
req.socket.remoteAddress || |
|
req.ip || |
|
"0.0.0.0"; |
|
|
|
if (!hf_token) { |
|
|
|
ipAddresses.set(ip, (ipAddresses.get(ip) || 0) + 1); |
|
if (ipAddresses.get(ip) > 2) { |
|
return res.status(429).send({ |
|
ok: false, |
|
openLogin: true, |
|
message: "Log In to continue using the service", |
|
}); |
|
} |
|
|
|
token = process.env.DEFAULT_HF_TOKEN; |
|
} |
|
|
|
|
|
res.setHeader("Content-Type", "text/plain"); |
|
res.setHeader("Cache-Control", "no-cache"); |
|
res.setHeader("Connection", "keep-alive"); |
|
|
|
const client = new InferenceClient(token); |
|
let completeResponse = ""; |
|
|
|
try { |
|
const chatCompletion = client.chatCompletionStream({ |
|
model: MODEL_ID, |
|
provider: "fireworks-ai", |
|
messages: [ |
|
{ |
|
role: "system", |
|
content: |
|
"ONLY USE HTML, CSS AND JAVASCRIPT. If you want to use ICON make sure to import the library first. Try to create the best UI possible by using only HTML, CSS and JAVASCRIPT. Also, try to ellaborate as much as you can, to create something unique. ALWAYS GIVE THE RESPONSE INTO A SINGLE HTML FILE", |
|
}, |
|
...(html |
|
? [ |
|
{ |
|
role: "user", |
|
content: `My current code is: ${html}.`, |
|
}, |
|
] |
|
: []), |
|
{ |
|
role: "user", |
|
content: prompt, |
|
}, |
|
], |
|
max_tokens: 12_000, |
|
}); |
|
|
|
while (true) { |
|
const { done, value } = await chatCompletion.next(); |
|
if (done) { |
|
break; |
|
} |
|
const chunk = value.choices[0]?.delta?.content; |
|
if (chunk) { |
|
|
|
res.write(chunk); |
|
completeResponse += chunk; |
|
|
|
|
|
if (completeResponse.includes("</html>")) { |
|
break; |
|
} |
|
} |
|
} |
|
|
|
|
|
res.end(); |
|
} catch (error) { |
|
console.error("Error:", error); |
|
|
|
if (!res.headersSent) { |
|
res.status(500).send({ |
|
ok: false, |
|
message: "Error generating response", |
|
}); |
|
} else { |
|
|
|
res.end(); |
|
} |
|
} |
|
}); |
|
|
|
app.get("*", (_req, res) => { |
|
res.sendFile(path.join(__dirname, "dist", "index.html")); |
|
}); |
|
|
|
app.listen(PORT, () => { |
|
console.log(`Server is running on port ${PORT}`); |
|
}); |
|
|