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