]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server.js
Server: remove encryption when seending requests to other pods
[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 database = require('./server/initializers/database')
21const logger = require('./server/helpers/logger')
22
23database.connect()
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 installer = require('./server/initializers/installer')
41const migrator = require('./server/initializers/migrator')
42const mongoose = require('mongoose')
43const routes = require('./server/controllers')
44const Request = mongoose.model('Request')
45
46// ----------- Command line -----------
47
48// ----------- App -----------
49
50// For the logger
51app.use(morgan('combined', { stream: logger.stream }))
52// For body requests
53app.use(bodyParser.json({ limit: '500kb' }))
54app.use(bodyParser.urlencoded({ extended: false }))
55// Validate some params for the API
56app.use(expressValidator({
57 customValidators: Object.assign(
58 {},
59 customValidators.misc,
60 customValidators.pods,
61 customValidators.users,
62 customValidators.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
122const port = constants.CONFIG.LISTEN.PORT
123installer.installApplication(function (err) {
124 if (err) throw err
125
126 // Run the migration scripts if needed
127 migrator.migrate(function (err) {
128 if (err) throw err
129
130 // ----------- Make the server listening -----------
131 server.listen(port, function () {
132 // Activate the pool requests
133 Request.activate()
134
135 logger.info('Server listening on port %d', port)
136 logger.info('Webserver: %s', constants.CONFIG.WEBSERVER.URL)
137
138 app.emit('ready')
139 })
140 })
141})
142
143module.exports = app