Files

147 lines
4.4 KiB
JavaScript
Raw Permalink Normal View History

/*
This Koa server has two interfaces:
- REST API over HTTP
- JSON RPC over IPFS
The architecture of the code follows the Clean Architecture pattern:
https://troutsblog.com/blog/clean-architecture
*/
// npm libraries
2022-09-08 08:58:39 -07:00
import Koa from 'koa'
import bodyParser from 'koa-bodyparser'
import convert from 'koa-convert'
import logger from 'koa-logger'
import mongoose from 'mongoose'
import session from 'koa-generic-session'
import passport from 'koa-passport'
import mount from 'koa-mount'
import serve from 'koa-static'
import cors from 'kcors'
// Local libraries
2022-09-08 08:58:39 -07:00
import config from '../config/index.js' // this first.
import AdminLib from '../src/adapters/admin.js'
import errorMiddleware from '../src/controllers/rest-api/middleware/error.js'
2024-04-26 14:38:03 -07:00
import { usageMiddleware } from '../src/use-cases/usage-use-cases.js'
2022-09-08 08:58:39 -07:00
import wlogger from '../src/adapters/wlogger.js'
import Controllers from '../src/controllers/index.js'
import { applyPassportMods } from '../config/passport.js'
class Server {
constructor () {
2022-06-19 20:00:25 -07:00
// Encapsulate dependencies
this.adminLib = new AdminLib()
2022-06-19 20:00:25 -07:00
this.controllers = new Controllers()
this.mongoose = mongoose
this.config = config
this.process = process
}
async startServer () {
try {
// Create a Koa instance.
const app = new Koa()
2022-06-19 20:00:25 -07:00
app.keys = [this.config.session]
if (!this.config.noMongo) {
// Connect to the Mongo Database.
this.mongoose.Promise = global.Promise
this.mongoose.set('useCreateIndex', true) // Stop deprecation warning.
console.log(
`Connecting to MongoDB with this connection string: ${this.config.database}`
)
await this.mongoose.connect(this.config.database, {
useUnifiedTopology: true,
useNewUrlParser: true
})
}
2022-06-19 20:00:25 -07:00
console.log(`Starting environment: ${this.config.env}`)
console.log(`Debug level: ${this.config.debugLevel}`)
// MIDDLEWARE START
app.use(convert(logger()))
app.use(bodyParser())
app.use(session())
app.use(errorMiddleware())
2024-04-26 14:38:03 -07:00
app.use(usageMiddleware())
// Used to generate the docs.
app.use(mount('/', serve(`${process.cwd()}/docs`)))
// Mount the page for displaying logs.
app.use(mount('/logs', serve(`${process.cwd()}/config/logs`)))
// User Authentication
2022-09-08 08:58:39 -07:00
// require('../config/passport')
applyPassportMods(passport)
app.use(passport.initialize())
app.use(passport.session())
2022-01-12 15:33:04 -08:00
// Enable CORS for testing
// THIS IS A SECURITY RISK. COMMENT OUT FOR PRODUCTION
// Dev Note: This line must come BEFORE controllers.attachRESTControllers()
app.use(cors({ origin: '*' }))
2022-06-27 10:09:08 -07:00
// Wait for any adapters to initialize.
await this.controllers.initAdapters()
// Wait for any use-libraries to initialize.
await this.controllers.initUseCases()
// Attach REST API and JSON RPC controllers to the app.
2022-06-19 20:00:25 -07:00
await this.controllers.attachRESTControllers(app)
2021-08-08 08:09:48 -07:00
2022-06-19 20:00:25 -07:00
app.controllers = this.controllers
// MIDDLEWARE END
2022-06-19 20:00:25 -07:00
console.log(`Running server in environment: ${this.config.env}`)
wlogger.info(`Running server in environment: ${this.config.env}`)
this.server = await app.listen(this.config.port)
2022-06-19 20:00:25 -07:00
console.log(`Server started on ${this.config.port}`)
if (!this.config.noMongo) {
// Create the system admin user.
const success = await this.adminLib.createSystemUser()
if (success) console.log('System admin user created.')
}
// Attach the other IPFS controllers.
// Skip if this is a test environment.
2022-06-19 20:00:25 -07:00
if (this.config.env !== 'test') {
await this.controllers.attachControllers(app)
}
2021-08-26 10:17:11 -07:00
// Display configuration settings
2022-05-26 08:24:45 -07:00
console.log('\nConfiguration:')
2022-06-19 20:00:25 -07:00
console.log(`Circuit Relay: ${this.config.isCircuitRelay}`)
console.log(`IPFS TCP port: ${this.config.ipfsTcpPort}`)
console.log(`IPFS WS port: ${this.config.ipfsWsPort}`)
console.log(`IPFS WebRTC port: ${this.config.ipfsWebRtcPort}`)
console.log(`Connection preference: ${this.config.connectPref}\n`)
return app
} catch (err) {
console.error('Could not start server. Error: ', err)
2021-12-29 17:46:05 -08:00
console.log(
'Exiting after 5 seconds. Depending on process manager to restart.'
)
await this.sleep(5000)
this.process.exit(1)
}
}
sleep (ms) {
return new Promise((resolve) => setTimeout(resolve, ms))
}
2021-12-29 17:46:05 -08:00
}
2022-09-08 08:58:39 -07:00
export default Server