]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server.js
Server: add job scheduler to transcode video files
[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')
5804c0db 23db.init(onDatabaseInitDone)
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')
c1a7ab7f 40const friends = require('./server/lib/friends')
00057e85 41const installer = require('./server/initializers/installer')
00d6b0dd 42const migrator = require('./server/initializers/migrator')
227d02fe 43const jobScheduler = require('./server/lib/jobs/job-scheduler')
13ce1d01 44const routes = require('./server/controllers')
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,
55fa55a9
C
62 customValidators.videos,
63 customValidators.remote.videos
d57d6f26 64 )
a030a9b2
C
65}))
66
67// ----------- Views, routes and static files -----------
68
79530164 69// API
bc503c2a
C
70const apiRoute = '/api/' + constants.API_VERSION
71app.use(apiRoute, routes.api)
052937db 72
79530164
C
73// Client files
74app.use('/', routes.client)
cbe2f7c3 75
79530164
C
76// Static files
77app.use('/', routes.static)
6a94a109 78
79530164 79// Always serve index client page (the client is a single page application, let it handle routing)
6f4e2522 80app.use('/*', function (req, res, next) {
830bcd0f 81 res.sendFile(path.join(__dirname, './client/dist/index.html'))
6f4e2522 82})
a030a9b2
C
83
84// ----------- Tracker -----------
85
13ce1d01 86const trackerServer = new TrackerServer({
a030a9b2
C
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
13ce1d01
C
101const server = http.createServer(app)
102const wss = new WebSocketServer({server: server, path: '/tracker/socket'})
a030a9b2
C
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) {
13ce1d01 111 const err = new Error('Not Found')
a030a9b2
C
112 err.status = 404
113 next(err)
114})
115
6f4e2522
C
116app.use(function (err, req, res, next) {
117 logger.error(err)
118 res.sendStatus(err.status || 500)
119})
a030a9b2 120
79530164
C
121// ----------- Run -----------
122
5804c0db
C
123function onDatabaseInitDone () {
124 const port = constants.CONFIG.LISTEN.PORT
125 // Run the migration scripts if needed
00d6b0dd
C
126 migrator.migrate(function (err) {
127 if (err) throw err
a030a9b2 128
5804c0db
C
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()
052937db 136
227d02fe
C
137 // Activate job scheduler
138 jobScheduler.activate()
139
5804c0db
C
140 logger.info('Server listening on port %d', port)
141 logger.info('Webserver: %s', constants.CONFIG.WEBSERVER.URL)
763381de 142
5804c0db
C
143 app.emit('ready')
144 })
8c308c2b
C
145 })
146 })
5804c0db 147}
8c308c2b 148
a030a9b2 149module.exports = app