forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.js
33 lines (25 loc) · 881 Bytes
/
events.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import express from 'express'
import { omit } from 'lodash-es'
import Ajv from 'ajv'
import addFormats from 'ajv-formats'
import schema from '../lib/schema-event.js'
const OMIT_FIELDS = ['type']
const ajv = new Ajv()
addFormats(ajv)
const router = express.Router()
router.post('/', async function postEvents(req, res, next) {
const isDev = process.env.NODE_ENV === 'development'
const fields = omit(req.body, '_csrf')
if (!ajv.validate(schema, fields)) {
return res.status(400).json(isDev ? ajv.errorsText() : {})
}
if (req.hydro.maySend()) {
// intentionally don't await this async request
// so that the http response afterwards is sent immediately
req.hydro.publish(req.hydro.schemas[fields.type], omit(fields, OMIT_FIELDS)).catch((e) => {
if (isDev) console.error(e)
})
}
return res.status(200).json({})
})
export default router