// load dependencies const express = require('express'); const bodyParser = require('body-parser'); const siofu = require('socketio-file-upload'); const expressHandlebars = require('express-handlebars'); const Handlebars = require('handlebars'); const config = require('config'); const logger = require('winston'); const { getDownloadDirectory } = require('./helpers/lbryApi'); const PORT = 3000; // set port const app = express(); // create an Express application const db = require('./models'); // require our models for syncing // configure logging const logLevel = config.get('Logging.LogLevel'); require('./config/loggerSetup.js')(logger, logLevel); // trust the proxy to get ip address for us app.enable('trust proxy'); // add middleware app.use(express.static(`${__dirname}/public`)); // 'express.static' to serve static files from public directory app.use(express.static(`${__dirname}/public`)); // 'express.static' to serve static files from public directory app.use(bodyParser.json()); // 'body parser' for parsing application/json app.use(bodyParser.urlencoded({ extended: true })); // 'body parser' for parsing application/x-www-form-urlencoded app.use(siofu.router); // 'socketio-file-upload' router for uploading with socket.io app.use((req, res, next) => { // custom logging middleware to log all incomming http requests logger.verbose(`Request on ${req.originalUrl} from ${req.ip}`); next(); }); // configure handlebars & register it with express app const hbs = expressHandlebars.create({ defaultLayout: 'main', // sets the default layout handlebars : Handlebars, // includes basic handlebars for access to that library helpers : { // define any extra helpers you may need googleAnalytics () { const googleApiKey = config.get('AnalyticsConfig.GoogleId'); return new Handlebars.SafeString( `` ); }, addOpenGraph (title, url, source, mimeType) { if (mimeType === 'video/mp4') { return new Handlebars.SafeString( ` ` ); } else if (mimeType === 'image/gif') { return new Handlebars.SafeString( ` ` ); } else { return new Handlebars.SafeString( ` ` ); } }, addTwitterCard (source, mimeType) { if (mimeType === 'video/mp4') { return new Handlebars.SafeString( ` ` ); } else { return new Handlebars.SafeString( ` ` ); } }, ifConditional (varOne, operator, varTwo, options) { switch (operator) { case '===': return (varOne === varTwo) ? options.fn(this) : options.inverse(this); case '!==': return (varOne !== varTwo) ? options.fn(this) : options.inverse(this); case '<': return (varOne < varTwo) ? options.fn(this) : options.inverse(this); case '<=': return (varOne <= varTwo) ? options.fn(this) : options.inverse(this); case '>': return (varOne > varTwo) ? options.fn(this) : options.inverse(this); case '>=': return (varOne >= varTwo) ? options.fn(this) : options.inverse(this); case '&&': return (varOne && varTwo) ? options.fn(this) : options.inverse(this); case '||': return (varOne || varTwo) ? options.fn(this) : options.inverse(this); case 'mod3': return ((parseInt(varOne) % 3) === 0) ? options.fn(this) : options.inverse(this); default: return options.inverse(this); } }, }, }); app.engine('handlebars', hbs.engine); app.set('view engine', 'handlebars'); // start the server db.sequelize .sync() // sync sequelize .then(() => { // get the download directory from the daemon logger.info('Retrieving daemon download directory'); return getDownloadDirectory(); }) .then(hostedContentPath => { // add the hosted content folder at a static path app.use('/media', express.static(hostedContentPath)); // require routes & wrap in socket.io require('./routes/api-routes.js')(app, hostedContentPath); require('./routes/page-routes.js')(app); require('./routes/serve-routes.js')(app); require('./routes/home-routes.js')(app); return require('./routes/sockets-routes.js')(app, siofu, hostedContentPath); }) .then(server => { // start the server server.listen(PORT, () => { logger.info('Trusting proxy?', app.get('trust proxy')); logger.info(`Server is listening on PORT ${PORT}`); }); }) .catch((error) => { logger.error('Startup Error >>', error); });