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