68 lines
2.1 KiB
JavaScript
68 lines
2.1 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
const express = require('express')
|
|
const netApi = require('net-browserify')
|
|
const compression = require('compression')
|
|
const path = require('path')
|
|
const cors = require('cors')
|
|
const https = require('https')
|
|
const fs = require('fs')
|
|
let siModule
|
|
try {
|
|
siModule = require('systeminformation')
|
|
} catch (err) { }
|
|
|
|
// Create our app
|
|
const app = express()
|
|
|
|
const isProd = process.argv.includes('--prod')
|
|
app.use(compression())
|
|
app.use(netApi({ allowOrigin: '*' }))
|
|
if (!isProd) {
|
|
app.use('/blocksStates', express.static(path.join(__dirname, './prismarine-viewer/public/blocksStates')))
|
|
app.use('/textures', express.static(path.join(__dirname, './prismarine-viewer/public/textures')))
|
|
|
|
app.use('/sounds', express.static(path.join(__dirname, './generated/sounds/')))
|
|
}
|
|
// patch config
|
|
app.get('/config.json', (req, res, next) => {
|
|
// read original file config
|
|
let config = {}
|
|
try {
|
|
config = require('./config.json')
|
|
} catch {
|
|
try {
|
|
config = require('./dist/config.json')
|
|
} catch { }
|
|
}
|
|
res.json({
|
|
...config,
|
|
'defaultProxy': '', // use current url (this server)
|
|
})
|
|
})
|
|
app.use(express.static(path.join(__dirname, './dist')))
|
|
|
|
const portArg = process.argv.indexOf('--port')
|
|
const port = (require.main === module ? process.argv[2] : portArg !== -1 ? process.argv[portArg + 1] : undefined) || 8080
|
|
|
|
// Start the server
|
|
const server = isProd ?
|
|
undefined :
|
|
app.listen(port, async function () {
|
|
console.log('Server listening on port ' + server.address().port)
|
|
if (siModule) {
|
|
const _interfaces = await siModule.networkInterfaces()
|
|
const interfaces = Array.isArray(_interfaces) ? _interfaces : [_interfaces]
|
|
let netInterface = interfaces.find(int => int.default)
|
|
if (!netInterface) {
|
|
netInterface = interfaces.find(int => !int.virtual) ?? interfaces[0]
|
|
console.warn('Failed to get the default network interface, searching for fallback')
|
|
}
|
|
if (netInterface) {
|
|
const address = netInterface.ip4
|
|
console.log(`You can access the server on http://localhost:8080 or http://${address}:${port}`)
|
|
}
|
|
}
|
|
})
|
|
|
|
module.exports = { app }
|