]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server.ts
Fix activitypub check headers
[github/Chocobozzz/PeerTube.git] / server.ts
CommitLineData
1840c2f7
C
1import { isTestInstance } from './server/helpers/core-utils'
2
3if (isTestInstance()) {
e02643f3
C
4 require('source-map-support').install()
5}
6
a030a9b2 7// ----------- Node modules -----------
4d4e5cd4
C
8import * as bodyParser from 'body-parser'
9import * as express from 'express'
4d4e5cd4
C
10import * as http from 'http'
11import * as morgan from 'morgan'
12import * as path from 'path'
b60e5f38 13import * as bitTorrentTracker from 'bittorrent-tracker'
1840c2f7 14import * as cors from 'cors'
65fcc311
C
15import { Server as WebSocketServer } from 'ws'
16
b60e5f38 17const TrackerServer = bitTorrentTracker.Server
a030a9b2 18
9f540774
C
19process.title = 'peertube'
20
a030a9b2 21// Create our main app
13ce1d01 22const app = express()
a030a9b2 23
3482688c 24// ----------- Core checker -----------
65fcc311 25import { checkMissedConfig, checkFFmpeg, checkConfig } from './server/initializers/checker'
69b0a27c 26
65fcc311 27const missed = checkMissedConfig()
b65c27aa 28if (missed.length !== 0) {
3482688c 29 throw new Error('Your configuration files miss keys: ' + missed)
b65c27aa 30}
3482688c
C
31
32import { API_VERSION, CONFIG, STATIC_PATHS } from './server/initializers/constants'
33checkFFmpeg(CONFIG)
b65c27aa 34
65fcc311 35const errorMessage = checkConfig()
b65c27aa
C
36if (errorMessage !== null) {
37 throw new Error(errorMessage)
69b0a27c
C
38}
39
3482688c
C
40// ----------- Database -----------
41// Do not use barrels because we don't want to load all modules here (we need to initialize database first)
42import { logger } from './server/helpers/logger'
43// Initialize database and models
44import { database as db } from './server/initializers/database'
45db.init(false).then(() => onDatabaseInitDone())
46
00057e85 47// ----------- PeerTube modules -----------
65fcc311 48import { migrate, installApplication } from './server/initializers'
afffe988 49import { activitypubHttpJobScheduler, transcodingJobScheduler, VideosPreviewCache } from './server/lib'
350e31d6 50import { apiRouter, clientsRouter, staticRouter, servicesRouter, webfingerRouter, activityPubRouter } from './server/controllers'
a030a9b2 51
a030a9b2
C
52// ----------- Command line -----------
53
54// ----------- App -----------
55
407c4473 56// Enable CORS for develop
1840c2f7 57if (isTestInstance()) {
93e1258c
C
58 app.use((req, res, next) => {
59 // These routes have already cors
60 if (
61 req.path.indexOf(STATIC_PATHS.TORRENTS) === -1 &&
62 req.path.indexOf(STATIC_PATHS.WEBSEED) === -1
63 ) {
64 return (cors({
65 origin: 'http://localhost:3000',
66 credentials: true
67 }))(req, res, next)
68 }
69
70 return next()
71 })
1840c2f7
C
72}
73
a030a9b2 74// For the logger
e02643f3
C
75app.use(morgan('combined', {
76 stream: { write: logger.info }
77}))
a030a9b2 78// For body requests
165cdc75 79app.use(bodyParser.json({
86d13ec2 80 type: [ 'application/json', 'application/*+json' ],
165cdc75
C
81 limit: '500kb'
82}))
a030a9b2 83app.use(bodyParser.urlencoded({ extended: false }))
a030a9b2 84
a030a9b2
C
85// ----------- Tracker -----------
86
13ce1d01 87const trackerServer = new TrackerServer({
a030a9b2
C
88 http: false,
89 udp: false,
90 ws: false,
91 dht: false
92})
93
94trackerServer.on('error', function (err) {
95 logger.error(err)
96})
97
98trackerServer.on('warning', function (err) {
99 logger.error(err)
100})
101
13ce1d01 102const server = http.createServer(app)
65fcc311 103const wss = new WebSocketServer({ server: server, path: '/tracker/socket' })
a030a9b2
C
104wss.on('connection', function (ws) {
105 trackerServer.onWebSocketConnection(ws)
106})
107
a96aed15
C
108const onHttpRequest = trackerServer.onHttpRequest.bind(trackerServer)
109app.get('/tracker/announce', (req, res) => onHttpRequest(req, res, { action: 'announce' }))
110app.get('/tracker/scrape', (req, res) => onHttpRequest(req, res, { action: 'scrape' }))
111
112// ----------- Views, routes and static files -----------
113
114// API
115const apiRoute = '/api/' + API_VERSION
116app.use(apiRoute, apiRouter)
117
118// Services (oembed...)
119app.use('/services', servicesRouter)
120
350e31d6
C
121app.use('/', webfingerRouter)
122app.use('/', activityPubRouter)
123
a96aed15
C
124// Client files
125app.use('/', clientsRouter)
126
127// Static files
128app.use('/', staticRouter)
129
130// Always serve index client page (the client is a single page application, let it handle routing)
131app.use('/*', function (req, res) {
132 res.sendFile(path.join(__dirname, '../client/dist/index.html'))
133})
134
a030a9b2
C
135// ----------- Errors -----------
136
137// Catch 404 and forward to error handler
138app.use(function (req, res, next) {
13ce1d01 139 const err = new Error('Not Found')
65fcc311 140 err['status'] = 404
a030a9b2
C
141 next(err)
142})
143
6f4e2522
C
144app.use(function (err, req, res, next) {
145 logger.error(err)
146 res.sendStatus(err.status || 500)
147})
a030a9b2 148
79530164
C
149// ----------- Run -----------
150
5804c0db 151function onDatabaseInitDone () {
65fcc311 152 const port = CONFIG.LISTEN.PORT
5804c0db 153 // Run the migration scripts if needed
6fcd19ba 154 migrate()
571389d4 155 .then(() => installApplication())
6fcd19ba 156 .then(() => {
5804c0db 157 // ----------- Make the server listening -----------
571389d4 158 server.listen(port, () => {
f981dae8 159 VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.SIZE)
afffe988 160 activitypubHttpJobScheduler.activate()
571389d4 161 transcodingJobScheduler.activate()
f981dae8 162
5804c0db 163 logger.info('Server listening on port %d', port)
556ddc31 164 logger.info('Web server: %s', CONFIG.WEBSERVER.URL)
5804c0db 165 })
8c308c2b 166 })
5804c0db 167}