X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server.js;h=f4ca539078e86205a90b91ba33339c231d24ac84;hb=b769007f733769d3afe2d29a3eb23e2e7693f301;hp=d866f628c1e439146f91d18aaccb39efa30e47b0;hpb=9f540774b1fa2d9035a8b19dd1901247b112ead5;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server.js b/server.js index d866f628c..f4ca53907 100644 --- a/server.js +++ b/server.js @@ -2,7 +2,6 @@ // ----------- Node modules ----------- const bodyParser = require('body-parser') -const cors = require('cors') const express = require('express') const expressValidator = require('express-validator') const http = require('http') @@ -17,31 +16,30 @@ process.title = 'peertube' const app = express() // ----------- Database ----------- -const config = require('config') const constants = require('./server/initializers/constants') -const database = require('./server/initializers/database') const logger = require('./server/helpers/logger') - -database.connect() +// Initialize database and models +const db = require('./server/initializers/database') +db.init() // ----------- Checker ----------- const checker = require('./server/initializers/checker') -const miss = checker.checkConfig() -if (miss.length !== 0) { - throw new Error('Miss some configurations keys : ' + miss) +const missed = checker.checkMissedConfig() +if (missed.length !== 0) { + throw new Error('Miss some configurations keys : ' + missed) +} + +const errorMessage = checker.checkConfig() +if (errorMessage !== null) { + throw new Error(errorMessage) } // ----------- PeerTube modules ----------- const customValidators = require('./server/helpers/custom-validators') const installer = require('./server/initializers/installer') const migrator = require('./server/initializers/migrator') -const mongoose = require('mongoose') const routes = require('./server/controllers') -const Request = mongoose.model('Request') - -// Get configurations -const port = config.get('listen.port') // ----------- Command line ----------- @@ -65,31 +63,19 @@ app.use(expressValidator({ // ----------- Views, routes and static files ----------- -// API routes +// API const apiRoute = '/api/' + constants.API_VERSION app.use(apiRoute, routes.api) -// Static files -app.use('/client', express.static(path.join(__dirname, '/client/dist'), { maxAge: constants.STATIC_MAX_AGE })) -// 404 for static files not found -app.use('/client/*', function (req, res, next) { - res.sendStatus(404) -}) +// Client files +app.use('/', routes.client) -const torrentsPhysicalPath = path.join(__dirname, config.get('storage.torrents')) -app.use(constants.STATIC_PATHS.TORRENTS, cors(), express.static(torrentsPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) - -// Videos path for webseeding -const videosPhysicalPath = path.join(__dirname, config.get('storage.videos')) -app.use(constants.STATIC_PATHS.WEBSEED, cors(), express.static(videosPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) - -// Thumbnails path for express -const thumbnailsPhysicalPath = path.join(__dirname, config.get('storage.thumbnails')) -app.use(constants.STATIC_PATHS.THUMBNAILS, express.static(thumbnailsPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) +// Static files +app.use('/', routes.static) -// Client application +// Always serve index client page (the client is a single page application, let it handle routing) app.use('/*', function (req, res, next) { - res.sendFile(path.join(__dirname, 'client/dist/index.html')) + res.sendFile(path.join(__dirname, './client/dist/index.html')) }) // ----------- Tracker ----------- @@ -129,6 +115,9 @@ app.use(function (err, req, res, next) { res.sendStatus(err.status || 500) }) +// ----------- Run ----------- + +const port = constants.CONFIG.LISTEN.PORT installer.installApplication(function (err) { if (err) throw err @@ -139,10 +128,11 @@ installer.installApplication(function (err) { // ----------- Make the server listening ----------- server.listen(port, function () { // Activate the pool requests - Request.activate() + db.Request.activate() - logger.info('Seeded all the videos') logger.info('Server listening on port %d', port) + logger.info('Webserver: %s', constants.CONFIG.WEBSERVER.URL) + app.emit('ready') }) })