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