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