2018-06-07 00:12:07 +02:00
|
|
|
// set up module aliasing
|
2018-06-06 21:01:11 +02:00
|
|
|
const moduleAlias = require('module-alias');
|
|
|
|
const createModuleAliases = require('./server/utils/createModuleAliases.js');
|
|
|
|
const customAliases = createModuleAliases();
|
|
|
|
moduleAlias.addAliases(customAliases);
|
|
|
|
|
2018-06-07 00:12:07 +02:00
|
|
|
// test configs
|
|
|
|
const checkForConfig = require('./server/utils/checkForConfig.js');
|
|
|
|
checkForConfig('siteConfig');
|
|
|
|
checkForConfig('mysqlConfig');
|
|
|
|
checkForConfig('slackConfig');
|
|
|
|
checkForConfig('loggerConfig');
|
|
|
|
checkForConfig('siteConfig');
|
|
|
|
|
2018-06-06 03:35:19 +02:00
|
|
|
// load modules
|
2018-04-17 23:54:10 +02:00
|
|
|
const express = require('express');
|
|
|
|
const bodyParser = require('body-parser');
|
|
|
|
const expressHandlebars = require('express-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
|
2018-06-06 21:01:11 +02:00
|
|
|
const db = require('./server/models');
|
2018-06-06 03:35:19 +02:00
|
|
|
const requestLogger = require('./server/middleware/requestLogger.js');
|
2018-05-17 23:42:58 +02:00
|
|
|
const createDatabaseIfNotExists = require('./server/models/utils/createDatabaseIfNotExists.js');
|
2018-06-06 03:55:44 +02:00
|
|
|
const { getWalletBalance } = require('./server/lbrynet');
|
|
|
|
const configureLogging = require('./server/utils/configureLogging.js');
|
|
|
|
const configureSlack = require('./server/utils/configureSlack.js');
|
2018-06-06 17:30:30 +02:00
|
|
|
const speechPassport = require('./server/speechPassport');
|
2018-06-06 03:55:44 +02:00
|
|
|
|
2018-06-07 00:12:07 +02:00
|
|
|
const {
|
|
|
|
details: { port: PORT },
|
|
|
|
auth: { sessionKey },
|
2018-06-28 20:31:21 +02:00
|
|
|
startup: {
|
|
|
|
performChecks,
|
|
|
|
performUpdates,
|
|
|
|
},
|
2018-06-07 00:12:07 +02:00
|
|
|
} = require('@config/siteConfig');
|
2018-04-17 23:54:10 +02:00
|
|
|
|
|
|
|
function Server () {
|
2018-06-06 21:01:11 +02:00
|
|
|
this.initialize = () => {
|
|
|
|
// configure logging
|
|
|
|
configureLogging();
|
|
|
|
// configure slack logging
|
|
|
|
configureSlack();
|
|
|
|
};
|
2018-04-17 23:54:10 +02:00
|
|
|
this.createApp = () => {
|
2018-06-06 21:01:11 +02:00
|
|
|
/* create app */
|
2018-04-17 23:54:10 +02:00
|
|
|
const app = express();
|
|
|
|
|
|
|
|
// trust the proxy to get ip address for us
|
|
|
|
app.enable('trust proxy');
|
|
|
|
|
|
|
|
// set HTTP headers to protect against well-known web vulnerabilties
|
|
|
|
app.use(helmet());
|
2018-05-02 22:08:25 +02:00
|
|
|
|
2018-04-17 23:54:10 +02:00
|
|
|
// 'express.static' to serve static files from public directory
|
2018-05-02 22:08:25 +02:00
|
|
|
const publicPath = Path.resolve(process.cwd(), 'public');
|
|
|
|
app.use(express.static(publicPath));
|
|
|
|
logger.info(`serving static files from default static path at ${publicPath}.`);
|
|
|
|
|
2018-04-17 23:54:10 +02:00
|
|
|
// 'body parser' for parsing application/json
|
|
|
|
app.use(bodyParser.json());
|
2018-05-02 22:08:25 +02:00
|
|
|
|
2018-04-17 23:54:10 +02:00
|
|
|
// '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);
|
|
|
|
|
|
|
|
// initialize passport
|
|
|
|
app.use(cookieSession({
|
|
|
|
name : 'session',
|
|
|
|
keys : [sessionKey],
|
|
|
|
}));
|
|
|
|
app.use(speechPassport.initialize());
|
|
|
|
app.use(speechPassport.session());
|
|
|
|
|
|
|
|
// configure handlebars & register it with express app
|
2018-07-03 03:22:06 +02:00
|
|
|
const viewsPath = Path.resolve(process.cwd(), 'node_modules/spee.ch/server/views');
|
|
|
|
app.engine('handlebars', expressHandlebars({
|
2018-07-03 07:47:18 +02:00
|
|
|
async: false,
|
|
|
|
dataType: 'text',
|
2018-04-17 23:54:10 +02:00
|
|
|
defaultLayout: 'embed',
|
2018-07-03 03:22:06 +02:00
|
|
|
partialsDir: Path.join(viewsPath, '/partials'),
|
|
|
|
layoutsDir: Path.join(viewsPath, '/layouts')
|
|
|
|
}));
|
|
|
|
app.set('views', viewsPath);
|
2018-04-17 23:54:10 +02:00
|
|
|
app.set('view engine', 'handlebars');
|
|
|
|
|
|
|
|
// set the routes on the app
|
2018-06-06 21:01:11 +02:00
|
|
|
require('./server/routes/auth')(app);
|
|
|
|
require('./server/routes/api')(app);
|
|
|
|
require('./server/routes/pages')(app);
|
|
|
|
require('./server/routes/assets')(app);
|
|
|
|
require('./server/routes/fallback')(app);
|
2018-04-17 23:54:10 +02:00
|
|
|
|
|
|
|
this.app = app;
|
|
|
|
};
|
2018-06-06 21:01:11 +02:00
|
|
|
this.createServer = () => {
|
|
|
|
/* create server */
|
2018-04-17 23:54:10 +02:00
|
|
|
this.server = http.Server(this.app);
|
|
|
|
};
|
2018-06-28 20:19:24 +02:00
|
|
|
this.startServerListening = () => {
|
|
|
|
logger.info(`Starting server on ${PORT}...`);
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
this.server.listen(PORT, () => {
|
|
|
|
logger.info(`Server is listening on PORT ${PORT}`);
|
|
|
|
resolve();
|
|
|
|
})
|
|
|
|
});
|
|
|
|
};
|
2018-06-06 21:01:11 +02:00
|
|
|
this.syncDatabase = () => {
|
2018-06-28 20:19:24 +02:00
|
|
|
logger.info(`Syncing database...`);
|
2018-06-06 21:01:11 +02:00
|
|
|
return createDatabaseIfNotExists()
|
2018-05-17 23:42:58 +02:00
|
|
|
.then(() => {
|
2018-05-18 04:01:35 +02:00
|
|
|
db.sequelize.sync();
|
2018-06-06 21:01:11 +02:00
|
|
|
})
|
|
|
|
};
|
2018-06-28 20:31:21 +02:00
|
|
|
this.performChecks = () => {
|
|
|
|
if (!performChecks) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
logger.info(`Performing checks...`);
|
2018-06-28 20:19:24 +02:00
|
|
|
return Promise.all([
|
|
|
|
getWalletBalance(),
|
2018-06-28 20:31:21 +02:00
|
|
|
])
|
|
|
|
.then(([walletBalance]) => {
|
|
|
|
logger.info('Starting LBC balance:', walletBalance);
|
|
|
|
})
|
|
|
|
};
|
|
|
|
this.performUpdates = () => {
|
|
|
|
if (!performUpdates) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
logger.info(`Peforming updates...`);
|
|
|
|
return Promise.all([
|
2018-07-03 00:27:42 +02:00
|
|
|
db.Blocked.refreshTable(),
|
2018-06-28 20:19:24 +02:00
|
|
|
db.Tor.refreshTable(),
|
|
|
|
])
|
2018-06-28 20:31:21 +02:00
|
|
|
.then(([updatedBlockedList, updatedTorList]) => {
|
|
|
|
logger.info('Blocked list updated, length:', updatedBlockedList.length);
|
|
|
|
logger.info('Tor list updated, length:', updatedTorList.length);
|
2018-06-28 20:19:24 +02:00
|
|
|
})
|
|
|
|
};
|
2018-06-06 21:01:11 +02:00
|
|
|
this.start = () => {
|
|
|
|
this.initialize();
|
|
|
|
this.createApp();
|
|
|
|
this.createServer();
|
2018-06-28 19:39:46 +02:00
|
|
|
this.syncDatabase()
|
|
|
|
.then(() => {
|
2018-06-28 20:19:24 +02:00
|
|
|
return this.startServerListening();
|
2018-04-17 23:54:10 +02:00
|
|
|
})
|
2018-06-28 19:39:46 +02:00
|
|
|
.then(() => {
|
2018-06-28 20:31:21 +02:00
|
|
|
return Promise.all([
|
|
|
|
this.performChecks(),
|
|
|
|
this.performUpdates(),
|
|
|
|
])
|
2018-06-28 19:39:46 +02:00
|
|
|
})
|
2018-06-28 20:19:24 +02:00
|
|
|
.then(() => {
|
2018-06-28 20:31:21 +02:00
|
|
|
logger.info('Spee.ch startup is complete');
|
2018-06-28 19:39:46 +02:00
|
|
|
})
|
2018-05-18 03:11:22 +02:00
|
|
|
.catch(error => {
|
|
|
|
if (error.code === 'ECONNREFUSED') {
|
|
|
|
return logger.error('Connection refused. The daemon may not be running.')
|
2018-06-28 20:19:24 +02:00
|
|
|
} else if (error.code === 'EADDRINUSE') {
|
|
|
|
return logger.error('Server could not start listening. The port is already in use.');
|
2018-05-18 03:11:22 +02:00
|
|
|
} else if (error.message) {
|
|
|
|
logger.error(error.message);
|
|
|
|
}
|
|
|
|
logger.error(error);
|
2018-04-17 23:54:10 +02:00
|
|
|
});
|
|
|
|
};
|
2018-06-06 21:01:11 +02:00
|
|
|
}
|
2018-04-17 23:54:10 +02:00
|
|
|
|
|
|
|
module.exports = Server;
|