2017-05-24 20:07:43 +02:00
|
|
|
// load dependencies
|
2017-06-19 18:37:35 +02:00
|
|
|
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');
|
2017-07-17 22:54:50 +02:00
|
|
|
const logger = require('winston');
|
2017-08-03 02:13:02 +02:00
|
|
|
const { getDownloadDirectory } = require('./helpers/lbryApi');
|
2017-05-25 07:50:02 +02:00
|
|
|
|
2017-07-18 18:59:40 +02:00
|
|
|
const PORT = 3000; // set port
|
|
|
|
const app = express(); // create an Express application
|
|
|
|
const db = require('./models'); // require our models for syncing
|
|
|
|
|
2017-06-19 22:10:06 +02:00
|
|
|
// configure logging
|
|
|
|
const logLevel = config.get('Logging.LogLevel');
|
2017-09-14 00:41:52 +02:00
|
|
|
require('./config/loggerConfig.js')(logger, logLevel);
|
|
|
|
require('./config/slackLoggerConfig.js')(logger);
|
2017-06-19 22:10:06 +02:00
|
|
|
|
2017-07-27 23:18:55 +02:00
|
|
|
// 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
|
2017-07-17 22:54:50 +02:00
|
|
|
logger.verbose(`Request on ${req.originalUrl} from ${req.ip}`);
|
2017-07-06 22:37:03 +02:00
|
|
|
next();
|
|
|
|
});
|
2017-05-25 07:50:02 +02:00
|
|
|
|
2017-07-18 18:59:40 +02:00
|
|
|
// configure handlebars & register it with express app
|
2017-06-17 22:51:30 +02:00
|
|
|
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 () {
|
2017-06-26 19:43:35 +02:00
|
|
|
const googleApiKey = config.get('AnalyticsConfig.GoogleId');
|
2017-06-17 22:51:30 +02:00
|
|
|
return new Handlebars.SafeString(
|
|
|
|
`<script>
|
|
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', '${googleApiKey}', 'auto');
|
|
|
|
ga('send', 'pageview');
|
|
|
|
</script>`
|
2017-06-19 18:37:35 +02:00
|
|
|
);
|
2017-06-17 22:51:30 +02:00
|
|
|
},
|
2017-09-11 21:45:07 +02:00
|
|
|
addOpenGraph (title, mimeType, showUrl, source, description, thumbnail) {
|
2017-08-08 20:32:19 +02:00
|
|
|
let basicTags = `<meta property="og:title" content="${title}">
|
2017-08-09 01:37:30 +02:00
|
|
|
<meta property="og:url" content="${showUrl}" >
|
2017-08-08 20:32:19 +02:00
|
|
|
<meta property="og:site_name" content="Spee.ch" >
|
2017-08-21 02:48:40 +02:00
|
|
|
<meta property="og:description" content="${description}">`;
|
2017-08-08 00:22:09 +02:00
|
|
|
if (mimeType === 'video/mp4') {
|
|
|
|
return new Handlebars.SafeString(
|
2017-09-11 21:45:07 +02:00
|
|
|
`${basicTags} <meta property="og:image" content="${thumbnail}" >
|
2017-08-08 20:32:19 +02:00
|
|
|
<meta property="og:image:type" content="image/png" >
|
|
|
|
<meta property="og:image:width" content="600" >
|
|
|
|
<meta property="og:image:height" content="315" >
|
|
|
|
<meta property="og:type" content="video" >
|
|
|
|
<meta property="og:video" content="${source}" >
|
|
|
|
<meta property="og:video:secure_url" content="${source}" >
|
|
|
|
<meta property="og:video:type" content="${mimeType}" >`
|
2017-08-07 22:04:08 +02:00
|
|
|
);
|
|
|
|
} else if (mimeType === 'image/gif') {
|
2017-08-07 20:48:43 +02:00
|
|
|
return new Handlebars.SafeString(
|
2017-08-08 20:32:19 +02:00
|
|
|
`${basicTags} <meta property="og:image" content="${source}" >
|
|
|
|
<meta property="og:image:type" content="${mimeType}" >
|
|
|
|
<meta property="og:image:width" content="600" >
|
|
|
|
<meta property="og:image:height" content="315" >
|
|
|
|
<meta property="og:type" content="video.other" >`
|
2017-08-07 20:48:43 +02:00
|
|
|
);
|
2017-08-07 22:04:08 +02:00
|
|
|
} else {
|
2017-08-07 20:48:43 +02:00
|
|
|
return new Handlebars.SafeString(
|
2017-08-08 20:32:19 +02:00
|
|
|
`${basicTags} <meta property="og:image" content="${source}" >
|
|
|
|
<meta property="og:image:type" content="${mimeType}" >
|
|
|
|
<meta property="og:image:width" content="600" >
|
|
|
|
<meta property="og:image:height" content="315" >
|
|
|
|
<meta property="og:type" content="article" >`
|
2017-08-07 20:48:43 +02:00
|
|
|
);
|
|
|
|
}
|
2017-08-05 02:41:06 +02:00
|
|
|
},
|
2017-08-08 20:01:01 +02:00
|
|
|
addTwitterCard (mimeType, source, embedUrl, directFileUrl) {
|
2017-08-08 20:32:19 +02:00
|
|
|
let basicTwitterTags = `<meta name="twitter:site" content="@speechch" >`;
|
2017-08-07 22:57:50 +02:00
|
|
|
if (mimeType === 'video/mp4') {
|
2017-08-05 03:01:05 +02:00
|
|
|
return new Handlebars.SafeString(
|
2017-08-08 20:32:19 +02:00
|
|
|
`${basicTwitterTags} <meta name="twitter:card" content="player" >
|
2017-08-08 20:01:01 +02:00
|
|
|
<meta name="twitter:player" content="${embedUrl}>
|
2017-08-08 20:32:19 +02:00
|
|
|
<meta name="twitter:player:width" content="600" >
|
2017-08-08 20:37:34 +02:00
|
|
|
<meta name="twitter:text:player_width" content="600" >
|
2017-08-09 00:49:36 +02:00
|
|
|
<meta name="twitter:player:height" content="337" >
|
2017-08-08 21:39:22 +02:00
|
|
|
<meta name="twitter:player:stream" content="${directFileUrl}" >
|
|
|
|
<meta name="twitter:player:stream:content_type" content="video/mp4" >
|
2017-08-05 03:01:05 +02:00
|
|
|
`
|
|
|
|
);
|
2017-08-07 22:57:50 +02:00
|
|
|
} else {
|
|
|
|
return new Handlebars.SafeString(
|
2017-08-08 20:32:19 +02:00
|
|
|
`${basicTwitterTags} <meta name="twitter:card" content="summary_large_image" >`
|
2017-08-07 22:57:50 +02:00
|
|
|
);
|
2017-08-05 03:01:05 +02:00
|
|
|
}
|
|
|
|
},
|
2017-07-07 02:38:57 +02:00
|
|
|
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);
|
2017-07-21 22:40:01 +02:00
|
|
|
case 'mod3':
|
|
|
|
return ((parseInt(varOne) % 3) === 0) ? options.fn(this) : options.inverse(this);
|
2017-07-07 02:38:57 +02:00
|
|
|
default:
|
|
|
|
return options.inverse(this);
|
|
|
|
}
|
|
|
|
},
|
2017-06-17 22:51:30 +02:00
|
|
|
},
|
2017-06-19 18:37:35 +02:00
|
|
|
});
|
|
|
|
app.engine('handlebars', hbs.engine);
|
|
|
|
app.set('view engine', 'handlebars');
|
2017-06-10 01:46:57 +02:00
|
|
|
|
2017-07-18 18:52:18 +02:00
|
|
|
// start the server
|
|
|
|
db.sequelize
|
|
|
|
.sync() // sync sequelize
|
|
|
|
.then(() => { // get the download directory from the daemon
|
|
|
|
logger.info('Retrieving daemon download directory');
|
|
|
|
return getDownloadDirectory();
|
|
|
|
})
|
2017-07-27 23:18:55 +02:00
|
|
|
.then(hostedContentPath => {
|
|
|
|
// add the hosted content folder at a static path
|
|
|
|
app.use('/media', express.static(hostedContentPath));
|
|
|
|
// require routes & wrap in socket.io
|
2017-07-18 18:52:18 +02:00
|
|
|
require('./routes/api-routes.js')(app, hostedContentPath);
|
2017-08-01 02:02:39 +02:00
|
|
|
require('./routes/page-routes.js')(app);
|
2017-07-18 18:52:18 +02:00
|
|
|
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
|
2017-07-12 01:55:03 +02:00
|
|
|
server.listen(PORT, () => {
|
2017-07-17 22:54:50 +02:00
|
|
|
logger.info('Trusting proxy?', app.get('trust proxy'));
|
|
|
|
logger.info(`Server is listening on PORT ${PORT}`);
|
2017-07-12 01:55:03 +02:00
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
2017-09-14 00:41:52 +02:00
|
|
|
logger.error('Startup Error', error);
|
2017-06-19 18:37:35 +02:00
|
|
|
});
|