2017-05-24 20:07:43 +02:00
|
|
|
// load dependencies
|
2017-06-17 22:51:30 +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')
|
|
|
|
const ua = require('universal-analytics')
|
2017-06-13 20:00:50 +02:00
|
|
|
|
2017-06-17 22:51:30 +02:00
|
|
|
const googleAnalyticsId = config.get('AnalyticsConfig.googleId')
|
|
|
|
const hostedContentPath = config.get('Database.PublishUploadPath')
|
2017-05-25 07:50:02 +02:00
|
|
|
|
2017-05-24 20:07:43 +02:00
|
|
|
// set port
|
2017-06-17 22:51:30 +02:00
|
|
|
const PORT = 3000
|
2017-05-25 07:50:02 +02:00
|
|
|
// initialize express app
|
2017-06-17 22:51:30 +02:00
|
|
|
const app = express()
|
|
|
|
// require our models for syncing
|
|
|
|
const db = require('./models')
|
2017-05-25 07:50:02 +02:00
|
|
|
|
2017-05-24 20:07:43 +02:00
|
|
|
// make express look in the public directory for assets (css/js/img)
|
2017-06-17 22:51:30 +02:00
|
|
|
app.use(express.static(`${__dirname}/public`))
|
2017-05-25 07:50:02 +02:00
|
|
|
|
|
|
|
// configure express app
|
2017-06-17 22:51:30 +02:00
|
|
|
app.use(bodyParser.json()) // for parsing application/json
|
|
|
|
app.use(bodyParser.urlencoded({ extended: true })) // for parsing application/x-www-form-urlencoded
|
|
|
|
app.use(siofu.router)
|
2017-05-25 07:50:02 +02:00
|
|
|
|
2017-06-13 20:00:50 +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 () {
|
|
|
|
const googleApiKey = config.get('AnalyticsConfig.googleId')
|
|
|
|
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>`
|
|
|
|
)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
app.engine('handlebars', hbs.engine)
|
|
|
|
app.set('view engine', 'handlebars')
|
2017-06-10 01:46:57 +02:00
|
|
|
|
2017-05-25 07:50:02 +02:00
|
|
|
// require express routes
|
2017-06-17 22:51:30 +02:00
|
|
|
require('./routes/api-routes.js')(app)
|
|
|
|
require('./routes/show-routes.js')(app, ua, googleAnalyticsId)
|
|
|
|
require('./routes/serve-routes.js')(app, ua, googleAnalyticsId)
|
|
|
|
require('./routes/home-routes.js')(app)
|
2017-05-25 07:50:02 +02:00
|
|
|
|
2017-06-15 20:15:13 +02:00
|
|
|
// require socket.io routes
|
2017-06-17 22:51:30 +02:00
|
|
|
const http = require('./routes/sockets-routes.js')(app, siofu, hostedContentPath, ua, googleAnalyticsId)
|
2017-05-25 07:50:02 +02:00
|
|
|
|
2017-06-15 20:15:13 +02:00
|
|
|
// sync sequelize
|
|
|
|
// wrap the server in socket.io to intercept incoming sockets requests
|
2017-05-24 20:07:43 +02:00
|
|
|
// start server
|
2017-06-17 22:51:30 +02:00
|
|
|
db.sequelize.sync({}).then(() => {
|
|
|
|
http.listen(PORT, () => {
|
|
|
|
console.log(`Listening on PORT ${PORT}`)
|
|
|
|
})
|
|
|
|
})
|