]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server.js
Move tags in another table
[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')
00057e85 23
69b0a27c
C
24// ----------- Checker -----------
25const checker = require('./server/initializers/checker')
26
b65c27aa
C
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)
69b0a27c
C
35}
36
00057e85 37// ----------- PeerTube modules -----------
5f698b82 38const customValidators = require('./server/helpers/custom-validators')
00057e85 39const installer = require('./server/initializers/installer')
00d6b0dd 40const migrator = require('./server/initializers/migrator')
13ce1d01 41const routes = require('./server/controllers')
a030a9b2 42
a030a9b2
C
43// ----------- Command line -----------
44
45// ----------- App -----------
46
47// For the logger
48app.use(morgan('combined', { stream: logger.stream }))
49// For body requests
def16d33 50app.use(bodyParser.json({ limit: '500kb' }))
a030a9b2
C
51app.use(bodyParser.urlencoded({ extended: false }))
52// Validate some params for the API
53app.use(expressValidator({
d57d6f26
C
54 customValidators: Object.assign(
55 {},
56 customValidators.misc,
57 customValidators.pods,
58 customValidators.users,
59 customValidators.videos
60 )
a030a9b2
C
61}))
62
63// ----------- Views, routes and static files -----------
64
79530164 65// API
bc503c2a
C
66const apiRoute = '/api/' + constants.API_VERSION
67app.use(apiRoute, routes.api)
052937db 68
79530164
C
69// Client files
70app.use('/', routes.client)
cbe2f7c3 71
79530164
C
72// Static files
73app.use('/', routes.static)
6a94a109 74
79530164 75// Always serve index client page (the client is a single page application, let it handle routing)
6f4e2522 76app.use('/*', function (req, res, next) {
830bcd0f 77 res.sendFile(path.join(__dirname, './client/dist/index.html'))
6f4e2522 78})
a030a9b2
C
79
80// ----------- Tracker -----------
81
13ce1d01 82const trackerServer = new TrackerServer({
a030a9b2
C
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
13ce1d01
C
97const server = http.createServer(app)
98const wss = new WebSocketServer({server: server, path: '/tracker/socket'})
a030a9b2
C
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) {
13ce1d01 107 const err = new Error('Not Found')
a030a9b2
C
108 err.status = 404
109 next(err)
110})
111
6f4e2522
C
112app.use(function (err, req, res, next) {
113 logger.error(err)
114 res.sendStatus(err.status || 500)
115})
a030a9b2 116
79530164
C
117// ----------- Run -----------
118
d16b5172 119const port = constants.CONFIG.LISTEN.PORT
37dc07b2 120installer.installApplication(function (err) {
9457bf88 121 if (err) throw err
9457bf88 122
00d6b0dd
C
123 // Run the migration scripts if needed
124 migrator.migrate(function (err) {
125 if (err) throw err
a030a9b2 126
a6375e69
C
127 // ----------- Make the server listening -----------
128 server.listen(port, function () {
129 // Activate the pool requests
feb4bdfd 130 db.Request.activate()
052937db 131
a6375e69 132 logger.info('Server listening on port %d', port)
763381de
C
133 logger.info('Webserver: %s', constants.CONFIG.WEBSERVER.URL)
134
a6375e69 135 app.emit('ready')
8c308c2b
C
136 })
137 })
a030a9b2 138})
8c308c2b 139
a030a9b2 140module.exports = app