]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server.ts
Bumped to version v0.0.11-alpha
[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
65fcc311 30const missed = checkMissedConfig()
b65c27aa 31if (missed.length !== 0) {
3482688c 32 throw new Error('Your configuration files miss keys: ' + missed)
b65c27aa 33}
3482688c 34
4f491371 35import { ACCEPT_HEADERS, API_VERSION, CONFIG, STATIC_PATHS } from './server/initializers/constants'
3482688c 36checkFFmpeg(CONFIG)
b65c27aa 37
65fcc311 38const errorMessage = checkConfig()
b65c27aa
C
39if (errorMessage !== null) {
40 throw new Error(errorMessage)
69b0a27c
C
41}
42
3482688c
C
43// ----------- Database -----------
44// Do not use barrels because we don't want to load all modules here (we need to initialize database first)
45import { logger } from './server/helpers/logger'
91fea9fc 46
3482688c 47// Initialize database and models
91fea9fc
C
48import { initDatabaseModels } from './server/initializers/database'
49import { migrate } from './server/initializers/migrator'
50migrate()
51 .then(() => initDatabaseModels(false))
52 .then(() => onDatabaseInitDone())
3482688c 53
00057e85 54// ----------- PeerTube modules -----------
91fea9fc 55import { installApplication } from './server/initializers'
50d6de9c
C
56import { activitypubHttpJobScheduler, transcodingJobScheduler } from './server/lib/jobs'
57import { VideosPreviewCache } from './server/lib/cache'
350e31d6 58import { apiRouter, clientsRouter, staticRouter, servicesRouter, webfingerRouter, activityPubRouter } from './server/controllers'
60650c77 59import { BadActorFollowScheduler } from './server/lib/schedulers/bad-actor-follow-scheduler'
a030a9b2 60
a030a9b2
C
61// ----------- Command line -----------
62
63// ----------- App -----------
64
407c4473 65// Enable CORS for develop
1840c2f7 66if (isTestInstance()) {
93e1258c
C
67 app.use((req, res, next) => {
68 // These routes have already cors
69 if (
70 req.path.indexOf(STATIC_PATHS.TORRENTS) === -1 &&
71 req.path.indexOf(STATIC_PATHS.WEBSEED) === -1
72 ) {
73 return (cors({
74 origin: 'http://localhost:3000',
75 credentials: true
76 }))(req, res, next)
77 }
78
79 return next()
80 })
1840c2f7
C
81}
82
a030a9b2 83// For the logger
e02643f3
C
84app.use(morgan('combined', {
85 stream: { write: logger.info }
86}))
a030a9b2 87// For body requests
165cdc75 88app.use(bodyParser.json({
86d13ec2 89 type: [ 'application/json', 'application/*+json' ],
165cdc75
C
90 limit: '500kb'
91}))
a030a9b2 92app.use(bodyParser.urlencoded({ extended: false }))
a030a9b2 93
a030a9b2
C
94// ----------- Tracker -----------
95
13ce1d01 96const trackerServer = new TrackerServer({
a030a9b2
C
97 http: false,
98 udp: false,
99 ws: false,
100 dht: false
101})
102
103trackerServer.on('error', function (err) {
104 logger.error(err)
105})
106
107trackerServer.on('warning', function (err) {
108 logger.error(err)
109})
110
13ce1d01 111const server = http.createServer(app)
65fcc311 112const wss = new WebSocketServer({ server: server, path: '/tracker/socket' })
a030a9b2
C
113wss.on('connection', function (ws) {
114 trackerServer.onWebSocketConnection(ws)
115})
116
a96aed15
C
117const onHttpRequest = trackerServer.onHttpRequest.bind(trackerServer)
118app.get('/tracker/announce', (req, res) => onHttpRequest(req, res, { action: 'announce' }))
119app.get('/tracker/scrape', (req, res) => onHttpRequest(req, res, { action: 'scrape' }))
120
121// ----------- Views, routes and static files -----------
122
123// API
124const apiRoute = '/api/' + API_VERSION
125app.use(apiRoute, apiRouter)
126
127// Services (oembed...)
128app.use('/services', servicesRouter)
129
350e31d6
C
130app.use('/', webfingerRouter)
131app.use('/', activityPubRouter)
132
a96aed15
C
133// Client files
134app.use('/', clientsRouter)
135
136// Static files
137app.use('/', staticRouter)
138
139// Always serve index client page (the client is a single page application, let it handle routing)
140app.use('/*', function (req, res) {
4f491371 141 if (req.accepts(ACCEPT_HEADERS) === 'html') {
98ec8b8e
C
142 return res.sendFile(path.join(__dirname, '../client/dist/index.html'))
143 }
144
145 return res.status(404).end()
a96aed15
C
146})
147
a030a9b2
C
148// ----------- Errors -----------
149
150// Catch 404 and forward to error handler
151app.use(function (req, res, next) {
13ce1d01 152 const err = new Error('Not Found')
65fcc311 153 err['status'] = 404
a030a9b2
C
154 next(err)
155})
156
6f4e2522 157app.use(function (err, req, res, next) {
4635f59d 158 logger.error(err, err)
6f4e2522
C
159 res.sendStatus(err.status || 500)
160})
a030a9b2 161
79530164
C
162// ----------- Run -----------
163
5804c0db 164function onDatabaseInitDone () {
65fcc311 165 const port = CONFIG.LISTEN.PORT
91fea9fc
C
166
167 installApplication()
6fcd19ba 168 .then(() => {
5804c0db 169 // ----------- Make the server listening -----------
571389d4 170 server.listen(port, () => {
e8e12200 171 VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.SIZE)
60650c77
C
172 BadActorFollowScheduler.Instance.enable()
173
afffe988 174 activitypubHttpJobScheduler.activate()
571389d4 175 transcodingJobScheduler.activate()
f981dae8 176
5804c0db 177 logger.info('Server listening on port %d', port)
556ddc31 178 logger.info('Web server: %s', CONFIG.WEBSERVER.URL)
5804c0db 179 })
8c308c2b 180 })
5804c0db 181}