1 // FIXME: https://github.com/nodejs/node/pull/16853
2 require('tls').DEFAULT_ECDH_CURVE = 'auto'
4 import { isTestInstance } from './server/helpers/core-utils'
6 if (isTestInstance()) {
7 require('source-map-support').install()
10 // ----------- Node modules -----------
11 import * as bodyParser from 'body-parser'
12 import * as express from 'express'
13 import * as http from 'http'
14 import * as morgan from 'morgan'
15 import * as path from 'path'
16 import * as bitTorrentTracker from 'bittorrent-tracker'
17 import * as cors from 'cors'
18 import { Server as WebSocketServer } from 'ws'
20 const TrackerServer = bitTorrentTracker.Server
22 process.title = 'peertube'
24 // Create our main app
27 // ----------- Core checker -----------
28 import { checkMissedConfig, checkFFmpeg, checkConfig } from './server/initializers/checker'
30 const missed = checkMissedConfig()
31 if (missed.length !== 0) {
32 throw new Error('Your configuration files miss keys: ' + missed)
35 import { ACCEPT_HEADERS, API_VERSION, CONFIG, STATIC_PATHS } from './server/initializers/constants'
38 const errorMessage = checkConfig()
39 if (errorMessage !== null) {
40 throw new Error(errorMessage)
43 // ----------- Database -----------
44 // Do not use barrels because we don't want to load all modules here (we need to initialize database first)
45 import { logger } from './server/helpers/logger'
47 // Initialize database and models
48 import { initDatabaseModels } from './server/initializers/database'
49 import { migrate } from './server/initializers/migrator'
51 .then(() => initDatabaseModels(false))
52 .then(() => onDatabaseInitDone())
54 // ----------- PeerTube modules -----------
55 import { installApplication } from './server/initializers'
56 import { activitypubHttpJobScheduler, transcodingJobScheduler } from './server/lib/jobs'
57 import { VideosPreviewCache } from './server/lib/cache'
58 import { apiRouter, clientsRouter, staticRouter, servicesRouter, webfingerRouter, activityPubRouter } from './server/controllers'
59 import { BadActorFollowScheduler } from './server/lib/schedulers/bad-actor-follow-scheduler'
61 // ----------- Command line -----------
63 // ----------- App -----------
65 // Enable CORS for develop
66 if (isTestInstance()) {
67 app.use((req, res, next) => {
68 // These routes have already cors
70 req.path.indexOf(STATIC_PATHS.TORRENTS) === -1 &&
71 req.path.indexOf(STATIC_PATHS.WEBSEED) === -1
74 origin: 'http://localhost:3000',
84 app.use(morgan('combined', {
85 stream: { write: logger.info.bind(logger) }
88 app.use(bodyParser.json({
89 type: [ 'application/json', 'application/*+json' ],
92 app.use(bodyParser.urlencoded({ extended: false }))
94 // ----------- Tracker -----------
96 const trackerServer = new TrackerServer({
103 trackerServer.on('error', function (err) {
107 trackerServer.on('warning', function (err) {
111 const server = http.createServer(app)
112 const wss = new WebSocketServer({ server: server, path: '/tracker/socket' })
113 wss.on('connection', function (ws) {
114 trackerServer.onWebSocketConnection(ws)
117 const onHttpRequest = trackerServer.onHttpRequest.bind(trackerServer)
118 app.get('/tracker/announce', (req, res) => onHttpRequest(req, res, { action: 'announce' }))
119 app.get('/tracker/scrape', (req, res) => onHttpRequest(req, res, { action: 'scrape' }))
121 // ----------- Views, routes and static files -----------
124 const apiRoute = '/api/' + API_VERSION
125 app.use(apiRoute, apiRouter)
127 // Services (oembed...)
128 app.use('/services', servicesRouter)
130 app.use('/', webfingerRouter)
131 app.use('/', activityPubRouter)
134 app.use('/', clientsRouter)
137 app.use('/', staticRouter)
139 // Always serve index client page (the client is a single page application, let it handle routing)
140 app.use('/*', function (req, res) {
141 if (req.accepts(ACCEPT_HEADERS) === 'html') {
142 return res.sendFile(path.join(__dirname, '../client/dist/index.html'))
145 return res.status(404).end()
148 // ----------- Errors -----------
150 // Catch 404 and forward to error handler
151 app.use(function (req, res, next) {
152 const err = new Error('Not Found')
157 app.use(function (err, req, res, next) {
158 logger.error(err, err)
159 res.sendStatus(err.status || 500)
162 // ----------- Run -----------
164 function onDatabaseInitDone () {
165 const port = CONFIG.LISTEN.PORT
169 // ----------- Make the server listening -----------
170 server.listen(port, () => {
171 VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.SIZE)
172 BadActorFollowScheduler.Instance.enable()
174 activitypubHttpJobScheduler.activate()
175 transcodingJobScheduler.activate()
177 logger.info('Server listening on port %d', port)
178 logger.info('Web server: %s', CONFIG.WEBSERVER.URL)