X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server.ts;h=3025a6fd7fbf0c5c28f4957bf026d39a7e735e8d;hb=a8f378e02c1b0dbb6d6ac202a369d0df18eb9317;hp=104de21533ad3368ab0df84898099c50dc67e337;hpb=57bf30a984ccbe58e1506f903055a15c1ddaf8f2;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server.ts b/server.ts index 104de2153..3025a6fd7 100644 --- a/server.ts +++ b/server.ts @@ -1,6 +1,4 @@ // FIXME: https://github.com/nodejs/node/pull/16853 -import { VideosCaptionCache } from './server/lib/cache/videos-caption-cache' - require('tls').DEFAULT_ECDH_CURVE = 'auto' import { isTestInstance } from './server/helpers/core-utils' @@ -16,6 +14,9 @@ import * as morgan from 'morgan' import * as cors from 'cors' import * as cookieParser from 'cookie-parser' import * as helmet from 'helmet' +import * as useragent from 'useragent' +import * as anonymize from 'ip-anonymize' +import * as cli from 'commander' process.title = 'peertube' @@ -23,11 +24,11 @@ process.title = 'peertube' const app = express() // ----------- Core checker ----------- -import { checkMissedConfig, checkFFmpeg, checkConfig, checkActivityPubUrls } from './server/initializers/checker' +import { checkMissedConfig, checkFFmpeg } from './server/initializers/checker-before-init' // 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, STATIC_PATHS, CACHE, REMOTE_SCHEME } from './server/initializers/constants' +import { API_VERSION, CONFIG, CACHE, HTTP_SIGNATURE } from './server/initializers/constants' const missed = checkMissedConfig() if (missed.length !== 0) { @@ -41,6 +42,8 @@ checkFFmpeg(CONFIG) process.exit(-1) }) +import { checkConfig, checkActivityPubUrls } from './server/initializers/checker-after-init' + const errorMessage = checkConfig() if (errorMessage !== null) { throw new Error(errorMessage) @@ -49,43 +52,13 @@ if (errorMessage !== null) { // Trust our proxy (IP forwarding...) app.set('trust proxy', CONFIG.TRUST_PROXY) -// Security middlewares +// Security middleware app.use(helmet({ frameguard: { action: 'deny' // we only allow it for /videos/embed, see server/controllers/client.ts }, - dnsPrefetchControl: { - allow: true - }, - contentSecurityPolicy: { - directives: { - defaultSrc: ['*', 'data:', REMOTE_SCHEME.WS + ':', REMOTE_SCHEME.HTTP + ':'], - fontSrc: ["'self'", 'data:'], - frameSrc: ["'none'"], - mediaSrc: ['*', REMOTE_SCHEME.HTTP + ':'], - objectSrc: ["'none'"], - scriptSrc: ["'self'", "'unsafe-inline'", "'unsafe-eval'"], - styleSrc: ["'self'", "'unsafe-inline'"], - upgradeInsecureRequests: false - }, - browserSniff: false // assumes a modern browser, but allows CDN in front - }, - referrerPolicy: { - policy: 'strict-origin-when-cross-origin' - } + hsts: false })) -app.use((_, res, next) => { - [ - "vibrate 'none'", - "geolocation 'none'", - "camera 'none'", - "microphone 'none'", - "magnetometer 'none'", - "payment 'none'", - "accelerometer 'none'" - ].forEach(e => res.append('Feature-Policy', e + ';')) - next() -}) // ----------- Database ----------- @@ -104,7 +77,7 @@ migrate() import { installApplication } from './server/initializers' import { Emailer } from './server/lib/emailer' import { JobQueue } from './server/lib/job-queue' -import { VideosPreviewCache } from './server/lib/cache' +import { VideosPreviewCache, VideosCaptionCache } from './server/lib/cache' import { activityPubRouter, apiRouter, @@ -116,13 +89,21 @@ import { trackerRouter, createWebsocketServer } from './server/controllers' +import { advertiseDoNotTrack } from './server/middlewares/dnt' import { Redis } from './server/lib/redis' import { BadActorFollowScheduler } from './server/lib/schedulers/bad-actor-follow-scheduler' import { RemoveOldJobsScheduler } from './server/lib/schedulers/remove-old-jobs-scheduler' import { UpdateVideosScheduler } from './server/lib/schedulers/update-videos-scheduler' +import { YoutubeDlUpdateScheduler } from './server/lib/schedulers/youtube-dl-update-scheduler' +import { VideosRedundancyScheduler } from './server/lib/schedulers/videos-redundancy-scheduler' +import { isHTTPSignatureDigestValid } from './server/helpers/peertube-crypto' // ----------- Command line ----------- +cli + .option('--no-client', 'Start PeerTube without client interface') + .parse(process.argv) + // ----------- App ----------- // Enable CORS for develop @@ -133,8 +114,17 @@ if (isTestInstance()) { credentials: true })) } - // 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')) app.use(morgan('combined', { stream: { write: logger.info.bind(logger) } })) @@ -142,10 +132,16 @@ app.use(morgan('combined', { app.use(bodyParser.urlencoded({ extended: false })) app.use(bodyParser.json({ type: [ 'application/json', 'application/*+json' ], - limit: '500kb' + limit: '500kb', + verify: (req: express.Request, _, buf: Buffer, encoding: string) => { + const valid = isHTTPSignatureDigestValid(buf, req) + if (valid !== true) throw new Error('Invalid digest') + } })) // Cookies app.use(cookieParser()) +// W3C DNT Tracking Status +app.use(advertiseDoNotTrack) // ----------- Views, routes and static files ----------- @@ -165,7 +161,7 @@ app.use('/', trackerRouter) app.use('/', staticRouter) // Client files, last valid routes! -app.use('/', clientsRouter) +if (cli.client) app.use('/', clientsRouter) // ----------- Errors ----------- @@ -182,7 +178,10 @@ app.use(function (err, req, res, next) { error = err.stack || err.message || err } - logger.error('Error in controller.', { error }) + // Sequelize error + const sql = err.parent ? err.parent.sql : undefined + + logger.error('Error in controller.', { err: error, sql }) return res.status(err.status || 500).end() }) @@ -205,9 +204,11 @@ async function startApplication () { // Email initialization Emailer.Instance.init() - await Emailer.Instance.checkConnectionOrDie() - await JobQueue.Instance.init() + await Promise.all([ + Emailer.Instance.checkConnectionOrDie(), + JobQueue.Instance.init() + ]) // Caches initializations VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.SIZE, CACHE.PREVIEWS.MAX_AGE) @@ -217,6 +218,8 @@ async function startApplication () { BadActorFollowScheduler.Instance.enable() RemoveOldJobsScheduler.Instance.enable() UpdateVideosScheduler.Instance.enable() + YoutubeDlUpdateScheduler.Instance.enable() + VideosRedundancyScheduler.Instance.enable() // Redis initialization Redis.Instance.init() @@ -226,4 +229,10 @@ async function startApplication () { logger.info('Server listening on %s:%d', hostname, port) logger.info('Web server: %s', CONFIG.WEBSERVER.URL) }) + + process.on('exit', () => { + JobQueue.Instance.terminate() + }) + + process.on('SIGINT', () => process.exit(0)) }