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