]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server.js
Remove Node 4 support
[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 12
9f540774
C
13process.title = 'peertube'
14
a030a9b2 15// Create our main app
13ce1d01 16const app = express()
a030a9b2 17
00057e85 18// ----------- Database -----------
13ce1d01 19const constants = require('./server/initializers/constants')
13ce1d01 20const logger = require('./server/helpers/logger')
feb4bdfd
C
21// Initialize database and models
22const db = require('./server/initializers/database')
5804c0db 23db.init(onDatabaseInitDone)
00057e85 24
69b0a27c
C
25// ----------- Checker -----------
26const checker = require('./server/initializers/checker')
27
b65c27aa
C
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)
69b0a27c
C
36}
37
00057e85 38// ----------- PeerTube modules -----------
5f698b82 39const customValidators = require('./server/helpers/custom-validators')
c1a7ab7f 40const friends = require('./server/lib/friends')
00057e85 41const installer = require('./server/initializers/installer')
00d6b0dd 42const migrator = require('./server/initializers/migrator')
13ce1d01 43const routes = require('./server/controllers')
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
def16d33 52app.use(bodyParser.json({ limit: '500kb' }))
a030a9b2
C
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,
55fa55a9
C
61 customValidators.videos,
62 customValidators.remote.videos
d57d6f26 63 )
a030a9b2
C
64}))
65
66// ----------- Views, routes and static files -----------
67
79530164 68// API
bc503c2a
C
69const apiRoute = '/api/' + constants.API_VERSION
70app.use(apiRoute, routes.api)
052937db 71
79530164
C
72// Client files
73app.use('/', routes.client)
cbe2f7c3 74
79530164
C
75// Static files
76app.use('/', routes.static)
6a94a109 77
79530164 78// Always serve index client page (the client is a single page application, let it handle routing)
6f4e2522 79app.use('/*', function (req, res, next) {
830bcd0f 80 res.sendFile(path.join(__dirname, './client/dist/index.html'))
6f4e2522 81})
a030a9b2
C
82
83// ----------- Tracker -----------
84
13ce1d01 85const trackerServer = new TrackerServer({
a030a9b2
C
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
13ce1d01
C
100const server = http.createServer(app)
101const wss = new WebSocketServer({server: server, path: '/tracker/socket'})
a030a9b2
C
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) {
13ce1d01 110 const err = new Error('Not Found')
a030a9b2
C
111 err.status = 404
112 next(err)
113})
114
6f4e2522
C
115app.use(function (err, req, res, next) {
116 logger.error(err)
117 res.sendStatus(err.status || 500)
118})
a030a9b2 119
79530164
C
120// ----------- Run -----------
121
5804c0db
C
122function onDatabaseInitDone () {
123 const port = constants.CONFIG.LISTEN.PORT
124 // Run the migration scripts if needed
00d6b0dd
C
125 migrator.migrate(function (err) {
126 if (err) throw err
a030a9b2 127
5804c0db
C
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()
052937db 135
5804c0db
C
136 logger.info('Server listening on port %d', port)
137 logger.info('Webserver: %s', constants.CONFIG.WEBSERVER.URL)
763381de 138
5804c0db
C
139 app.emit('ready')
140 })
8c308c2b
C
141 })
142 })
5804c0db 143}
8c308c2b 144
a030a9b2 145module.exports = app