mon-entreprise/api/source/index.ts

72 lines
1.9 KiB
TypeScript
Raw Permalink Normal View History

2022-05-16 12:29:59 +00:00
import cors from '@koa/cors'
2022-06-08 09:09:34 +00:00
import Router, { RouterContext } from '@koa/router'
import { koaMiddleware as publicodesAPI } from '@publicodes/rest-api'
2022-05-16 12:29:59 +00:00
import Koa from 'koa'
import rules from 'modele-social'
import Engine from 'publicodes'
2022-11-03 16:32:04 +00:00
2023-11-24 16:46:59 +00:00
import { analyticsMiddleware } from './analytics.js'
import { catchErrors } from './errors.js'
2022-05-25 15:48:28 +00:00
import openapi from './openapi.json' assert { type: 'json' }
2022-08-29 09:58:53 +00:00
import { rateLimiterMiddleware } from './rate-limiter.js'
import { redisCacheMiddleware } from './redis-cache.js'
2022-05-16 12:29:59 +00:00
import { docRoutes } from './route/doc.js'
2022-05-17 12:18:32 +00:00
import { openapiRoutes } from './route/openapi.js'
2022-06-08 09:09:34 +00:00
import Sentry, { requestHandler, tracingMiddleWare } from './sentry.js'
2023-06-19 09:24:55 +00:00
import { getUnitKey } from './units.js'
import v1unitéAdapterMiddleware from './v1unitéAdapterMiddleware.js'
2022-05-16 12:29:59 +00:00
type State = Koa.DefaultState
type Context = Koa.DefaultContext
const app = new Koa<State, Context>()
const router = new Router<State, Context>()
2022-06-13 13:14:46 +00:00
if (process.env.NODE_ENV === 'production') {
2022-08-29 09:58:53 +00:00
app.proxy = true // Trust X-Forwarded-For proxy header
2022-06-13 13:14:46 +00:00
app.use(requestHandler)
app.use(tracingMiddleWare)
app.on('error', (err, ctx: RouterContext) => {
Sentry.withScope((scope) => {
2023-09-25 14:01:42 +00:00
scope.addEventProcessor((event) =>
Sentry.addRequestDataToEvent(event, ctx.request)
)
2022-06-13 13:14:46 +00:00
Sentry.captureException(err)
2022-06-08 09:09:34 +00:00
})
})
2022-06-13 13:14:46 +00:00
}
2022-06-08 09:09:34 +00:00
app.use(catchErrors())
2022-05-16 12:29:59 +00:00
app.use(cors())
2022-08-31 08:54:15 +00:00
router.use('/api/v1', docRoutes(), openapiRoutes(openapi))
2023-06-19 09:24:55 +00:00
const apiRoutes = publicodesAPI(new Engine(rules, { getUnitKey }))
2022-05-16 12:29:59 +00:00
router.use(
'/api/v1',
rateLimiterMiddleware,
redisCacheMiddleware(),
2023-11-24 16:46:59 +00:00
analyticsMiddleware,
2023-12-20 10:27:29 +00:00
v1unitéAdapterMiddleware(),
apiRoutes
)
2022-05-16 12:29:59 +00:00
app.use(router.routes())
app.use(router.allowedMethods())
2022-05-25 15:48:28 +00:00
app.use((ctx) => {
ctx.redirect('/api/v1/doc/')
})
2022-05-16 12:29:59 +00:00
2022-05-25 15:48:28 +00:00
const port = process.env.PORT || 3004
2022-05-16 12:29:59 +00:00
2022-06-02 13:28:08 +00:00
const server = app.listen(port, function () {
2022-05-16 12:29:59 +00:00
// eslint-disable-next-line no-console
console.log('listening on port:', port)
})
2022-06-02 13:28:08 +00:00
2023-06-19 09:24:55 +00:00
export { app, server }