PeerTube/server.ts

243 lines
6.8 KiB
TypeScript
Raw Normal View History

2018-01-05 14:15:32 +01:00
// FIXME: https://github.com/nodejs/node/pull/16853
require('tls').DEFAULT_ECDH_CURVE = 'auto'
2017-06-11 15:19:43 +02:00
import { isTestInstance } from './server/helpers/core-utils'
if (isTestInstance()) {
2017-05-22 20:58:25 +02:00
require('source-map-support').install()
}
2016-02-07 11:47:30 +01:00
// ----------- Node modules -----------
2017-06-05 21:53:49 +02:00
import * as bodyParser from 'body-parser'
import * as express from 'express'
import * as morgan from 'morgan'
2017-06-11 15:19:43 +02:00
import * as cors from 'cors'
2018-06-28 13:59:48 +02: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 15:27:47 +01:00
import * as cli from 'commander'
2016-02-07 11:47:30 +01:00
2016-10-21 14:23:20 +02:00
process.title = 'peertube'
2016-02-07 11:47:30 +01:00
// Create our main app
2016-03-21 21:13:10 +01:00
const app = express()
2016-02-07 11:47:30 +01:00
2017-08-26 09:17:20 +02:00
// ----------- Core checker -----------
import { checkMissedConfig, checkFFmpeg } from './server/initializers/checker-before-init'
2018-03-26 15:54:13 +02:00
// Do not use barrels because we don't want to load all modules here (we need to initialize database first)
import { logger } from './server/helpers/logger'
import { API_VERSION, CONFIG, CACHE, HTTP_SIGNATURE } from './server/initializers/constants'
2018-03-26 15:54:13 +02:00
2017-05-15 22:22:03 +02:00
const missed = checkMissedConfig()
if (missed.length !== 0) {
2018-03-26 15:54:13 +02:00
logger.error('Your configuration files miss keys: ' + missed)
process.exit(-1)
}
2017-08-26 09:17:20 +02:00
checkFFmpeg(CONFIG)
2018-03-26 15:54:13 +02:00
.catch(err => {
logger.error('Error in ffmpeg check.', { err })
process.exit(-1)
})
import { checkConfig, checkActivityPubUrls } from './server/initializers/checker-after-init'
2017-05-15 22:22:03 +02:00
const errorMessage = checkConfig()
if (errorMessage !== null) {
throw new Error(errorMessage)
}
2018-03-29 10:58:24 +02:00
// Trust our proxy (IP forwarding...)
app.set('trust proxy', CONFIG.TRUST_PROXY)
2018-07-19 16:17:54 +02:00
// Security middleware
import { baseCSP } from './server/middlewares'
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 09:17:20 +02:00
// ----------- Database -----------
2017-12-13 17:46:23 +01:00
2017-08-26 09:17:20 +02:00
// Initialize database and models
2017-12-13 17:46:23 +01:00
import { initDatabaseModels } from './server/initializers/database'
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 09:17:20 +02:00
// ----------- PeerTube modules -----------
2017-12-13 17:46:23 +01:00
import { installApplication } from './server/initializers'
2018-01-30 13:27:07 +01:00
import { Emailer } from './server/lib/emailer'
import { JobQueue } from './server/lib/job-queue'
import { VideosPreviewCache, VideosCaptionCache } from './server/lib/cache'
import {
activityPubRouter,
apiRouter,
clientsRouter,
feedsRouter,
staticRouter,
servicesRouter,
2018-06-26 16:53:24 +02:00
webfingerRouter,
trackerRouter,
2018-12-05 17:27:24 +01:00
createWebsocketServer, botsRouter
} from './server/controllers'
import { advertiseDoNotTrack } from './server/middlewares/dnt'
2018-01-30 13:27:07 +01:00
import { Redis } from './server/lib/redis'
import { ActorFollowScheduler } from './server/lib/schedulers/actor-follow-scheduler'
import { RemoveOldJobsScheduler } from './server/lib/schedulers/remove-old-jobs-scheduler'
import { UpdateVideosScheduler } from './server/lib/schedulers/update-videos-scheduler'
2018-08-02 16:02:51 +02:00
import { YoutubeDlUpdateScheduler } from './server/lib/schedulers/youtube-dl-update-scheduler'
2018-09-11 16:27:07 +02:00
import { VideosRedundancyScheduler } from './server/lib/schedulers/videos-redundancy-scheduler'
import { isHTTPSignatureDigestValid } from './server/helpers/peertube-crypto'
2016-02-07 11:47:30 +01:00
// ----------- Command line -----------
2018-11-14 15:27:47 +01:00
cli
.option('--no-client', 'Start PeerTube without client interface')
.parse(process.argv)
2016-02-07 11:47:30 +01:00
// ----------- App -----------
// Enable CORS for develop
if (isTestInstance()) {
2018-07-17 15:04:54 +02:00
app.use(cors({
origin: '*',
exposedHeaders: 'Retry-After',
credentials: true
}))
}
2016-02-07 11:47:30 +01:00
// For the logger
morgan.token('remote-addr', req => {
return (req.get('DNT') === '1') ?
anonymize(req.ip || (req.connection && req.connection.remoteAddress) || undefined,
16, // bitmask for IPv4
16 // bitmask for IPv6
) :
req.ip
})
morgan.token('user-agent', req => (req.get('DNT') === '1') ?
useragent.parse(req.get('user-agent')).family : req.get('user-agent'))
2017-05-22 20:58:25 +02:00
app.use(morgan('combined', {
2018-01-19 13:58:13 +01:00
stream: { write: logger.info.bind(logger) }
2017-05-22 20:58:25 +02:00
}))
2016-02-07 11:47:30 +01:00
// For body requests
app.use(bodyParser.urlencoded({ extended: false }))
app.use(bodyParser.json({
type: [ 'application/json', 'application/*+json' ],
limit: '500kb',
verify: (req: express.Request, _, buf: Buffer, encoding: string) => {
const valid = isHTTPSignatureDigestValid(buf, req)
if (valid !== true) throw new Error('Invalid digest')
}
}))
2018-06-28 13:59:48 +02:00
// Cookies
app.use(cookieParser())
// W3C DNT Tracking Status
app.use(advertiseDoNotTrack)
2016-02-07 11:47:30 +01:00
// ----------- Views, routes and static files -----------
// API
const apiRoute = '/api/' + API_VERSION
app.use(apiRoute, apiRouter)
// Services (oembed...)
app.use('/services', servicesRouter)
2017-11-14 17:31:26 +01:00
app.use('/', activityPubRouter)
app.use('/', feedsRouter)
app.use('/', webfingerRouter)
2018-06-26 16:53:24 +02:00
app.use('/', trackerRouter)
2018-12-05 17:27:24 +01:00
app.use('/', botsRouter)
2017-11-14 17:31:26 +01:00
// Static files
app.use('/', staticRouter)
2018-05-31 18:12:15 +02:00
// Client files, last valid routes!
2018-11-14 15:27:47 +01:00
if (cli.client) app.use('/', clientsRouter)
2016-02-07 11:47:30 +01:00
// ----------- Errors -----------
// Catch 404 and forward to error handler
app.use(function (req, res, next) {
2016-03-21 21:13:10 +01:00
const err = new Error('Not Found')
2017-05-15 22:22:03 +02:00
err['status'] = 404
2016-02-07 11:47:30 +01:00
next(err)
})
2016-03-07 14:48:46 +01:00
app.use(function (err, req, res, next) {
2018-02-14 15:33:49 +01: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 })
2018-02-14 15:33:49 +01:00
return res.status(err.status || 500).end()
2016-03-07 14:48:46 +01:00
})
2016-02-07 11:47:30 +01:00
2018-06-26 16:53:24 +02:00
const server = createWebsocketServer(app)
// ----------- Run -----------
async function startApplication () {
2017-05-15 22:22:03 +02:00
const port = CONFIG.LISTEN.PORT
const hostname = CONFIG.LISTEN.HOSTNAME
2017-12-13 17:46:23 +01:00
await installApplication()
// Check activity pub urls are valid
checkActivityPubUrls()
.catch(err => {
logger.error('Error in ActivityPub URLs checker.', { err })
process.exit(-1)
})
// Email initialization
Emailer.Instance.init()
2018-11-19 15:21:09 +01:00
await Promise.all([
Emailer.Instance.checkConnectionOrDie(),
JobQueue.Instance.init()
])
// Caches initializations
2018-07-16 14:22:16 +02:00
VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.SIZE, CACHE.PREVIEWS.MAX_AGE)
VideosCaptionCache.Instance.init(CONFIG.CACHE.VIDEO_CAPTIONS.SIZE, CACHE.VIDEO_CAPTIONS.MAX_AGE)
// Enable Schedulers
ActorFollowScheduler.Instance.enable()
RemoveOldJobsScheduler.Instance.enable()
UpdateVideosScheduler.Instance.enable()
2018-08-02 16:02:51 +02:00
YoutubeDlUpdateScheduler.Instance.enable()
2018-09-11 16:27:07 +02:00
VideosRedundancyScheduler.Instance.enable()
// Redis initialization
Redis.Instance.init()
// Make server listening
2018-04-18 16:04:49 +02:00
server.listen(port, hostname, () => {
logger.info('Server listening on %s:%d', hostname, port)
logger.info('Web server: %s', CONFIG.WEBSERVER.URL)
})
2018-07-30 18:49:54 +02:00
process.on('exit', () => {
JobQueue.Instance.terminate()
})
process.on('SIGINT', () => process.exit(0))
2017-02-18 11:56:28 +01:00
}