Skip to content

Commit 79bd695

Browse files
committed
Rate limiting
1 parent 9009b82 commit 79bd695

8 files changed

+505
-23
lines changed

Caddyfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ proxy /leaderboard http://grafana:3000 {
1212
without /leaderboard
1313
}
1414

15-
proxy /api http://influxdb:8086 {
15+
proxy /api http://api:3000 {
1616
fail_timeout 5s
1717
transparent
18-
without /api
1918
}
2019

2120
proxy / http://web {

api/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

api/Dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:10.16.3
2+
3+
ENV NODE_ENV production
4+
ENV APP_DIR /opt/app
5+
WORKDIR ${APP_DIR}
6+
7+
ADD package.json package-lock.json ./
8+
RUN npm install --production
9+
ADD . ./
10+
11+
EXPOSE 3000
12+
13+
CMD ["npm", "start"]

api/index.js

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
const express = require('express')
2+
const bodyParser = require('body-parser')
3+
const rateLimit = require("express-rate-limit")
4+
const axios = require('axios')
5+
const app = express()
6+
const port = 3000
7+
8+
const limiter = rateLimit({
9+
windowMs: 1 * 60 * 1000, // 15 minutes
10+
max: 60 // limit each IP to 100 requests per windowMs
11+
})
12+
13+
app.use(limiter)
14+
app.use(bodyParser.json())
15+
16+
const dbUrl = process.env.DB_URL || "http://influxdb:8086"
17+
18+
app.get('/ping', (req, res) => res.json({ "message": "pong" }))
19+
20+
app.post('/api/pr', async (req, res) => {
21+
console.log(req.body)
22+
const { pr_link: prLink, language } = req.body
23+
24+
if (!prLink || !language) {
25+
res.status(400).json({ "message": "wrong data" })
26+
return
27+
}
28+
29+
const body = `pull_request,pr_link=${prLink.trim().replace(/ +/g, "-")},language=${language.trim().replace(/ +/g, "-")} value=1`
30+
31+
const url = `${dbUrl}/api/write?db=hacktober_metrics`
32+
console.log(`Sending request to: ${url}`)
33+
try {
34+
await axios({
35+
method: 'post',
36+
url,
37+
data: body,
38+
})
39+
res.sendStatus(204)
40+
} catch (e) {
41+
res.sendStatus(500)
42+
}
43+
})
44+
45+
app.listen(port, () => console.log(`Example app listening on port ${port}!`))

0 commit comments

Comments
 (0)