]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server.js
Remove Node 4 support
[github/Chocobozzz/PeerTube.git] / server.js
... / ...
CommitLineData
1'use strict'
2
3// ----------- Node modules -----------
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
12
13process.title = 'peertube'
14
15// Create our main app
16const app = express()
17
18// ----------- Database -----------
19const constants = require('./server/initializers/constants')
20const logger = require('./server/helpers/logger')
21// Initialize database and models
22const db = require('./server/initializers/database')
23db.init(onDatabaseInitDone)
24
25// ----------- Checker -----------
26const checker = require('./server/initializers/checker')
27
28const missed = checker.checkMissedConfig()
29if (missed.length !== 0) {
30 throw new Error('Miss some configurations keys : ' + missed)
31}
32
33const errorMessage = checker.checkConfig()
34if (errorMessage !== null) {
35 throw new Error(errorMessage)
36}
37
38// ----------- PeerTube modules -----------
39const customValidators = require('./server/helpers/custom-validators')
40const friends = require('./server/lib/friends')
41const installer = require('./server/initializers/installer')
42const migrator = require('./server/initializers/migrator')
43const routes = require('./server/controllers')
44
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({ limit: '500kb' }))
53app.use(bodyParser.urlencoded({ extended: false }))
54// Validate some params for the API
55app.use(expressValidator({
56 customValidators: Object.assign(
57 {},
58 customValidators.misc,
59 customValidators.pods,
60 customValidators.users,
61 customValidators.videos,
62 customValidators.remote.videos
63 )
64}))
65
66// ----------- Views, routes and static files -----------
67
68// API
69const apiRoute = '/api/' + constants.API_VERSION
70app.use(apiRoute, routes.api)
71
72// Client files
73app.use('/', routes.client)
74
75// Static files
76app.use('/', routes.static)
77
78// Always serve index client page (the client is a single page application, let it handle routing)
79app.use('/*', function (req, res, next) {
80 res.sendFile(path.join(__dirname, './client/dist/index.html'))
81})
82
83// ----------- Tracker -----------
84
85const trackerServer = new TrackerServer({
86 http: false,
87 udp: false,
88 ws: false,
89 dht: false
90})
91
92trackerServer.on('error', function (err) {
93 logger.error(err)
94})
95
96trackerServer.on('warning', function (err) {
97 logger.error(err)
98})
99
100const server = http.createServer(app)
101const wss = new WebSocketServer({server: server, path: '/tracker/socket'})
102wss.on('connection', function (ws) {
103 trackerServer.onWebSocketConnection(ws)
104})
105
106// ----------- Errors -----------
107
108// Catch 404 and forward to error handler
109app.use(function (req, res, next) {
110 const err = new Error('Not Found')
111 err.status = 404
112 next(err)
113})
114
115app.use(function (err, req, res, next) {
116 logger.error(err)
117 res.sendStatus(err.status || 500)
118})
119
120// ----------- Run -----------
121
122function onDatabaseInitDone () {
123 const port = constants.CONFIG.LISTEN.PORT
124 // Run the migration scripts if needed
125 migrator.migrate(function (err) {
126 if (err) throw err
127
128 installer.installApplication(function (err) {
129 if (err) throw err
130
131 // ----------- Make the server listening -----------
132 server.listen(port, function () {
133 // Activate the communication with friends
134 friends.activate()
135
136 logger.info('Server listening on port %d', port)
137 logger.info('Webserver: %s', constants.CONFIG.WEBSERVER.URL)
138
139 app.emit('ready')
140 })
141 })
142 })
143}
144
145module.exports = app