1
0
Fork 0
mirror of synced 2024-05-20 04:12:50 +12:00
budibase/packages/server/src/app.ts

110 lines
2.5 KiB
TypeScript
Raw Normal View History

// need to load environment first
import { ExtendableContext } from "koa"
2022-01-24 23:48:59 +13:00
import * as env from "./environment"
2021-04-16 03:57:01 +12:00
const CouchDB = require("./db")
require("@budibase/backend-core").init(CouchDB)
const Koa = require("koa")
const destroyable = require("server-destroy")
const koaBody = require("koa-body")
2021-05-28 21:09:32 +12:00
const pino = require("koa-pino-logger")
2020-05-15 02:12:30 +12:00
const http = require("http")
const api = require("./api")
2020-06-01 04:12:52 +12:00
const eventEmitter = require("./events")
const automations = require("./automations/index")
2020-07-15 03:00:58 +12:00
const Sentry = require("@sentry/node")
const fileSystem = require("./utilities/fileSystem")
const bullboard = require("./automations/bullboard")
2021-05-13 04:37:09 +12:00
const redis = require("./utilities/redis")
2022-01-24 23:48:59 +13:00
import * as migrations from "./migrations"
2020-05-08 01:04:32 +12:00
const app = new Koa()
2019-06-14 21:05:46 +12:00
2020-05-08 01:04:32 +12:00
// set up top level koa middleware
2021-02-10 07:49:12 +13:00
app.use(
koaBody({
multipart: true,
formLimit: "10mb",
jsonLimit: "10mb",
textLimit: "10mb",
enableTypes: ["json", "form", "text"],
parsedMethods: ["POST", "PUT", "PATCH", "DELETE"],
2021-02-10 07:49:12 +13:00
})
)
2020-05-15 02:12:30 +12:00
2021-06-02 07:17:06 +12:00
app.use(
pino({
prettyPrint: {
levelFirst: true,
},
level: env.LOG_LEVEL || "error",
})
)
2020-05-05 04:13:57 +12:00
if (!env.isTest()) {
const plugin = bullboard.init()
app.use(plugin)
}
2020-06-01 04:12:52 +12:00
app.context.eventEmitter = eventEmitter
app.context.auth = {}
2020-05-25 09:54:08 +12:00
2020-05-08 01:04:32 +12:00
// api routes
app.use(api.routes())
2020-05-05 04:13:57 +12:00
if (env.isProd()) {
env._set("NODE_ENV", "production")
2020-07-15 03:00:58 +12:00
Sentry.init()
app.on("error", (err: any, ctx: ExtendableContext) => {
Sentry.withScope(function (scope: any) {
scope.addEventProcessor(function (event: any) {
2020-07-15 03:00:58 +12:00
return Sentry.Handlers.parseRequest(event, ctx.request)
})
Sentry.captureException(err)
})
})
}
2020-07-17 01:27:27 +12:00
const server = http.createServer(app.callback())
destroyable(server)
2020-07-17 01:27:27 +12:00
server.on("close", async () => {
if (env.NODE_ENV !== "jest") {
console.log("Server Closed")
}
await redis.shutdown()
})
2022-04-01 13:00:52 +13:00
module.exports = server.listen(env.PORT || 4001, async () => {
2020-07-17 01:27:27 +12:00
console.log(`Budibase running on ${JSON.stringify(server.address())}`)
env._set("PORT", server.address().port)
eventEmitter.emitPort(env.PORT)
fileSystem.init()
2021-05-13 04:37:09 +12:00
await redis.init()
await automations.init()
2020-07-17 02:19:46 +12:00
})
2022-01-24 23:48:59 +13:00
const shutdown = () => {
server.close()
server.destroy()
2022-01-24 23:48:59 +13:00
}
process.on("uncaughtException", err => {
console.error(err)
shutdown()
})
process.on("SIGTERM", () => {
2022-01-24 23:48:59 +13:00
shutdown()
})
2022-01-24 23:48:59 +13:00
// run migrations on startup if not done via http
// not recommended in a clustered environment
if (!env.HTTP_MIGRATIONS) {
migrations.migrate().catch(err => {
console.error("Error performing migrations. Exiting.\n", err)
shutdown()
})
}