Update migrations code
[oweals/peertube.git] / server.js
1 'use strict'
2
3 // ----------- Node modules -----------
4 const bodyParser = require('body-parser')
5 const express = require('express')
6 const expressValidator = require('express-validator')
7 const http = require('http')
8 const morgan = require('morgan')
9 const path = require('path')
10 const TrackerServer = require('bittorrent-tracker').Server
11 const WebSocketServer = require('ws').Server
12
13 process.title = 'peertube'
14
15 // Create our main app
16 const app = express()
17
18 // ----------- Database -----------
19 const constants = require('./server/initializers/constants')
20 const logger = require('./server/helpers/logger')
21 // Initialize database and models
22 const db = require('./server/initializers/database')
23 db.init()
24
25 // ----------- Checker -----------
26 const checker = require('./server/initializers/checker')
27
28 const missed = checker.checkMissedConfig()
29 if (missed.length !== 0) {
30   throw new Error('Miss some configurations keys : ' + missed)
31 }
32
33 const errorMessage = checker.checkConfig()
34 if (errorMessage !== null) {
35   throw new Error(errorMessage)
36 }
37
38 // ----------- PeerTube modules -----------
39 const customValidators = require('./server/helpers/custom-validators')
40 const installer = require('./server/initializers/installer')
41 const migrator = require('./server/initializers/migrator')
42 const routes = require('./server/controllers')
43
44 // ----------- Command line -----------
45
46 // ----------- App -----------
47
48 // For the logger
49 app.use(morgan('combined', { stream: logger.stream }))
50 // For body requests
51 app.use(bodyParser.json({ limit: '500kb' }))
52 app.use(bodyParser.urlencoded({ extended: false }))
53 // Validate some params for the API
54 app.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
67 const apiRoute = '/api/' + constants.API_VERSION
68 app.use(apiRoute, routes.api)
69
70 // Client files
71 app.use('/', routes.client)
72
73 // Static files
74 app.use('/', routes.static)
75
76 // Always serve index client page (the client is a single page application, let it handle routing)
77 app.use('/*', function (req, res, next) {
78   res.sendFile(path.join(__dirname, './client/dist/index.html'))
79 })
80
81 // ----------- Tracker -----------
82
83 const trackerServer = new TrackerServer({
84   http: false,
85   udp: false,
86   ws: false,
87   dht: false
88 })
89
90 trackerServer.on('error', function (err) {
91   logger.error(err)
92 })
93
94 trackerServer.on('warning', function (err) {
95   logger.error(err)
96 })
97
98 const server = http.createServer(app)
99 const wss = new WebSocketServer({server: server, path: '/tracker/socket'})
100 wss.on('connection', function (ws) {
101   trackerServer.onWebSocketConnection(ws)
102 })
103
104 // ----------- Errors -----------
105
106 // Catch 404 and forward to error handler
107 app.use(function (req, res, next) {
108   const err = new Error('Not Found')
109   err.status = 404
110   next(err)
111 })
112
113 app.use(function (err, req, res, next) {
114   logger.error(err)
115   res.sendStatus(err.status || 500)
116 })
117
118 // ----------- Run -----------
119
120 const port = constants.CONFIG.LISTEN.PORT
121 installer.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
141 module.exports = app