spee.ch/index.js

91 lines
3 KiB
JavaScript
Raw Normal View History

2018-06-06 03:35:19 +02:00
// load modules
const express = require('express');
const bodyParser = require('body-parser');
const expressHandlebars = require('express-handlebars');
const Handlebars = require('handlebars');
const helmet = require('helmet');
const cookieSession = require('cookie-session');
const http = require('http');
const logger = require('winston');
const Path = require('path');
2018-06-06 03:35:19 +02:00
// load local modules
const requestLogger = require('./server/middleware/requestLogger.js');
const siteConfig = require('@config/siteConfig.js');
const createDatabaseIfNotExists = require('./server/models/utils/createDatabaseIfNotExists.js');
2018-05-23 10:18:50 +02:00
const { getWalletBalance } = require('./server/lbrynet/index');
2018-06-06 03:35:19 +02:00
/* create app */
// create an Express application
const app = express();
// trust the proxy to get ip address for us
app.enable('trust proxy');
2018-05-02 22:08:25 +02:00
2018-06-06 03:35:19 +02:00
/* add middleware */
// set HTTP headers to protect against well-known web vulnerabilties
app.use(helmet());
// 'express.static' to serve static files from public directory
const publicPath = Path.resolve(process.cwd(), 'public');
app.use(express.static(publicPath));
logger.info(`serving static files from default static path at ${publicPath}.`);
// 'body parser' for parsing application/json
app.use(bodyParser.json());
// 'body parser' for parsing application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: true }));
// add custom middleware (note: build out to accept dynamically use what is in server/middleware/
app.use(requestLogger);
// configure passport
const speechPassport = require('./server/speechPassport/index');
// initialize passport
const sessionKey = siteConfig.auth.sessionKey;
app.use(cookieSession({
name : 'session',
keys : [sessionKey],
}));
app.use(speechPassport.initialize());
app.use(speechPassport.session());
// configure handlebars & register it with express app
const hbs = expressHandlebars.create({
defaultLayout: 'embed',
handlebars : Handlebars,
});
app.engine('handlebars', hbs.engine);
app.set('view engine', 'handlebars');
// set the routes on the app
require('./server/routes/auth/index')(app);
require('./server/routes/api/index')(app);
require('./server/routes/pages/index')(app);
require('./server/routes/assets/index')(app);
require('./server/routes/fallback/index')(app);
2018-05-02 22:08:25 +02:00
2018-06-06 03:35:19 +02:00
/* create server */
const server = http.Server(app);
2018-05-02 22:08:25 +02:00
2018-06-06 03:35:19 +02:00
/* start the server */
const db = require('./server/models/index');
const PORT = siteConfig.details.port;
2018-06-06 03:35:19 +02:00
const startServer = () => {
return createDatabaseIfNotExists()
.then(() => {
return getWalletBalance();
})
.then(balance => {
logger.info('starting LBC balance:', balance);
db.sequelize.sync();
server.listen(PORT, () => {
logger.info(`Server is listening on PORT ${PORT}`);
});
2018-06-06 03:35:19 +02:00
})
.catch(error => {
if (error.code === 'ECONNREFUSED') {
return logger.error('Connection refused. The daemon may not be running.')
} else if (error.message) {
logger.error(error.message);
}
logger.error(error);
});
};
2018-06-06 03:35:19 +02:00
module.exports = startServer;