57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
// express
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
const express = require('express');
|
|
|
|
const app = express();
|
|
const port = process.env.WS4KP_PORT ?? 8080;
|
|
const path = require('path');
|
|
|
|
// template engine
|
|
app.set('view engine', 'ejs');
|
|
|
|
// cors pass through
|
|
const fs = require('fs');
|
|
const corsPassThru = require('./cors');
|
|
const radarPassThru = require('./cors/radar');
|
|
const outlookPassThru = require('./cors/outlook');
|
|
|
|
// cors pass-thru to api.weather.gov
|
|
app.get('/stations/*', corsPassThru);
|
|
app.get('/Conus/*', radarPassThru);
|
|
app.get('/products/*', outlookPassThru);
|
|
|
|
// version
|
|
const { version } = JSON.parse(fs.readFileSync('package.json'));
|
|
|
|
const index = (req, res) => {
|
|
res.render(path.join(__dirname, 'views/index'), {
|
|
production: false,
|
|
version,
|
|
});
|
|
};
|
|
|
|
// debugging
|
|
if (process.env?.DIST !== '1') {
|
|
// debugging
|
|
app.get('/index.html', index);
|
|
app.get('/', index);
|
|
app.get('*', express.static(path.join(__dirname, './server')));
|
|
} else {
|
|
// distribution
|
|
app.use('/images', express.static(path.join(__dirname, './server/images')));
|
|
app.use('/fonts', express.static(path.join(__dirname, './server/fonts')));
|
|
app.use('/scripts', express.static(path.join(__dirname, './server/scripts')));
|
|
app.use('/', express.static(path.join(__dirname, './dist')));
|
|
}
|
|
|
|
const server = app.listen(port, () => {
|
|
console.log(`Server listening on port ${port}`);
|
|
});
|
|
|
|
// graceful shutdown
|
|
process.on('SIGINT', () => {
|
|
server.close(() => {
|
|
console.log('Server closed');
|
|
});
|
|
});
|