X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server.js;h=33d399786da00edd0f787ee8cba3b7819ed09ba9;hb=86e83939869976e9b4dfa6dc9d3785a284bd598c;hp=d3d3661add49ceec6ed25750ba999a065beaacb9;hpb=830bcd0f82c16b8b5f1259150a6d541a210693eb;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server.js b/server.js index d3d3661ad..33d399786 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') @@ -18,10 +17,10 @@ const app = express() // ----------- Database ----------- 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(onDatabaseInitDone) // ----------- Checker ----------- const checker = require('./server/initializers/checker') @@ -38,11 +37,10 @@ if (errorMessage !== null) { // ----------- PeerTube modules ----------- const customValidators = require('./server/helpers/custom-validators') +const friends = require('./server/lib/friends') 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') // ----------- Command line ----------- @@ -60,36 +58,24 @@ app.use(expressValidator({ customValidators.misc, customValidators.pods, customValidators.users, - customValidators.videos + customValidators.videos, + customValidators.remote.videos ) })) // ----------- Views, routes and static files ----------- -// API routes +// API const apiRoute = '/api/' + constants.API_VERSION app.use(apiRoute, routes.api) + +// Client files app.use('/', routes.client) // 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) -}) - -const torrentsPhysicalPath = constants.CONFIG.STORAGE.TORRENTS_DIR -app.use(constants.STATIC_PATHS.TORRENTS, cors(), express.static(torrentsPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) - -// Videos path for webseeding -const videosPhysicalPath = constants.CONFIG.STORAGE.VIDEOS_DIR -app.use(constants.STATIC_PATHS.WEBSEED, cors(), express.static(videosPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) +app.use('/', routes.static) -// Thumbnails path for express -const thumbnailsPhysicalPath = constants.CONFIG.STORAGE.THUMBNAILS_DIR -app.use(constants.STATIC_PATHS.THUMBNAILS, express.static(thumbnailsPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) - -// Always serve index client page +// 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')) }) @@ -131,25 +117,29 @@ app.use(function (err, req, res, next) { res.sendStatus(err.status || 500) }) -const port = constants.CONFIG.LISTEN.PORT -installer.installApplication(function (err) { - if (err) throw err +// ----------- Run ----------- - // Run the migration scripts if needed +function onDatabaseInitDone () { + const port = constants.CONFIG.LISTEN.PORT + // Run the migration scripts if needed migrator.migrate(function (err) { if (err) throw err - // ----------- Make the server listening ----------- - server.listen(port, function () { - // Activate the pool requests - Request.activate() + installer.installApplication(function (err) { + if (err) throw err + + // ----------- Make the server listening ----------- + server.listen(port, function () { + // Activate the communication with friends + friends.activate() - logger.info('Server listening on port %d', port) - logger.info('Webserver: %s', constants.CONFIG.WEBSERVER.URL) + logger.info('Server listening on port %d', port) + logger.info('Webserver: %s', constants.CONFIG.WEBSERVER.URL) - app.emit('ready') + app.emit('ready') + }) }) }) -}) +} module.exports = app