]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server.js
Server: fix remaining milli seconds before the next requests feature
[github/Chocobozzz/PeerTube.git] / server.js
1 'use strict'
2
3 // ----------- Node modules -----------
4 const bodyParser = require('body-parser')
5 const express = require('express')
6 const expressValidator = require('express-validator')
7 const http = require('http')
8 const morgan = require('morgan')
9 const path = require('path')
10 const TrackerServer = require('bittorrent-tracker').Server
11 const WebSocketServer = require('ws').Server
12
13 // Create our main app
14 const app = express()
15
16 // ----------- Database -----------
17 const config = require('config')
18 const constants = require('./server/initializers/constants')
19 const database = require('./server/initializers/database')
20 const logger = require('./server/helpers/logger')
21
22 database.connect()
23
24 // ----------- Checker -----------
25 const checker = require('./server/initializers/checker')
26
27 const miss = checker.checkConfig()
28 if (miss.length !== 0) {
29 throw new Error('Miss some configurations keys : ' + miss)
30 }
31
32 // ----------- PeerTube modules -----------
33 const customValidators = require('./server/helpers/custom-validators')
34 const installer = require('./server/initializers/installer')
35 const migrator = require('./server/initializers/migrator')
36 const mongoose = require('mongoose')
37 const routes = require('./server/controllers')
38 const utils = require('./server/helpers/utils')
39 const webtorrent = require('./server/lib/webtorrent')
40 const Request = mongoose.model('Request')
41 const Video = mongoose.model('Video')
42
43 // Get configurations
44 const port = config.get('listen.port')
45
46 // ----------- Command line -----------
47
48 // ----------- App -----------
49
50 // For the logger
51 app.use(morgan('combined', { stream: logger.stream }))
52 // For body requests
53 app.use(bodyParser.json({ limit: '500kb' }))
54 app.use(bodyParser.urlencoded({ extended: false }))
55 // Validate some params for the API
56 app.use(expressValidator({
57 customValidators: Object.assign(
58 {},
59 customValidators.misc,
60 customValidators.pods,
61 customValidators.users,
62 customValidators.videos
63 )
64 }))
65
66 // ----------- Views, routes and static files -----------
67
68 // API routes
69 const apiRoute = '/api/' + constants.API_VERSION
70 app.use(apiRoute, routes.api)
71
72 // Static files
73 app.use('/client', express.static(path.join(__dirname, '/client/dist'), { maxAge: 0 }))
74 // 404 for static files not found
75 app.use('/client/*', function (req, res, next) {
76 res.sendStatus(404)
77 })
78
79 // Thumbnails path for express
80 const thumbnailsPhysicalPath = path.join(__dirname, config.get('storage.thumbnails'))
81 app.use(constants.THUMBNAILS_STATIC_PATH, express.static(thumbnailsPhysicalPath, { maxAge: 0 }))
82
83 // Client application
84 app.use('/*', function (req, res, next) {
85 res.sendFile(path.join(__dirname, 'client/dist/index.html'))
86 })
87
88 // ----------- Tracker -----------
89
90 const trackerServer = new TrackerServer({
91 http: false,
92 udp: false,
93 ws: false,
94 dht: false
95 })
96
97 trackerServer.on('error', function (err) {
98 logger.error(err)
99 })
100
101 trackerServer.on('warning', function (err) {
102 logger.error(err)
103 })
104
105 const server = http.createServer(app)
106 const wss = new WebSocketServer({server: server, path: '/tracker/socket'})
107 wss.on('connection', function (ws) {
108 trackerServer.onWebSocketConnection(ws)
109 })
110
111 // ----------- Errors -----------
112
113 // Catch 404 and forward to error handler
114 app.use(function (req, res, next) {
115 const err = new Error('Not Found')
116 err.status = 404
117 next(err)
118 })
119
120 app.use(function (err, req, res, next) {
121 logger.error(err)
122 res.sendStatus(err.status || 500)
123 })
124
125 installer.installApplication(function (err) {
126 if (err) throw err
127
128 // Run the migration scripts if needed
129 migrator.migrate(function (err) {
130 if (err) throw err
131
132 // Create/activate the webtorrent module
133 webtorrent.create(function () {
134 function cleanForExit () {
135 utils.cleanForExit(webtorrent.app)
136 }
137
138 function exitGracefullyOnSignal () {
139 process.exit(-1)
140 }
141
142 process.on('exit', cleanForExit)
143 process.on('SIGINT', exitGracefullyOnSignal)
144 process.on('SIGTERM', exitGracefullyOnSignal)
145
146 // ----------- Make the server listening -----------
147 server.listen(port, function () {
148 // Activate the pool requests
149 Request.activate()
150
151 Video.seedAllExisting(function (err) {
152 if (err) throw err
153
154 logger.info('Seeded all the videos')
155 logger.info('Server listening on port %d', port)
156 app.emit('ready')
157 })
158 })
159 })
160 })
161 })
162
163 module.exports = app