]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server.js
reqValidators --> validators
[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
C
32// ----------- PeerTube modules -----------
33const customValidators = require('./server/helpers/customValidators')
34const installer = require('./server/initializers/installer')
35const mongoose = require('mongoose')
13ce1d01
C
36const routes = require('./server/controllers')
37const utils = require('./server/helpers/utils')
13ce1d01 38const webtorrent = require('./server/lib/webtorrent')
00057e85 39const Request = mongoose.model('Request')
907e9510 40const Video = mongoose.model('Video')
a030a9b2
C
41
42// Get configurations
13ce1d01 43const port = config.get('listen.port')
a030a9b2 44
a030a9b2
C
45// ----------- Command line -----------
46
47// ----------- App -----------
48
49// For the logger
50app.use(morgan('combined', { stream: logger.stream }))
51// For body requests
52app.use(bodyParser.json())
53app.use(bodyParser.urlencoded({ extended: false }))
54// Validate some params for the API
55app.use(expressValidator({
56 customValidators: customValidators
57}))
58
59// ----------- Views, routes and static files -----------
60
a030a9b2
C
61// Catch sefaults
62require('segfault-handler').registerHandler()
63
a030a9b2 64// API routes
bc503c2a
C
65const apiRoute = '/api/' + constants.API_VERSION
66app.use(apiRoute, routes.api)
a030a9b2 67
bd324a66 68// Static files
4a6995be 69app.use('/client', express.static(path.join(__dirname, '/client/dist'), { maxAge: 0 }))
bd324a66 70// 404 for static files not found
41a2aee3 71app.use('/client/*', function (req, res, next) {
bd324a66
C
72 res.sendStatus(404)
73})
74
cbe2f7c3 75// Thumbnails path for express
bc503c2a
C
76const thumbnailsPhysicalPath = path.join(__dirname, config.get('storage.thumbnails'))
77app.use(constants.THUMBNAILS_STATIC_PATH, express.static(thumbnailsPhysicalPath, { maxAge: 0 }))
cbe2f7c3 78
6f4e2522
C
79// Client application
80app.use('/*', function (req, res, next) {
4a6995be 81 res.sendFile(path.join(__dirname, 'client/dist/index.html'))
6f4e2522 82})
a030a9b2
C
83
84// ----------- Tracker -----------
85
13ce1d01 86const trackerServer = new TrackerServer({
a030a9b2
C
87 http: false,
88 udp: false,
89 ws: false,
90 dht: false
91})
92
93trackerServer.on('error', function (err) {
94 logger.error(err)
95})
96
97trackerServer.on('warning', function (err) {
98 logger.error(err)
99})
100
13ce1d01
C
101const server = http.createServer(app)
102const wss = new WebSocketServer({server: server, path: '/tracker/socket'})
a030a9b2
C
103wss.on('connection', function (ws) {
104 trackerServer.onWebSocketConnection(ws)
105})
106
107// ----------- Errors -----------
108
109// Catch 404 and forward to error handler
110app.use(function (req, res, next) {
13ce1d01 111 const err = new Error('Not Found')
a030a9b2
C
112 err.status = 404
113 next(err)
114})
115
6f4e2522
C
116app.use(function (err, req, res, next) {
117 logger.error(err)
118 res.sendStatus(err.status || 500)
119})
a030a9b2 120
37dc07b2 121installer.installApplication(function (err) {
9457bf88 122 if (err) throw err
9457bf88 123
a030a9b2
C
124 // Create/activate the webtorrent module
125 webtorrent.create(function () {
126 function cleanForExit () {
127 utils.cleanForExit(webtorrent.app)
128 }
129
130 function exitGracefullyOnSignal () {
ac2f99eb 131 process.exit(-1)
a030a9b2
C
132 }
133
134 process.on('exit', cleanForExit)
135 process.on('SIGINT', exitGracefullyOnSignal)
136 process.on('SIGTERM', exitGracefullyOnSignal)
137
138 // ----------- Make the server listening -----------
139 server.listen(port, function () {
140 // Activate the pool requests
00057e85 141 Request.activate()
a030a9b2 142
907e9510
C
143 Video.seedAllExisting(function (err) {
144 if (err) throw err
145
a030a9b2
C
146 logger.info('Seeded all the videos')
147 logger.info('Server listening on port %d', port)
148 app.emit('ready')
907e9510 149 })
8c308c2b
C
150 })
151 })
a030a9b2 152})
8c308c2b 153
a030a9b2 154module.exports = app