X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server.js;h=16e27e852cba100efa20ee9614f82a53599a100a;hb=693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c;hp=e5bb5d1a4478f1b750950c1d8e09651a5e1f5df6;hpb=a2647f7ac6caf1cb93483a1bad54c648b630c2ee;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server.js b/server.js index e5bb5d1a4..16e27e852 100644 --- a/server.js +++ b/server.js @@ -26,9 +26,14 @@ database.connect() // ----------- 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 ----------- @@ -64,28 +69,34 @@ app.use(expressValidator({ // API routes const apiRoute = '/api/' + constants.API_VERSION app.use(apiRoute, routes.api) +app.use('/', routes.client) -// Static files +// Static client files +// TODO: move in client 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 = path.join(__dirname, constants.CONFIG.STORAGE.TORRENTS_DIR) +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 = path.join(__dirname, constants.CONFIG.STORAGE.VIDEOS_DIR) +const videosPhysicalPath = constants.CONFIG.STORAGE.VIDEOS_DIR app.use(constants.STATIC_PATHS.WEBSEED, cors(), express.static(videosPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) // Thumbnails path for express -const thumbnailsPhysicalPath = path.join(__dirname, constants.CONFIG.STORAGE.THUMBNAILS_DIR) +const thumbnailsPhysicalPath = constants.CONFIG.STORAGE.THUMBNAILS_DIR app.use(constants.STATIC_PATHS.THUMBNAILS, express.static(thumbnailsPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) -// Client application +// Video previews path for express +const previewsPhysicalPath = constants.CONFIG.STORAGE.PREVIEWS_DIR +app.use(constants.STATIC_PATHS.PREVIEWS, express.static(previewsPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) + +// Always serve index client page 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 ----------- @@ -139,6 +150,8 @@ installer.installApplication(function (err) { Request.activate() logger.info('Server listening on port %d', port) + logger.info('Webserver: %s', constants.CONFIG.WEBSERVER.URL) + app.emit('ready') }) })