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