Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 36 additions & 56 deletions app.js
Original file line number Diff line number Diff line change
@@ -1,61 +1,41 @@
const express = require("express");
const express = require('express');
const app = express();
const port = process.env.PORT || 3001;

app.get("/", (req, res) => res.type('html').send(html));
const port = process.env.PORT || 10000;
app.use(express.json());

const server = app.listen(port, () => console.log(`Example app listening on port ${port}!`));
// Root ping – që të mos shfaqet “Hello from Render!”
app.get('/', (req, res) => {
res.type('text').send('Delete Account API është gati ✅');
});

server.keepAliveTimeout = 120 * 1000;
server.headersTimeout = 120 * 1000;
// *** Shembull funksioni – ti e ke të plotë te varianti yt ***
async function deleteOrAnonymize(customerId) {
// TODO: logjika jote ekzistuese (b2b fetch, PATCH/PUT, etj.)
return { action: 'anonymized', customerId };
}

const html = `
<!DOCTYPE html>
<html>
<head>
<title>Hello from Render!</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script>
<script>
setTimeout(() => {
confetti({
particleCount: 100,
spread: 70,
origin: { y: 0.6 },
disableForReducedMotion: true
});
}, 500);
</script>
<style>
@import url("https://p.typekit.net/p.css?s=1&k=vnd5zic&ht=tk&f=39475.39476.39477.39478.39479.39480.39481.39482&a=18673890&app=typekit&e=css");
@font-face {
font-family: "neo-sans";
src: url("https://use.typekit.net/af/00ac0a/00000000000000003b9b2033/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/00ac0a/00000000000000003b9b2033/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/00ac0a/00000000000000003b9b2033/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
font-style: normal;
font-weight: 700;
}
html {
font-family: neo-sans;
font-weight: 700;
font-size: calc(62rem / 16);
}
body {
background: white;
}
section {
border-radius: 1em;
padding: 1em;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<section>
Hello from Render!
</section>
</body>
</html>
`
// DELETE /delete-account/:customerId
app.delete('/delete-account/:customerId', async (req, res) => {
try {
const customerId = req.params.customerId;
const result = await deleteOrAnonymize(customerId);
res.json({ success: true, ...result });
} catch (e) {
res.status(500).json({ success: false, error: e.message });
}
});

// POST /delete-account { "customerId": 289 }
app.post('/delete-account', async (req, res) => {
try {
const { customerId } = req.body || {};
if (!customerId) return res.status(400).json({ error: 'customerId mungon' });
const result = await deleteOrAnonymize(customerId);
res.json({ success: true, ...result });
} catch (e) {
res.status(500).json({ success: false, error: e.message });
}
});

app.listen(port, () => console.log(`Server running on ${port}`));