astro/examples/ssr/server/api.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

101 lines
2.4 KiB
JavaScript
Raw Normal View History

import fs from 'fs';
import lightcookie from 'lightcookie';
const dbJSON = fs.readFileSync(new URL('./db.json', import.meta.url));
const db = JSON.parse(dbJSON);
const products = db.products;
2022-02-14 17:50:16 +00:00
const productMap = new Map(products.map((product) => [product.id, product]));
// Normally this would be in a database.
const userCartItems = new Map();
const routes = [
{
match: /\/api\/products\/([0-9])+/,
2022-02-14 17:50:16 +00:00
async handle(_req, res, [, idStr]) {
const id = Number(idStr);
2022-02-14 17:50:16 +00:00
if (productMap.has(id)) {
const product = productMap.get(id);
res.writeHead(200, {
2022-02-14 17:50:16 +00:00
'Content-Type': 'application/json',
});
res.end(JSON.stringify(product));
} else {
res.writeHead(404, {
2022-02-14 17:50:16 +00:00
'Content-Type': 'text/plain',
});
res.end('Not found');
}
2022-02-14 17:50:16 +00:00
},
},
{
match: /\/api\/products/,
async handle(_req, res) {
res.writeHead(200, {
'Content-Type': 'application/json',
});
res.end(JSON.stringify(products));
2022-02-14 17:50:16 +00:00
},
},
{
match: /\/api\/cart/,
async handle(req, res) {
res.writeHead(200, {
2022-03-16 16:17:34 +00:00
'Content-Type': 'application/json',
});
let cookie = req.headers.cookie;
let userId = cookie ? lightcookie.parse(cookie)['user-id'] : '1'; // default for testing
2022-03-16 16:17:34 +00:00
if (!userId || !userCartItems.has(userId)) {
res.end(JSON.stringify({ items: [] }));
return;
}
let items = userCartItems.get(userId);
let array = Array.from(items.values());
res.end(JSON.stringify({ items: array }));
2022-03-16 16:17:34 +00:00
},
},
{
match: /\/api\/add-to-cart/,
async handle(req, res) {
let body = '';
2022-03-16 16:17:34 +00:00
req.on('data', (chunk) => (body += chunk));
return new Promise((resolve) => {
req.on('end', () => {
let cookie = req.headers.cookie;
let userId = lightcookie.parse(cookie)['user-id'];
let msg = JSON.parse(body);
2022-03-16 16:17:34 +00:00
if (!userCartItems.has(userId)) {
userCartItems.set(userId, new Map());
}
let cart = userCartItems.get(userId);
2022-03-16 16:17:34 +00:00
if (cart.has(msg.id)) {
cart.get(msg.id).count++;
} else {
cart.set(msg.id, { id: msg.id, name: msg.name, count: 1 });
}
res.writeHead(200, {
'Content-Type': 'application/json',
});
res.end(JSON.stringify({ ok: true }));
});
});
2022-03-16 16:17:34 +00:00
},
},
2022-02-14 17:50:16 +00:00
];
export async function apiHandler(req, res) {
2022-02-14 17:50:16 +00:00
for (const route of routes) {
const match = route.match.exec(req.url);
2022-02-14 17:50:16 +00:00
if (match) {
return route.handle(req, res, match);
}
}
res.writeHead(404, {
2022-02-14 17:50:16 +00:00
'Content-Type': 'text/plain',
});
res.end('Not found');
}