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