]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server.js
Add migration (for db, folders...) mechanism
[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
C
12
13// Create our main app
13ce1d01 14const app = express()
a030a9b2 15
00057e85 16// ----------- Database -----------
13ce1d01
C
17const config = require('config')
18const constants = require('./server/initializers/constants')
13ce1d01 19const database = require('./server/initializers/database')
13ce1d01 20const logger = require('./server/helpers/logger')
00057e85
C
21
22database.connect()
23
69b0a27c
C
24// ----------- Checker -----------
25const checker = require('./server/initializers/checker')
26
27const miss = checker.checkConfig()
28if (miss.length !== 0) {
29 throw new Error('Miss some configurations keys : ' + miss)
30}
31
00057e85 32// ----------- PeerTube modules -----------
5f698b82 33const customValidators = require('./server/helpers/custom-validators')
00057e85 34const installer = require('./server/initializers/installer')
00d6b0dd 35const migrator = require('./server/initializers/migrator')
00057e85 36const mongoose = require('mongoose')
13ce1d01
C
37const routes = require('./server/controllers')
38const utils = require('./server/helpers/utils')
13ce1d01 39const webtorrent = require('./server/lib/webtorrent')
00057e85 40const Request = mongoose.model('Request')
907e9510 41const Video = mongoose.model('Video')
a030a9b2
C
42
43// Get configurations
13ce1d01 44const port = config.get('listen.port')
a030a9b2 45
a030a9b2
C
46// ----------- Command line -----------
47
48// ----------- App -----------
49
50// For the logger
51app.use(morgan('combined', { stream: logger.stream }))
52// For body requests
def16d33 53app.use(bodyParser.json({ limit: '500kb' }))
a030a9b2
C
54app.use(bodyParser.urlencoded({ extended: false }))
55// Validate some params for the API
56app.use(expressValidator({
d57d6f26
C
57 customValidators: Object.assign(
58 {},
59 customValidators.misc,
60 customValidators.pods,
61 customValidators.users,
62 customValidators.videos
63 )
a030a9b2
C
64}))
65
66// ----------- Views, routes and static files -----------
67
a030a9b2
C
68// Catch sefaults
69require('segfault-handler').registerHandler()
70
a030a9b2 71// API routes
bc503c2a
C
72const apiRoute = '/api/' + constants.API_VERSION
73app.use(apiRoute, routes.api)
a030a9b2 74
bd324a66 75// Static files
4a6995be 76app.use('/client', express.static(path.join(__dirname, '/client/dist'), { maxAge: 0 }))
bd324a66 77// 404 for static files not found
41a2aee3 78app.use('/client/*', function (req, res, next) {
bd324a66
C
79 res.sendStatus(404)
80})
81
cbe2f7c3 82// Thumbnails path for express
bc503c2a
C
83const thumbnailsPhysicalPath = path.join(__dirname, config.get('storage.thumbnails'))
84app.use(constants.THUMBNAILS_STATIC_PATH, express.static(thumbnailsPhysicalPath, { maxAge: 0 }))
cbe2f7c3 85
6f4e2522
C
86// Client application
87app.use('/*', function (req, res, next) {
4a6995be 88 res.sendFile(path.join(__dirname, 'client/dist/index.html'))
6f4e2522 89})
a030a9b2
C
90
91// ----------- Tracker -----------
92
13ce1d01 93const trackerServer = new TrackerServer({
a030a9b2
C
94 http: false,
95 udp: false,
96 ws: false,
97 dht: false
98})
99
100trackerServer.on('error', function (err) {
101 logger.error(err)
102})
103
104trackerServer.on('warning', function (err) {
105 logger.error(err)
106})
107
13ce1d01
C
108const server = http.createServer(app)
109const wss = new WebSocketServer({server: server, path: '/tracker/socket'})
a030a9b2
C
110wss.on('connection', function (ws) {
111 trackerServer.onWebSocketConnection(ws)
112})
113
114// ----------- Errors -----------
115
116// Catch 404 and forward to error handler
117app.use(function (req, res, next) {
13ce1d01 118 const err = new Error('Not Found')
a030a9b2
C
119 err.status = 404
120 next(err)
121})
122
6f4e2522
C
123app.use(function (err, req, res, next) {
124 logger.error(err)
125 res.sendStatus(err.status || 500)
126})
a030a9b2 127
37dc07b2 128installer.installApplication(function (err) {
9457bf88 129 if (err) throw err
9457bf88 130
00d6b0dd
C
131 // Run the migration scripts if needed
132 migrator.migrate(function (err) {
133 if (err) throw err
a030a9b2 134
00d6b0dd
C
135 // Create/activate the webtorrent module
136 webtorrent.create(function () {
137 function cleanForExit () {
138 utils.cleanForExit(webtorrent.app)
139 }
a030a9b2 140
00d6b0dd
C
141 function exitGracefullyOnSignal () {
142 process.exit(-1)
143 }
a030a9b2 144
00d6b0dd
C
145 process.on('exit', cleanForExit)
146 process.on('SIGINT', exitGracefullyOnSignal)
147 process.on('SIGTERM', exitGracefullyOnSignal)
a030a9b2 148
00d6b0dd
C
149 // ----------- Make the server listening -----------
150 server.listen(port, function () {
151 // Activate the pool requests
152 Request.activate()
907e9510 153
00d6b0dd
C
154 Video.seedAllExisting(function (err) {
155 if (err) throw err
156
157 logger.info('Seeded all the videos')
158 logger.info('Server listening on port %d', port)
159 app.emit('ready')
160 })
907e9510 161 })
8c308c2b
C
162 })
163 })
a030a9b2 164})
8c308c2b 165
a030a9b2 166module.exports = app