]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server.js
Server: move remote routes in their own directory
[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,
60 customValidators.videos
61 )
a030a9b2
C
62}))
63
64// ----------- Views, routes and static files -----------
65
79530164 66// API
bc503c2a
C
67const apiRoute = '/api/' + constants.API_VERSION
68app.use(apiRoute, routes.api)
052937db 69
79530164
C
70// Client files
71app.use('/', routes.client)
cbe2f7c3 72
79530164
C
73// Static files
74app.use('/', routes.static)
6a94a109 75
79530164 76// Always serve index client page (the client is a single page application, let it handle routing)
6f4e2522 77app.use('/*', function (req, res, next) {
830bcd0f 78 res.sendFile(path.join(__dirname, './client/dist/index.html'))
6f4e2522 79})
a030a9b2
C
80
81// ----------- Tracker -----------
82
13ce1d01 83const trackerServer = new TrackerServer({
a030a9b2
C
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
13ce1d01
C
98const server = http.createServer(app)
99const wss = new WebSocketServer({server: server, path: '/tracker/socket'})
a030a9b2
C
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) {
13ce1d01 108 const err = new Error('Not Found')
a030a9b2
C
109 err.status = 404
110 next(err)
111})
112
6f4e2522
C
113app.use(function (err, req, res, next) {
114 logger.error(err)
115 res.sendStatus(err.status || 500)
116})
a030a9b2 117
79530164
C
118// ----------- Run -----------
119
d16b5172 120const port = constants.CONFIG.LISTEN.PORT
37dc07b2 121installer.installApplication(function (err) {
9457bf88 122 if (err) throw err
9457bf88 123
00d6b0dd
C
124 // Run the migration scripts if needed
125 migrator.migrate(function (err) {
126 if (err) throw err
a030a9b2 127
a6375e69
C
128 // ----------- Make the server listening -----------
129 server.listen(port, function () {
130 // Activate the pool requests
feb4bdfd 131 db.Request.activate()
052937db 132
a6375e69 133 logger.info('Server listening on port %d', port)
763381de
C
134 logger.info('Webserver: %s', constants.CONFIG.WEBSERVER.URL)
135
a6375e69 136 app.emit('ready')
8c308c2b
C
137 })
138 })
a030a9b2 139})
8c308c2b 140
a030a9b2 141module.exports = app