diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-11-25 12:32:21 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-11-25 14:21:41 +0100 |
commit | 79530164b6c8f96a6ccf6d33b591d565f1575e67 (patch) | |
tree | f610a32ad5cb7151247af12dcc1534d4adb7de37 /server.js | |
parent | 8e124f999b8cf7d461ef7a923711d18edc69d84c (diff) | |
download | PeerTube-79530164b6c8f96a6ccf6d33b591d565f1575e67.tar.gz PeerTube-79530164b6c8f96a6ccf6d33b591d565f1575e67.tar.zst PeerTube-79530164b6c8f96a6ccf6d33b591d565f1575e67.zip |
Server: move static/client routes in controllers/
Diffstat (limited to 'server.js')
-rw-r--r-- | server.js | 33 |
1 files changed, 8 insertions, 25 deletions
@@ -2,7 +2,6 @@ | |||
2 | 2 | ||
3 | // ----------- Node modules ----------- | 3 | // ----------- Node modules ----------- |
4 | const bodyParser = require('body-parser') | 4 | const bodyParser = require('body-parser') |
5 | const cors = require('cors') | ||
6 | const express = require('express') | 5 | const express = require('express') |
7 | const expressValidator = require('express-validator') | 6 | const expressValidator = require('express-validator') |
8 | const http = require('http') | 7 | const http = require('http') |
@@ -66,35 +65,17 @@ app.use(expressValidator({ | |||
66 | 65 | ||
67 | // ----------- Views, routes and static files ----------- | 66 | // ----------- Views, routes and static files ----------- |
68 | 67 | ||
69 | // API routes | 68 | // API |
70 | const apiRoute = '/api/' + constants.API_VERSION | 69 | const apiRoute = '/api/' + constants.API_VERSION |
71 | app.use(apiRoute, routes.api) | 70 | app.use(apiRoute, routes.api) |
72 | app.use('/', routes.client) | ||
73 | |||
74 | // Static client files | ||
75 | // TODO: move in client | ||
76 | app.use('/client', express.static(path.join(__dirname, '/client/dist'), { maxAge: constants.STATIC_MAX_AGE })) | ||
77 | // 404 for static files not found | ||
78 | app.use('/client/*', function (req, res, next) { | ||
79 | res.sendStatus(404) | ||
80 | }) | ||
81 | |||
82 | const torrentsPhysicalPath = constants.CONFIG.STORAGE.TORRENTS_DIR | ||
83 | app.use(constants.STATIC_PATHS.TORRENTS, cors(), express.static(torrentsPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) | ||
84 | 71 | ||
85 | // Videos path for webseeding | 72 | // Client files |
86 | const videosPhysicalPath = constants.CONFIG.STORAGE.VIDEOS_DIR | 73 | app.use('/', routes.client) |
87 | app.use(constants.STATIC_PATHS.WEBSEED, cors(), express.static(videosPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) | ||
88 | |||
89 | // Thumbnails path for express | ||
90 | const thumbnailsPhysicalPath = constants.CONFIG.STORAGE.THUMBNAILS_DIR | ||
91 | app.use(constants.STATIC_PATHS.THUMBNAILS, express.static(thumbnailsPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) | ||
92 | 74 | ||
93 | // Video previews path for express | 75 | // Static files |
94 | const previewsPhysicalPath = constants.CONFIG.STORAGE.PREVIEWS_DIR | 76 | app.use('/', routes.static) |
95 | app.use(constants.STATIC_PATHS.PREVIEWS, express.static(previewsPhysicalPath, { maxAge: constants.STATIC_MAX_AGE })) | ||
96 | 77 | ||
97 | // Always serve index client page | 78 | // Always serve index client page (the client is a single page application, let it handle routing) |
98 | app.use('/*', function (req, res, next) { | 79 | app.use('/*', function (req, res, next) { |
99 | res.sendFile(path.join(__dirname, './client/dist/index.html')) | 80 | res.sendFile(path.join(__dirname, './client/dist/index.html')) |
100 | }) | 81 | }) |
@@ -136,6 +117,8 @@ app.use(function (err, req, res, next) { | |||
136 | res.sendStatus(err.status || 500) | 117 | res.sendStatus(err.status || 500) |
137 | }) | 118 | }) |
138 | 119 | ||
120 | // ----------- Run ----------- | ||
121 | |||
139 | const port = constants.CONFIG.LISTEN.PORT | 122 | const port = constants.CONFIG.LISTEN.PORT |
140 | installer.installApplication(function (err) { | 123 | installer.installApplication(function (err) { |
141 | if (err) throw err | 124 | if (err) throw err |