rewrite without express

This commit is contained in:
Erin 2023-09-05 21:40:09 -04:00
parent 5a5dbce8ed
commit f2f51b28fe
3 changed files with 25 additions and 1051 deletions

View file

@ -1,30 +1,30 @@
import * as fs from 'node:fs';
import express from 'express';
import {readFileSync} from 'node:fs';
import {createServer} from 'node:http';
import {URL} from 'node:url';
const sites = fs.readFileSync('./webring.txt', 'utf-8')
// split lines
.split(/\r?\n/)
// trim whitespace from each line
.map(site => site.trim())
// exclude empty lines and lines that start with # because why not
.filter(site => site && !site.startsWith('#'));
const data = readFileSync(process.env.SITES_FILE || 'webring.txt', 'utf-8');
const sites = [...data.matchAll(/^\s*([^#\s].*)\s*$/gm)].map(match => match[1]);
// modulo that does the right thing with negatives
// https://stackoverflow.com/a/4467559
const mod = (n, m) => ((n % m) + m) % m;
const text = (response, body, code = 200) => {
response.writeHead(code, {'Content-Type': 'text/plain'}).write(body);
response.end();
};
const redirect = (res, url) => res.writeHead(301, {Location: url}).end();
function handle (offset, request, response) {
const from = request.query.from;
const toSite = (response, from, offset) => {
const index = sites.findIndex(site => site === from);
if (!from || index === -1) {
response.status(400).send('the provided site is not in the webring');
return;
}
response.redirect(301, sites[mod(index + offset, sites.length)]);
return text(response, 'the provided site is not in the webring', 400);
}
redirect(response, sites[(index + offset + sites.length) % sites.length]);
};
express()
.get('/prev', (request, response) => handle(-1, request, response))
.get('/next', (request, response) => handle(+1, request, response))
.get('/list', (_, response) => response.type('txt').send(sites.join('\n')))
.listen(process.env.PORT || 8080);
const pathHandlers = {
'/prev': (response, query) => toSite(response, query.get('from'), -1),
'/next': (response, query) => toSite(response, query.get('from'), +1),
'/list': response => text(response, sites.join('\n')),
};
createServer((request, response) => {
const url = new URL(request.url, `http://${request.headers.host}`);
pathHandlers[url.pathname]?.(response, url.searchParams);
}).listen(process.env.PORT || 80);

1025
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -8,8 +8,5 @@
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2"
}
"license": "ISC"
}