2020-03-04 22:19:39 +00:00
|
|
|
const express = require('express');
|
|
|
|
const app = express();
|
|
|
|
|
|
|
|
const { NODE_ENV } = process.env;
|
|
|
|
|
|
|
|
if (!NODE_ENV || NODE_ENV === 'development') {
|
|
|
|
// Load env vars from /licensing/.env
|
2020-03-10 21:10:59 +00:00
|
|
|
require('custom-env').env();
|
2020-03-04 22:19:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
process.on('exit', () => {
|
2021-07-08 19:33:17 +00:00
|
|
|
// eslint-disable-next-line no-console
|
2020-03-04 22:19:39 +00:00
|
|
|
console.log('Server Shutting Shutdown');
|
|
|
|
});
|
|
|
|
|
|
|
|
process.on('uncaughtException', err => {
|
2021-07-08 19:33:17 +00:00
|
|
|
// eslint-disable-next-line no-console
|
2020-03-04 22:19:39 +00:00
|
|
|
console.error('Uncaught exception in server process occurred');
|
2021-07-08 19:33:17 +00:00
|
|
|
// eslint-disable-next-line no-console
|
2020-03-04 22:19:39 +00:00
|
|
|
console.error(err);
|
|
|
|
});
|
|
|
|
|
2020-03-12 23:07:43 +00:00
|
|
|
const path = require('path');
|
2020-03-04 22:19:39 +00:00
|
|
|
const http = require('http').createServer(app);
|
|
|
|
const bodyParser = require('body-parser');
|
|
|
|
const cors = require('cors');
|
|
|
|
|
2020-03-04 17:28:54 +00:00
|
|
|
app.use(cors());
|
|
|
|
|
2020-03-04 22:19:39 +00:00
|
|
|
app.use(function(req, res, next) {
|
|
|
|
if (typeof req.body === 'string') {
|
|
|
|
req.body = JSON.parse(req.body);
|
|
|
|
}
|
|
|
|
res.header('Access-Control-Allow-Credentials', true);
|
|
|
|
res.header('Access-Control-Allow-Origin', req.headers.origin);
|
|
|
|
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
|
|
|
|
res.header(
|
|
|
|
'Access-Control-Allow-Headers',
|
|
|
|
'X-Requested-With, X-HTTP-Method-Override, Content-Type, Accept,Authorization'
|
|
|
|
);
|
2021-06-29 19:18:32 +00:00
|
|
|
return next();
|
2020-03-04 22:19:39 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Add limit of 10 MB to avoid "Request Entity too large error"
|
|
|
|
// https://stackoverflow.com/questions/19917401/error-request-entity-too-large
|
|
|
|
app.use(bodyParser.urlencoded({ limit: '10mb', extended: true }));
|
|
|
|
app.use(bodyParser.json({ limit: '10mb' }));
|
|
|
|
|
2020-03-12 23:07:43 +00:00
|
|
|
//View engine setup
|
|
|
|
app.set('views', path.join(__dirname, 'views'));
|
|
|
|
app.set('view engine', 'ejs');
|
|
|
|
|
|
|
|
app.use(express.static(path.join(__dirname, 'views')));
|
2021-11-24 07:42:40 +00:00
|
|
|
app.use('/', express.static(path.join(__dirname, 'views', 'img')));
|
2020-03-12 23:07:43 +00:00
|
|
|
|
2020-03-04 22:19:39 +00:00
|
|
|
// Routes(API)
|
2020-04-08 19:32:14 +00:00
|
|
|
app.use('/license/validate', require('./src/api/license'));
|
2020-03-10 21:10:59 +00:00
|
|
|
app.set('port', process.env.PORT || 3004);
|
2020-03-04 22:19:39 +00:00
|
|
|
|
|
|
|
const server = http.listen(app.get('port'), function() {
|
|
|
|
// eslint-disable-next-line
|
|
|
|
console.log('Server Started on port ' + app.get('port'));
|
|
|
|
});
|
|
|
|
|
2020-04-08 19:58:26 +00:00
|
|
|
app.get(['/', '/license'], function(req, res) {
|
2020-03-04 22:19:39 +00:00
|
|
|
res.setHeader('Content-Type', 'application/json');
|
|
|
|
res.send(
|
|
|
|
JSON.stringify({
|
|
|
|
status: 200,
|
|
|
|
message: 'Service Status - OK',
|
2021-11-22 11:18:22 +00:00
|
|
|
serviceType: 'oneuptime-license-server',
|
2020-03-04 22:19:39 +00:00
|
|
|
})
|
|
|
|
);
|
|
|
|
});
|
2020-03-04 17:28:54 +00:00
|
|
|
|
2020-03-04 22:19:39 +00:00
|
|
|
app.use('/*', function(req, res) {
|
2020-03-12 23:07:43 +00:00
|
|
|
res.status(404).render('notFound.ejs', {});
|
2020-03-04 22:19:39 +00:00
|
|
|
});
|
2020-03-04 17:28:54 +00:00
|
|
|
|
2020-03-04 22:19:39 +00:00
|
|
|
module.exports = app;
|
|
|
|
module.exports.close = function() {
|
|
|
|
server.close();
|
|
|
|
};
|