Created
February 25, 2025 12:15
-
-
Save juliangruber/648ab7097d81b58ced6ff049410bb8dc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Fastify from 'fastify' | |
import pg from 'pg' | |
const app = Fastify() | |
const client = new pg.Client() | |
app.post('/:subnet/measurement', { | |
schema: { | |
body: { | |
type: 'boolean' | |
} | |
} | |
}, async (request, reply) => { | |
await client.query(` | |
UPDATE stats SET total = total + 1, successful = successful + $1 WHERE subnet = $2 | |
`, [ | |
request.body ? 1 : 0, | |
request.params.subnet | |
]) | |
reply.send() | |
}) | |
app.get('/:subnet', async (request, reply) => { | |
const { rows } = await client.query( | |
'SELECT total, successful FROM stats WHERE subnet = $1', | |
[request.params.subnet] | |
) | |
reply.send(rows[0]) | |
}) | |
app.listen(8000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment