X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=server.ts;h=8bc5e5f320d53781584d0e1e18edd29bf3ce61a9;hb=1d9d9cfdcf3983e3fd89026bc4b5633a8abf5752;hp=a688bb5d082a108ecee908a4366c1d2f39b690df;hpb=4bdd9473fdecfa7e309e3c59b05b29d0a20ac397;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server.ts b/server.ts index a688bb5d0..8bc5e5f32 100644 --- a/server.ts +++ b/server.ts @@ -16,6 +16,8 @@ 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 anonymise from 'ip-anonymize' process.title = 'peertube' @@ -27,7 +29,7 @@ import { checkMissedConfig, checkFFmpeg, checkConfig, checkActivityPubUrls } fro // 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 } from './server/initializers/constants' +import { API_VERSION, CONFIG, CACHE } from './server/initializers/constants' const missed = checkMissedConfig() if (missed.length !== 0) { @@ -49,29 +51,12 @@ 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: { - fontSrc: ["'self'"], - frameSrc: ["'none'"], - mediaSrc: ['*', 'https:'], - objectSrc: ["'none'"], - scriptSrc: ["'self'"], - styleSrc: ["'self'"], - upgradeInsecureRequests: true - }, - browserSniff: false // assumes a modern browser, but allows CDN in front - }, - referrerPolicy: { - policy: 'strict-origin-when-cross-origin' - } + hsts: false })) // ----------- Database ----------- @@ -103,10 +88,13 @@ 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' // ----------- Command line ----------- @@ -114,25 +102,23 @@ import { UpdateVideosScheduler } from './server/lib/schedulers/update-videos-sch // Enable CORS for develop if (isTestInstance()) { - app.use((req, res, next) => { - // These routes have already cors - if ( - req.path.indexOf(STATIC_PATHS.TORRENTS) === -1 && - req.path.indexOf(STATIC_PATHS.WEBSEED) === -1 && - req.path.startsWith('/api/') === false - ) { - return (cors({ - origin: '*', - exposedHeaders: 'Retry-After', - credentials: true - }))(req, res, next) - } - - return next() - }) + app.use(cors({ + origin: '*', + exposedHeaders: 'Retry-After', + credentials: true + })) } - // For the logger +morgan.token('remote-addr', req => { + return (req.get('DNT') === '1') ? + anonymise(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) } })) @@ -144,6 +130,8 @@ app.use(bodyParser.json({ })) // Cookies app.use(cookieParser()) +// W3C DNT Tracking Status +app.use(advertiseDoNotTrack) // ----------- Views, routes and static files ----------- @@ -180,7 +168,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() }) @@ -215,6 +206,8 @@ async function startApplication () { BadActorFollowScheduler.Instance.enable() RemoveOldJobsScheduler.Instance.enable() UpdateVideosScheduler.Instance.enable() + YoutubeDlUpdateScheduler.Instance.enable() + VideosRedundancyScheduler.Instance.enable() // Redis initialization Redis.Instance.init() @@ -224,4 +217,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)) }