1
0
Fork 0
peertube/server.ts

309 lines
9.2 KiB
TypeScript
Raw Normal View History

import { registerTSPaths } from './server/helpers/register-ts-paths'
registerTSPaths()
2019-07-05 13:28:49 +00:00
2017-06-11 13:19:43 +00:00
import { isTestInstance } from './server/helpers/core-utils'
if (isTestInstance()) {
2017-05-22 18:58:25 +00:00
require('source-map-support').install()
}
2016-02-07 10:47:30 +00:00
// ----------- Node modules -----------
2017-06-05 19:53:49 +00:00
import * as bodyParser from 'body-parser'
import * as express from 'express'
import * as morgan from 'morgan'
2017-06-11 13:19:43 +00:00
import * as cors from 'cors'
2018-06-28 11:59:48 +00:00
import * as cookieParser from 'cookie-parser'
import * as helmet from 'helmet'
import * as useragent from 'useragent'
import * as anonymize from 'ip-anonymize'
2018-11-14 14:27:47 +00:00
import * as cli from 'commander'
2016-02-07 10:47:30 +00:00
2016-10-21 12:23:20 +00:00
process.title = 'peertube'
2016-02-07 10:47:30 +00:00
// Create our main app
const app = express().disable("x-powered-by")
2016-02-07 10:47:30 +00:00
2017-08-26 07:17:20 +00:00
// ----------- Core checker -----------
import { checkMissedConfig, checkFFmpeg, checkNodeVersion } from './server/initializers/checker-before-init'
2018-03-26 13:54:13 +00:00
// Do not use barrels because we don't want to load all modules here (we need to initialize database first)
import { CONFIG } from './server/initializers/config'
import { API_VERSION, FILES_CACHE, WEBSERVER, loadLanguages } from './server/initializers/constants'
import { logger } from './server/helpers/logger'
2018-03-26 13:54:13 +00:00
2017-05-15 20:22:03 +00:00
const missed = checkMissedConfig()
if (missed.length !== 0) {
2018-03-26 13:54:13 +00:00
logger.error('Your configuration files miss keys: ' + missed)
process.exit(-1)
}
2017-08-26 07:17:20 +00:00
checkFFmpeg(CONFIG)
2018-03-26 13:54:13 +00:00
.catch(err => {
logger.error('Error in ffmpeg check.', { err })
process.exit(-1)
})
checkNodeVersion()
2021-03-11 08:51:08 +00:00
import { checkConfig, checkActivityPubUrls, checkFFmpegVersion } from './server/initializers/checker-after-init'
2017-05-15 20:22:03 +00:00
const errorMessage = checkConfig()
if (errorMessage !== null) {
throw new Error(errorMessage)
}
2018-03-29 08:58:24 +00:00
// Trust our proxy (IP forwarding...)
app.set('trust proxy', CONFIG.TRUST_PROXY)
2018-07-19 14:17:54 +00:00
// Security middleware
2019-02-26 09:55:40 +00:00
import { baseCSP } from './server/middlewares/csp'
if (CONFIG.CSP.ENABLED) {
app.use(baseCSP)
app.use(helmet({
frameguard: {
action: 'deny' // we only allow it for /videos/embed, see server/controllers/client.ts
},
hsts: false
}))
}
2017-08-26 07:17:20 +00:00
// ----------- Database -----------
2017-12-13 16:46:23 +00:00
2017-08-26 07:17:20 +00:00
// Initialize database and models
2020-08-24 12:11:15 +00:00
import { initDatabaseModels, checkDatabaseConnectionOrDie } from './server/initializers/database'
checkDatabaseConnectionOrDie()
2017-12-13 16:46:23 +00:00
import { migrate } from './server/initializers/migrator'
migrate()
.then(() => initDatabaseModels(false))
.then(() => startApplication())
.catch(err => {
logger.error('Cannot start application.', { err })
process.exit(-1)
})
2017-08-26 07:17:20 +00:00
// ----------- Initialize -----------
loadLanguages()
// ----------- PeerTube modules -----------
2020-05-07 12:58:24 +00:00
import { installApplication } from './server/initializers/installer'
2018-01-30 12:27:07 +00:00
import { Emailer } from './server/lib/emailer'
import { JobQueue } from './server/lib/job-queue'
2019-03-19 13:23:17 +00:00
import { VideosPreviewCache, VideosCaptionCache } from './server/lib/files-cache'
import {
activityPubRouter,
apiRouter,
clientsRouter,
feedsRouter,
staticRouter,
2019-08-09 09:32:40 +00:00
lazyStaticRouter,
servicesRouter,
liveRouter,
pluginsRouter,
2018-06-26 14:53:24 +00:00
webfingerRouter,
trackerRouter,
createWebsocketTrackerServer,
botsRouter,
downloadRouter
} from './server/controllers'
import { advertiseDoNotTrack } from './server/middlewares/dnt'
2018-01-30 12:27:07 +00:00
import { Redis } from './server/lib/redis'
import { ActorFollowScheduler } from './server/lib/schedulers/actor-follow-scheduler'
2019-04-11 15:33:36 +00:00
import { RemoveOldViewsScheduler } from './server/lib/schedulers/remove-old-views-scheduler'
import { RemoveOldJobsScheduler } from './server/lib/schedulers/remove-old-jobs-scheduler'
import { UpdateVideosScheduler } from './server/lib/schedulers/update-videos-scheduler'
2018-08-02 14:02:51 +00:00
import { YoutubeDlUpdateScheduler } from './server/lib/schedulers/youtube-dl-update-scheduler'
2018-09-11 14:27:07 +00:00
import { VideosRedundancyScheduler } from './server/lib/schedulers/videos-redundancy-scheduler'
import { RemoveOldHistoryScheduler } from './server/lib/schedulers/remove-old-history-scheduler'
import { AutoFollowIndexInstances } from './server/lib/schedulers/auto-follow-index-instances'
import { isHTTPSignatureDigestValid } from './server/helpers/peertube-crypto'
2018-12-26 09:36:24 +00:00
import { PeerTubeSocket } from './server/lib/peertube-socket'
2019-04-08 09:13:49 +00:00
import { updateStreamingPlaylistsInfohashesIfNeeded } from './server/lib/hls'
2019-07-16 12:52:24 +00:00
import { PluginsCheckScheduler } from './server/lib/schedulers/plugins-check-scheduler'
2019-07-19 15:30:41 +00:00
import { Hooks } from './server/lib/plugins/hooks'
2019-10-21 14:02:15 +00:00
import { PluginManager } from './server/lib/plugins/plugin-manager'
import { LiveManager } from './server/lib/live-manager'
import { HttpStatusCode } from './shared/core-utils/miscs/http-error-codes'
import { VideosTorrentCache } from '@server/lib/files-cache/videos-torrent-cache'
2016-02-07 10:47:30 +00:00
// ----------- Command line -----------
2018-11-14 14:27:47 +00:00
cli
.option('--no-client', 'Start PeerTube without client interface')
.option('--no-plugins', 'Start PeerTube without plugins/themes enabled')
2018-11-14 14:27:47 +00:00
.parse(process.argv)
2016-02-07 10:47:30 +00:00
// ----------- App -----------
// Enable CORS for develop
if (isTestInstance()) {
2018-07-17 13:04:54 +00:00
app.use(cors({
origin: '*',
exposedHeaders: 'Retry-After',
credentials: true
}))
}
2016-02-07 10:47:30 +00:00
// For the logger
morgan.token('remote-addr', (req: express.Request) => {
if (CONFIG.LOG.ANONYMIZE_IP === true || req.get('DNT') === '1') {
return anonymize(req.ip, 16, 16)
}
return req.ip
})
morgan.token('user-agent', (req: express.Request) => {
if (req.get('DNT') === '1') {
return useragent.parse(req.get('user-agent')).family
}
return req.get('user-agent')
})
2017-05-22 18:58:25 +00:00
app.use(morgan('combined', {
stream: {
write: (str: string) => logger.info(str, { tags: [ 'http' ] })
},
2021-01-13 08:38:19 +00:00
skip: req => CONFIG.LOG.LOG_PING_REQUESTS === false && req.originalUrl === '/api/v1/ping'
2017-05-22 18:58:25 +00:00
}))
2016-02-07 10:47:30 +00:00
// For body requests
app.use(bodyParser.urlencoded({ extended: false }))
app.use(bodyParser.json({
type: [ 'application/json', 'application/*+json' ],
limit: '500kb',
2018-12-26 09:36:24 +00:00
verify: (req: express.Request, _, buf: Buffer) => {
const valid = isHTTPSignatureDigestValid(buf, req)
if (valid !== true) throw new Error('Invalid digest')
}
}))
2018-06-28 11:59:48 +00:00
// Cookies
app.use(cookieParser())
// W3C DNT Tracking Status
app.use(advertiseDoNotTrack)
2016-02-07 10:47:30 +00:00
// ----------- Views, routes and static files -----------
// API
const apiRoute = '/api/' + API_VERSION
app.use(apiRoute, apiRouter)
// Services (oembed...)
app.use('/services', servicesRouter)
// Live streaming
app.use('/live', liveRouter)
// Plugins & themes
2019-07-12 09:39:58 +00:00
app.use('/', pluginsRouter)
2017-11-14 16:31:26 +00:00
app.use('/', activityPubRouter)
app.use('/', feedsRouter)
app.use('/', webfingerRouter)
2018-06-26 14:53:24 +00:00
app.use('/', trackerRouter)
2018-12-05 16:27:24 +00:00
app.use('/', botsRouter)
2017-11-14 16:31:26 +00:00
// Static files
app.use('/', staticRouter)
app.use('/', downloadRouter)
2019-08-09 09:32:40 +00:00
app.use('/', lazyStaticRouter)
2018-05-31 16:12:15 +00:00
// Client files, last valid routes!
2021-02-03 08:33:05 +00:00
const cliOptions = cli.opts()
if (cliOptions.client) app.use('/', clientsRouter)
2016-02-07 10:47:30 +00:00
// ----------- Errors -----------
// Catch 404 and forward to error handler
app.use(function (req, res, next) {
2016-03-21 20:13:10 +00:00
const err = new Error('Not Found')
err['status'] = HttpStatusCode.NOT_FOUND_404
2016-02-07 10:47:30 +00:00
next(err)
})
2016-03-07 13:48:46 +00:00
app.use(function (err, req, res, next) {
2018-02-14 14:33:49 +00:00
let error = 'Unknown error.'
if (err) {
error = err.stack || err.message || err
}
// Sequelize error
const sql = err.parent ? err.parent.sql : undefined
logger.error('Error in controller.', { err: error, sql })
return res.status(err.status || HttpStatusCode.INTERNAL_SERVER_ERROR_500).end()
2016-03-07 13:48:46 +00:00
})
2016-02-07 10:47:30 +00:00
2018-12-26 09:36:24 +00:00
const server = createWebsocketTrackerServer(app)
2018-06-26 14:53:24 +00:00
// ----------- Run -----------
async function startApplication () {
2017-05-15 20:22:03 +00:00
const port = CONFIG.LISTEN.PORT
const hostname = CONFIG.LISTEN.HOSTNAME
2017-12-13 16:46:23 +00:00
await installApplication()
// Check activity pub urls are valid
checkActivityPubUrls()
.catch(err => {
logger.error('Error in ActivityPub URLs checker.', { err })
process.exit(-1)
})
2021-03-11 08:51:08 +00:00
checkFFmpegVersion()
.catch(err => logger.error('Cannot check ffmpeg version', { err }))
// Email initialization
Emailer.Instance.init()
2018-11-19 14:21:09 +00:00
await Promise.all([
Emailer.Instance.checkConnection(),
2018-11-19 14:21:09 +00:00
JobQueue.Instance.init()
])
// Caches initializations
2019-03-19 13:23:17 +00:00
VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.SIZE, FILES_CACHE.PREVIEWS.MAX_AGE)
VideosCaptionCache.Instance.init(CONFIG.CACHE.VIDEO_CAPTIONS.SIZE, FILES_CACHE.VIDEO_CAPTIONS.MAX_AGE)
VideosTorrentCache.Instance.init(CONFIG.CACHE.TORRENTS.SIZE, FILES_CACHE.TORRENTS.MAX_AGE)
// Enable Schedulers
ActorFollowScheduler.Instance.enable()
RemoveOldJobsScheduler.Instance.enable()
UpdateVideosScheduler.Instance.enable()
2018-08-02 14:02:51 +00:00
YoutubeDlUpdateScheduler.Instance.enable()
2018-09-11 14:27:07 +00:00
VideosRedundancyScheduler.Instance.enable()
RemoveOldHistoryScheduler.Instance.enable()
2019-04-11 15:33:36 +00:00
RemoveOldViewsScheduler.Instance.enable()
2019-07-16 12:52:24 +00:00
PluginsCheckScheduler.Instance.enable()
AutoFollowIndexInstances.Instance.enable()
// Redis initialization
Redis.Instance.init()
2018-12-26 09:36:24 +00:00
PeerTubeSocket.Instance.init(server)
2019-04-08 09:13:49 +00:00
updateStreamingPlaylistsInfohashesIfNeeded()
.catch(err => logger.error('Cannot update streaming playlist infohashes.', { err }))
2021-02-03 08:33:05 +00:00
if (cliOptions.plugins) await PluginManager.Instance.registerPluginsAndThemes()
2019-07-05 13:28:49 +00:00
LiveManager.Instance.init()
if (CONFIG.LIVE.ENABLED) LiveManager.Instance.run()
// Make server listening
2018-04-18 14:04:49 +00:00
server.listen(port, hostname, () => {
logger.info('HTTP server listening on %s:%d', hostname, port)
logger.info('Web server: %s', WEBSERVER.URL)
2019-07-19 15:30:41 +00:00
Hooks.runAction('action:application.listening')
2018-04-18 14:04:49 +00:00
})
2018-07-30 16:49:54 +00:00
process.on('exit', () => {
JobQueue.Instance.terminate()
})
process.on('SIGINT', () => process.exit(0))
2017-02-18 10:56:28 +00:00
}