]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server.ts
Adding a more specific phrasing for yarn installation (#487)
[github/Chocobozzz/PeerTube.git] / server.ts
CommitLineData
6b467fd5
C
1// FIXME: https://github.com/nodejs/node/pull/16853
2require('tls').DEFAULT_ECDH_CURVE = 'auto'
3
1840c2f7
C
4import { isTestInstance } from './server/helpers/core-utils'
5
6if (isTestInstance()) {
e02643f3
C
7 require('source-map-support').install()
8}
9
a030a9b2 10// ----------- Node modules -----------
4d4e5cd4
C
11import * as bodyParser from 'body-parser'
12import * as express from 'express'
4d4e5cd4
C
13import * as http from 'http'
14import * as morgan from 'morgan'
15import * as path from 'path'
b60e5f38 16import * as bitTorrentTracker from 'bittorrent-tracker'
1840c2f7 17import * as cors from 'cors'
65fcc311
C
18import { Server as WebSocketServer } from 'ws'
19
b60e5f38 20const TrackerServer = bitTorrentTracker.Server
a030a9b2 21
9f540774
C
22process.title = 'peertube'
23
a030a9b2 24// Create our main app
13ce1d01 25const app = express()
a030a9b2 26
3482688c 27// ----------- Core checker -----------
65fcc311 28import { checkMissedConfig, checkFFmpeg, checkConfig } from './server/initializers/checker'
69b0a27c 29
d5b7d911
C
30// Do not use barrels because we don't want to load all modules here (we need to initialize database first)
31import { logger } from './server/helpers/logger'
32import { ACCEPT_HEADERS, API_VERSION, CONFIG, STATIC_PATHS } from './server/initializers/constants'
33
65fcc311 34const missed = checkMissedConfig()
b65c27aa 35if (missed.length !== 0) {
d5b7d911
C
36 logger.error('Your configuration files miss keys: ' + missed)
37 process.exit(-1)
b65c27aa 38}
3482688c 39
3482688c 40checkFFmpeg(CONFIG)
d5b7d911
C
41 .catch(err => {
42 logger.error('Error in ffmpeg check.', { err })
43 process.exit(-1)
44 })
b65c27aa 45
65fcc311 46const errorMessage = checkConfig()
b65c27aa
C
47if (errorMessage !== null) {
48 throw new Error(errorMessage)
69b0a27c
C
49}
50
490b595a
C
51// Trust our proxy (IP forwarding...)
52app.set('trust proxy', CONFIG.TRUST_PROXY)
53
3482688c 54// ----------- Database -----------
91fea9fc 55
3482688c 56// Initialize database and models
91fea9fc
C
57import { initDatabaseModels } from './server/initializers/database'
58import { migrate } from './server/initializers/migrator'
59migrate()
60 .then(() => initDatabaseModels(false))
3d3441d6
C
61 .then(() => startApplication())
62 .catch(err => {
63 logger.error('Cannot start application.', { err })
64 process.exit(-1)
65 })
3482688c 66
00057e85 67// ----------- PeerTube modules -----------
91fea9fc 68import { installApplication } from './server/initializers'
ecb4e35f 69import { Emailer } from './server/lib/emailer'
94a5ff8a 70import { JobQueue } from './server/lib/job-queue'
50d6de9c 71import { VideosPreviewCache } from './server/lib/cache'
350e31d6 72import { apiRouter, clientsRouter, staticRouter, servicesRouter, webfingerRouter, activityPubRouter } from './server/controllers'
ecb4e35f 73import { Redis } from './server/lib/redis'
60650c77 74import { BadActorFollowScheduler } from './server/lib/schedulers/bad-actor-follow-scheduler'
94a5ff8a 75import { RemoveOldJobsScheduler } from './server/lib/schedulers/remove-old-jobs-scheduler'
a030a9b2 76
a030a9b2
C
77// ----------- Command line -----------
78
79// ----------- App -----------
80
407c4473 81// Enable CORS for develop
1840c2f7 82if (isTestInstance()) {
93e1258c
C
83 app.use((req, res, next) => {
84 // These routes have already cors
85 if (
86 req.path.indexOf(STATIC_PATHS.TORRENTS) === -1 &&
87 req.path.indexOf(STATIC_PATHS.WEBSEED) === -1
88 ) {
89 return (cors({
90 origin: 'http://localhost:3000',
490b595a 91 exposedHeaders: 'Retry-After',
93e1258c
C
92 credentials: true
93 }))(req, res, next)
94 }
95
96 return next()
97 })
1840c2f7
C
98}
99
a030a9b2 100// For the logger
e02643f3 101app.use(morgan('combined', {
23e27dd5 102 stream: { write: logger.info.bind(logger) }
e02643f3 103}))
a030a9b2 104// For body requests
bf9ae5ce 105app.use(bodyParser.urlencoded({ extended: false }))
165cdc75 106app.use(bodyParser.json({
86d13ec2 107 type: [ 'application/json', 'application/*+json' ],
165cdc75
C
108 limit: '500kb'
109}))
a030a9b2 110
a030a9b2
C
111// ----------- Tracker -----------
112
13ce1d01 113const trackerServer = new TrackerServer({
a030a9b2
C
114 http: false,
115 udp: false,
116 ws: false,
117 dht: false
118})
119
120trackerServer.on('error', function (err) {
1e9d7b60 121 logger.error('Error in websocket tracker.', err)
a030a9b2
C
122})
123
124trackerServer.on('warning', function (err) {
1e9d7b60 125 logger.error('Warning in websocket tracker.', err)
a030a9b2
C
126})
127
13ce1d01 128const server = http.createServer(app)
65fcc311 129const wss = new WebSocketServer({ server: server, path: '/tracker/socket' })
a030a9b2
C
130wss.on('connection', function (ws) {
131 trackerServer.onWebSocketConnection(ws)
132})
133
a96aed15
C
134const onHttpRequest = trackerServer.onHttpRequest.bind(trackerServer)
135app.get('/tracker/announce', (req, res) => onHttpRequest(req, res, { action: 'announce' }))
136app.get('/tracker/scrape', (req, res) => onHttpRequest(req, res, { action: 'scrape' }))
137
138// ----------- Views, routes and static files -----------
139
140// API
141const apiRoute = '/api/' + API_VERSION
142app.use(apiRoute, apiRouter)
143
144// Services (oembed...)
145app.use('/services', servicesRouter)
146
350e31d6
C
147app.use('/', webfingerRouter)
148app.use('/', activityPubRouter)
149
a96aed15
C
150// Client files
151app.use('/', clientsRouter)
152
153// Static files
154app.use('/', staticRouter)
155
156// Always serve index client page (the client is a single page application, let it handle routing)
157app.use('/*', function (req, res) {
4f491371 158 if (req.accepts(ACCEPT_HEADERS) === 'html') {
98ec8b8e
C
159 return res.sendFile(path.join(__dirname, '../client/dist/index.html'))
160 }
161
162 return res.status(404).end()
a96aed15
C
163})
164
a030a9b2
C
165// ----------- Errors -----------
166
167// Catch 404 and forward to error handler
168app.use(function (req, res, next) {
13ce1d01 169 const err = new Error('Not Found')
65fcc311 170 err['status'] = 404
a030a9b2
C
171 next(err)
172})
173
6f4e2522 174app.use(function (err, req, res, next) {
e3a682a8
C
175 let error = 'Unknown error.'
176 if (err) {
177 error = err.stack || err.message || err
178 }
179
180 logger.error('Error in controller.', { error })
181 return res.status(err.status || 500).end()
6f4e2522 182})
a030a9b2 183
79530164
C
184// ----------- Run -----------
185
3d3441d6 186async function startApplication () {
65fcc311 187 const port = CONFIG.LISTEN.PORT
91fea9fc 188
3d3441d6
C
189 await installApplication()
190
191 // Email initialization
192 Emailer.Instance.init()
193 await Emailer.Instance.checkConnectionOrDie()
194
195 await JobQueue.Instance.init()
196
197 // Caches initializations
198 VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.SIZE)
199
200 // Enable Schedulers
201 BadActorFollowScheduler.Instance.enable()
202 RemoveOldJobsScheduler.Instance.enable()
203
204 // Redis initialization
205 Redis.Instance.init()
206
207 // Make server listening
208 server.listen(port)
209 logger.info('Server listening on port %d', port)
210 logger.info('Web server: %s', CONFIG.WEBSERVER.URL)
5804c0db 211}