This commit is contained in:
ackimixs
2024-04-11 22:51:06 +02:00
parent 69e7a453e6
commit 97ce6575fc
2 changed files with 94 additions and 28 deletions

View File

@@ -5,7 +5,8 @@ Bun.serve({
port: Bun.env.PORT || 8080,
async fetch(req) {
const url = new URL(req.url);
if (req.method === "POST" && url.pathname === "/admin") {
if (req.method === "POST") {
if (url.pathname === "/admin") {
if (req.body) {
const { urlData, password } = await req.json() as { urlData: string, password: string };
if (urlData && password === Bun.env.ADMIN_PASSWORD) {
@@ -20,13 +21,47 @@ Bun.serve({
})
}
}
} else if (url.pathname == "/admin/clear") {
if (req.body) {
const { password } = await req.json() as { password: string };
if (password === Bun.env.ADMIN_PASSWORD) {
await prisma.url.deleteMany();
return new Response(JSON.stringify({body: "ok"}), {
status: 200
})
}
}
} else if (url.pathname == "/admin/list") {
if (req.body) {
const {password} = await req.json() as { password: string };
if (password === Bun.env.ADMIN_PASSWORD) {
const urls = await prisma.url.findMany();
return new Response(JSON.stringify({body: urls}), {
status: 200
})
}
}
} else if (url.pathname == "/admin/remove") {
if (req.body) {
const { u, password } = await req.json() as { u: string, password: string };
if (u && password === Bun.env.ADMIN_PASSWORD) {
await prisma.url.deleteMany({
where: {
url: u
}
})
return new Response(JSON.stringify({body: u}), {
status: 200
})
}
}
}
}
else if (req.method === "GET") {
const urlRes = await prisma.url.findFirst({
orderBy: {
updatedAt: "desc"
}
});
// random
const urls = await prisma.url.findMany();
const urlRes = urls[Math.floor(Math.random() * urls.length)];
if (urlRes) {
return new Response(null, {

39
noDb.ts
View File

@@ -1,26 +1,57 @@
let urlToRedirect = "https://instagram.com/modelec_isen";
let listOfUrl = ["https://instagram.com/modelec_isen"];
Bun.serve({
port: Bun.env.PORT || 8080,
async fetch(req) {
const url = new URL(req.url);
if (req.method === "POST" && url.pathname === "/admin") {
if (req.method === "POST") {
if (url.pathname === "/admin/add") {
if (req.body) {
const { u, password } = await req.json() as { u: string, password: string };
if (u && password === Bun.env.ADMIN_PASSWORD) {
urlToRedirect = u;
listOfUrl.push(u);
return new Response(JSON.stringify({body: u}), {
status: 200
})
}
}
} else if (url.pathname == "/admin/clear") {
if (req.body) {
const { password } = await req.json() as { password: string };
if (password === Bun.env.ADMIN_PASSWORD) {
listOfUrl = [];
return new Response(JSON.stringify({body: "ok"}), {
status: 200
})
}
}
} else if (url.pathname == "/admin/list") {
if (req.body) {
const {password} = await req.json() as { password: string };
if (password === Bun.env.ADMIN_PASSWORD) {
return new Response(JSON.stringify({body: listOfUrl}), {
status: 200
})
}
}
} else if (url.pathname == "/admin/remove") {
if (req.body) {
const { u, password } = await req.json() as { u: string, password: string };
if (u && password === Bun.env.ADMIN_PASSWORD) {
listOfUrl = listOfUrl.filter((url) => url !== u);
return new Response(JSON.stringify({body: u}), {
status: 200
})
}
}
}
}
else if (req.method === "GET") {
return new Response(null, {
status: 302,
headers: {
Location: urlToRedirect
Location: listOfUrl[Math.floor(Math.random() * listOfUrl.length)]
}
})
}