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