2020-02-03 10:24:25 +01:00
|
|
|
const Router = require("@koa/router")
|
2020-05-07 11:53:34 +02:00
|
|
|
const authenticated = require("../middleware/authenticated")
|
|
|
|
const compress = require("koa-compress")
|
|
|
|
const zlib = require("zlib")
|
2020-05-11 16:42:42 +02:00
|
|
|
const { budibaseAppsDir } = require("../utilities/budibaseDir")
|
2020-02-03 10:24:25 +01:00
|
|
|
const {
|
2020-05-04 18:13:57 +02:00
|
|
|
authRoutes,
|
2020-04-06 15:05:57 +02:00
|
|
|
pageRoutes,
|
|
|
|
userRoutes,
|
2020-05-04 18:13:57 +02:00
|
|
|
instanceRoutes,
|
|
|
|
clientRoutes,
|
|
|
|
applicationRoutes,
|
|
|
|
modelRoutes,
|
|
|
|
viewRoutes,
|
|
|
|
staticRoutes,
|
2020-05-07 11:53:34 +02:00
|
|
|
componentRoutes,
|
2020-05-21 15:43:49 +02:00
|
|
|
workflowRoutes,
|
2020-05-21 15:31:23 +02:00
|
|
|
accesslevelRoutes,
|
2020-05-07 11:53:34 +02:00
|
|
|
} = require("./routes")
|
2019-06-28 23:59:27 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
const router = new Router()
|
2020-05-14 16:12:30 +02:00
|
|
|
const env = require("../environment")
|
2020-05-07 15:04:32 +02:00
|
|
|
|
|
|
|
router
|
|
|
|
.use(
|
|
|
|
compress({
|
|
|
|
threshold: 2048,
|
|
|
|
gzip: {
|
|
|
|
flush: zlib.Z_SYNC_FLUSH,
|
|
|
|
},
|
|
|
|
deflate: {
|
|
|
|
flush: zlib.Z_SYNC_FLUSH,
|
|
|
|
},
|
2020-05-18 15:58:39 +02:00
|
|
|
br: false,
|
2020-05-06 21:29:47 +02:00
|
|
|
})
|
2020-05-07 15:04:32 +02:00
|
|
|
)
|
|
|
|
.use(async (ctx, next) => {
|
|
|
|
ctx.config = {
|
2020-05-11 16:42:42 +02:00
|
|
|
latestPackagesFolder: budibaseAppsDir(),
|
2020-05-14 16:12:30 +02:00
|
|
|
jwtSecret: env.JWT_SECRET,
|
2020-06-03 13:29:42 +02:00
|
|
|
useAppRootPath: true,
|
2020-04-08 17:57:27 +02:00
|
|
|
}
|
2020-05-14 16:12:30 +02:00
|
|
|
ctx.isDev = env.NODE_ENV !== "production" && env.NODE_ENV !== "jest"
|
2020-05-07 15:04:32 +02:00
|
|
|
await next()
|
2020-05-07 11:53:34 +02:00
|
|
|
})
|
2020-05-07 15:04:32 +02:00
|
|
|
.use(authenticated)
|
|
|
|
|
|
|
|
// error handling middleware
|
|
|
|
router.use(async (ctx, next) => {
|
|
|
|
try {
|
|
|
|
await next()
|
|
|
|
} catch (err) {
|
2020-05-18 16:46:38 +02:00
|
|
|
ctx.log.error(err)
|
2020-05-07 15:04:32 +02:00
|
|
|
ctx.status = err.status || err.statusCode || 500
|
|
|
|
ctx.body = {
|
|
|
|
message: err.message,
|
|
|
|
status: ctx.status,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2020-04-08 17:57:27 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
router.use(authRoutes.routes())
|
|
|
|
router.use(authRoutes.allowedMethods())
|
2020-05-04 18:13:57 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
// authenticated routes
|
|
|
|
router.use(viewRoutes.routes())
|
|
|
|
router.use(viewRoutes.allowedMethods())
|
2020-04-14 16:14:57 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
router.use(modelRoutes.routes())
|
|
|
|
router.use(modelRoutes.allowedMethods())
|
2020-04-13 12:47:53 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
router.use(userRoutes.routes())
|
|
|
|
router.use(userRoutes.allowedMethods())
|
2020-04-07 16:12:08 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
router.use(instanceRoutes.routes())
|
|
|
|
router.use(instanceRoutes.allowedMethods())
|
2020-05-20 18:02:46 +02:00
|
|
|
|
|
|
|
router.use(workflowRoutes.routes())
|
|
|
|
router.use(workflowRoutes.allowedMethods())
|
2020-05-07 15:04:32 +02:00
|
|
|
// end auth routes
|
2020-05-06 21:29:47 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
router.use(pageRoutes.routes())
|
|
|
|
router.use(pageRoutes.allowedMethods())
|
2020-05-06 21:29:47 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
router.use(applicationRoutes.routes())
|
|
|
|
router.use(applicationRoutes.allowedMethods())
|
2020-05-06 21:29:47 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
router.use(componentRoutes.routes())
|
|
|
|
router.use(componentRoutes.allowedMethods())
|
2020-05-06 21:29:47 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
router.use(clientRoutes.routes())
|
|
|
|
router.use(clientRoutes.allowedMethods())
|
2020-04-07 16:12:08 +02:00
|
|
|
|
2020-05-21 15:31:23 +02:00
|
|
|
router.use(accesslevelRoutes.routes())
|
|
|
|
router.use(accesslevelRoutes.allowedMethods())
|
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
router.use(staticRoutes.routes())
|
|
|
|
router.use(staticRoutes.allowedMethods())
|
2020-04-06 15:05:57 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
router.redirect("/", "/_builder")
|
2019-06-28 23:59:27 +02:00
|
|
|
|
2020-05-07 15:04:32 +02:00
|
|
|
module.exports = router
|