Folder structure #398
2 changed files with 38 additions and 39 deletions
|
@ -14,7 +14,7 @@ const { getChannelData, getChannelClaims, getClaimId } = require('../controllers
|
||||||
const NO_CHANNEL = 'NO_CHANNEL';
|
const NO_CHANNEL = 'NO_CHANNEL';
|
||||||
const NO_CLAIM = 'NO_CLAIM';
|
const NO_CLAIM = 'NO_CLAIM';
|
||||||
|
|
||||||
module.exports = (app, siteConfig) => {
|
module.exports = (app) => {
|
||||||
// route to check whether site has published to a channel
|
// route to check whether site has published to a channel
|
||||||
app.get('/api/channel/availability/:name', ({ ip, originalUrl, params }, res) => {
|
app.get('/api/channel/availability/:name', ({ ip, originalUrl, params }, res) => {
|
||||||
checkChannelAvailability(params.name)
|
checkChannelAvailability(params.name)
|
||||||
|
|
75
server.js
75
server.js
|
@ -7,7 +7,6 @@ const { populateLocalsDotUser, serializeSpeechUser, deserializeSpeechUser } = re
|
||||||
const { logging: { logLevel } } = require('./config/speechConfig.js');
|
const { logging: { logLevel } } = require('./config/speechConfig.js');
|
||||||
const logger = require('winston');
|
const logger = require('winston');
|
||||||
const helmet = require('helmet');
|
const helmet = require('helmet');
|
||||||
const PORT = 3000; // set port
|
|
||||||
const app = express(); // create an Express application
|
const app = express(); // create an Express application
|
||||||
const passport = require('passport');
|
const passport = require('passport');
|
||||||
const cookieSession = require('cookie-session');
|
const cookieSession = require('cookie-session');
|
||||||
|
@ -16,20 +15,13 @@ const cookieSession = require('cookie-session');
|
||||||
require('./config/loggerConfig.js')(logger, logLevel);
|
require('./config/loggerConfig.js')(logger, logLevel);
|
||||||
require('./config/slackConfig.js')(logger);
|
require('./config/slackConfig.js')(logger);
|
||||||
|
|
||||||
module.exports = {
|
function SpeechServer (config) {
|
||||||
speak (something) {
|
this.mysqlConfig = config.mysql;
|
||||||
console.log(something);
|
this.siteConfig = config.siteConfig;
|
||||||
},
|
this.lbrynetConfig = config.lbrynetConfig;
|
||||||
start (config) {
|
this.db = require('./models')(this.mysqlConfig);
|
||||||
// parse config parameter
|
this.PORT = 3000;
|
||||||
const { mysqlConfig, siteConfig, lbrynetConfig } = config;
|
this.app = (function () {
|
||||||
|
|
||||||
// get models
|
|
||||||
const db = require('./models')(mysqlConfig);
|
|
||||||
|
|
||||||
// check for global config variables
|
|
||||||
require('./helpers/configVarCheck.js')(config);
|
|
||||||
|
|
||||||
// trust the proxy to get ip address for us
|
// trust the proxy to get ip address for us
|
||||||
app.enable('trust proxy');
|
app.enable('trust proxy');
|
||||||
|
|
||||||
|
@ -46,14 +38,14 @@ module.exports = {
|
||||||
// configure passport
|
// configure passport
|
||||||
passport.serializeUser(serializeSpeechUser);
|
passport.serializeUser(serializeSpeechUser);
|
||||||
passport.deserializeUser(deserializeSpeechUser);
|
passport.deserializeUser(deserializeSpeechUser);
|
||||||
const localSignupStrategy = require('./passport/local-signup.js')(db);
|
const localSignupStrategy = require('./passport/local-signup.js')(this.db);
|
||||||
const localLoginStrategy = require('./passport/local-login.js')(db);
|
const localLoginStrategy = require('./passport/local-login.js')(this.db);
|
||||||
passport.use('local-signup', localSignupStrategy);
|
passport.use('local-signup', localSignupStrategy);
|
||||||
passport.use('local-login', localLoginStrategy);
|
passport.use('local-login', localLoginStrategy);
|
||||||
// initialize passport
|
// initialize passport
|
||||||
app.use(cookieSession({
|
app.use(cookieSession({
|
||||||
name : 'session',
|
name : 'session',
|
||||||
keys : [siteConfig.session.sessionKey],
|
keys : [this.siteConfig.session.sessionKey],
|
||||||
maxAge: 24 * 60 * 60 * 1000, // i.e. 24 hours
|
maxAge: 24 * 60 * 60 * 1000, // i.e. 24 hours
|
||||||
}));
|
}));
|
||||||
app.use(passport.initialize());
|
app.use(passport.initialize());
|
||||||
|
@ -70,32 +62,39 @@ module.exports = {
|
||||||
// middleware to pass user info back to client (for handlebars access), if user is logged in
|
// middleware to pass user info back to client (for handlebars access), if user is logged in
|
||||||
app.use(populateLocalsDotUser); // note: I don't think I need this any more?
|
app.use(populateLocalsDotUser); // note: I don't think I need this any more?
|
||||||
|
|
||||||
// start the server
|
// set the routes on the app
|
||||||
module.exports.startServer(db, app, siteConfig, lbrynetConfig);
|
require('./routes/auth-routes.js')(app);
|
||||||
},
|
require('./routes/api-routes.js')(app);
|
||||||
startServer (db, app, siteConfig, lbrynetConfig) {
|
require('./routes/page-routes.js')(app);
|
||||||
db.sequelize
|
require('./routes/serve-routes.js')(app);
|
||||||
|
require('./routes/fallback-routes.js')(app);
|
||||||
|
|
||||||
|
return app;
|
||||||
|
}());
|
||||||
|
this.server = (function () {
|
||||||
|
const http = require('http');
|
||||||
|
return http.Server(this.app);
|
||||||
|
})();
|
||||||
|
this.speak = (something) => {
|
||||||
|
console.log(something);
|
||||||
|
};
|
||||||
|
this.start = () => {
|
||||||
|
// print config variables
|
||||||
|
require('./helpers/configVarCheck.js')(this.config);
|
||||||
|
this.db.sequelize
|
||||||
// sync sequelize
|
// sync sequelize
|
||||||
.sync()
|
.sync()
|
||||||
// require routes
|
|
||||||
.then(() => {
|
|
||||||
require('./routes/auth-routes.js')(app, siteConfig, lbrynetConfig);
|
|
||||||
require('./routes/api-routes.js')(app, siteConfig, lbrynetConfig);
|
|
||||||
require('./routes/page-routes.js')(app, siteConfig, lbrynetConfig);
|
|
||||||
require('./routes/serve-routes.js')(app, siteConfig, lbrynetConfig);
|
|
||||||
require('./routes/fallback-routes.js')(app, siteConfig, lbrynetConfig);
|
|
||||||
const http = require('http');
|
|
||||||
return http.Server(app);
|
|
||||||
})
|
|
||||||
// start the server
|
// start the server
|
||||||
.then(server => {
|
.then(() => {
|
||||||
server.listen(PORT, () => {
|
this.server.listen(this.PORT, () => {
|
||||||
logger.info('Trusting proxy?', app.get('trust proxy'));
|
logger.info('Trusting proxy?', this.app.get('trust proxy'));
|
||||||
logger.info(`Server is listening on PORT ${PORT}`);
|
logger.info(`Server is listening on PORT ${this.PORT}`);
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
logger.error(`Startup Error:`, error);
|
logger.error(`Startup Error:`, error);
|
||||||
});
|
});
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = SpeechServer;
|
||||||
|
|
Loading…
Add table
Reference in a new issue