2018-01-05 08:15:32 -05:00
|
|
|
// FIXME: https://github.com/nodejs/node/pull/16853
|
|
|
|
require('tls').DEFAULT_ECDH_CURVE = 'auto'
|
|
|
|
|
2017-06-11 09:19:43 -04:00
|
|
|
import { isTestInstance } from './server/helpers/core-utils'
|
|
|
|
|
|
|
|
if (isTestInstance()) {
|
2017-05-22 14:58:25 -04:00
|
|
|
require('source-map-support').install()
|
|
|
|
}
|
|
|
|
|
2016-02-07 05:47:30 -05:00
|
|
|
// ----------- Node modules -----------
|
2017-06-05 15:53:49 -04:00
|
|
|
import * as bodyParser from 'body-parser'
|
|
|
|
import * as express from 'express'
|
|
|
|
import * as morgan from 'morgan'
|
2017-06-11 09:19:43 -04:00
|
|
|
import * as cors from 'cors'
|
2018-06-28 07:59:48 -04:00
|
|
|
import * as cookieParser from 'cookie-parser'
|
2018-07-16 03:02:08 -04:00
|
|
|
import * as helmet from 'helmet'
|
2018-08-02 20:02:01 -04:00
|
|
|
import * as useragent from 'useragent'
|
2018-09-24 07:07:33 -04:00
|
|
|
import * as anonymize from 'ip-anonymize'
|
2016-02-07 05:47:30 -05:00
|
|
|
|
2016-10-21 08:23:20 -04:00
|
|
|
process.title = 'peertube'
|
|
|
|
|
2016-02-07 05:47:30 -05:00
|
|
|
// Create our main app
|
2016-03-21 16:13:10 -04:00
|
|
|
const app = express()
|
2016-02-07 05:47:30 -05:00
|
|
|
|
2017-08-26 03:17:20 -04:00
|
|
|
// ----------- Core checker -----------
|
2018-09-24 07:07:33 -04:00
|
|
|
import { checkMissedConfig, checkFFmpeg } from './server/initializers/checker-before-init'
|
2016-07-01 10:03:53 -04:00
|
|
|
|
2018-03-26 09:54:13 -04: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'
|
2018-08-02 20:02:01 -04:00
|
|
|
import { API_VERSION, CONFIG, CACHE } from './server/initializers/constants'
|
2018-03-26 09:54:13 -04:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const missed = checkMissedConfig()
|
2016-11-01 14:46:07 -04:00
|
|
|
if (missed.length !== 0) {
|
2018-03-26 09:54:13 -04:00
|
|
|
logger.error('Your configuration files miss keys: ' + missed)
|
|
|
|
process.exit(-1)
|
2016-11-01 14:46:07 -04:00
|
|
|
}
|
2017-08-26 03:17:20 -04:00
|
|
|
|
|
|
|
checkFFmpeg(CONFIG)
|
2018-03-26 09:54:13 -04:00
|
|
|
.catch(err => {
|
|
|
|
logger.error('Error in ffmpeg check.', { err })
|
|
|
|
process.exit(-1)
|
|
|
|
})
|
2016-11-01 14:46:07 -04:00
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
import { checkConfig, checkActivityPubUrls } from './server/initializers/checker-after-init'
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const errorMessage = checkConfig()
|
2016-11-01 14:46:07 -04:00
|
|
|
if (errorMessage !== null) {
|
|
|
|
throw new Error(errorMessage)
|
2016-07-01 10:03:53 -04:00
|
|
|
}
|
|
|
|
|
2018-03-29 04:58:24 -04:00
|
|
|
// Trust our proxy (IP forwarding...)
|
|
|
|
app.set('trust proxy', CONFIG.TRUST_PROXY)
|
|
|
|
|
2018-07-19 10:17:54 -04:00
|
|
|
// Security middleware
|
2018-07-16 03:02:08 -04:00
|
|
|
app.use(helmet({
|
|
|
|
frameguard: {
|
2018-07-17 05:37:25 -04:00
|
|
|
action: 'deny' // we only allow it for /videos/embed, see server/controllers/client.ts
|
2018-09-09 16:10:38 -04:00
|
|
|
},
|
|
|
|
hsts: false
|
2018-07-16 03:02:08 -04:00
|
|
|
}))
|
|
|
|
|
2017-08-26 03:17:20 -04:00
|
|
|
// ----------- Database -----------
|
2017-12-13 11:46:23 -05:00
|
|
|
|
2017-08-26 03:17:20 -04:00
|
|
|
// Initialize database and models
|
2017-12-13 11:46:23 -05:00
|
|
|
import { initDatabaseModels } from './server/initializers/database'
|
|
|
|
import { migrate } from './server/initializers/migrator'
|
|
|
|
migrate()
|
|
|
|
.then(() => initDatabaseModels(false))
|
2018-04-04 05:04:14 -04:00
|
|
|
.then(() => startApplication())
|
|
|
|
.catch(err => {
|
|
|
|
logger.error('Cannot start application.', { err })
|
|
|
|
process.exit(-1)
|
|
|
|
})
|
2017-08-26 03:17:20 -04:00
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
// ----------- PeerTube modules -----------
|
2017-12-13 11:46:23 -05:00
|
|
|
import { installApplication } from './server/initializers'
|
2018-01-30 07:27:07 -05:00
|
|
|
import { Emailer } from './server/lib/emailer'
|
2018-01-25 09:05:18 -05:00
|
|
|
import { JobQueue } from './server/lib/job-queue'
|
2018-09-24 07:07:33 -04:00
|
|
|
import { VideosPreviewCache, VideosCaptionCache } from './server/lib/cache'
|
2018-04-16 18:49:04 -04:00
|
|
|
import {
|
|
|
|
activityPubRouter,
|
|
|
|
apiRouter,
|
|
|
|
clientsRouter,
|
|
|
|
feedsRouter,
|
|
|
|
staticRouter,
|
|
|
|
servicesRouter,
|
2018-06-26 10:53:24 -04:00
|
|
|
webfingerRouter,
|
|
|
|
trackerRouter,
|
|
|
|
createWebsocketServer
|
2018-04-16 18:49:04 -04:00
|
|
|
} from './server/controllers'
|
2018-08-02 20:02:01 -04:00
|
|
|
import { advertiseDoNotTrack } from './server/middlewares/dnt'
|
2018-01-30 07:27:07 -05:00
|
|
|
import { Redis } from './server/lib/redis'
|
2018-01-11 03:35:50 -05:00
|
|
|
import { BadActorFollowScheduler } from './server/lib/schedulers/bad-actor-follow-scheduler'
|
2018-01-25 09:05:18 -05:00
|
|
|
import { RemoveOldJobsScheduler } from './server/lib/schedulers/remove-old-jobs-scheduler'
|
2018-06-14 12:06:56 -04:00
|
|
|
import { UpdateVideosScheduler } from './server/lib/schedulers/update-videos-scheduler'
|
2018-08-02 10:02:51 -04:00
|
|
|
import { YoutubeDlUpdateScheduler } from './server/lib/schedulers/youtube-dl-update-scheduler'
|
2018-09-11 10:27:07 -04:00
|
|
|
import { VideosRedundancyScheduler } from './server/lib/schedulers/videos-redundancy-scheduler'
|
2016-02-07 05:47:30 -05:00
|
|
|
|
|
|
|
// ----------- Command line -----------
|
|
|
|
|
|
|
|
// ----------- App -----------
|
|
|
|
|
2018-06-28 23:23:26 -04:00
|
|
|
// Enable CORS for develop
|
|
|
|
if (isTestInstance()) {
|
2018-07-17 09:04:54 -04:00
|
|
|
app.use(cors({
|
|
|
|
origin: '*',
|
|
|
|
exposedHeaders: 'Retry-After',
|
|
|
|
credentials: true
|
|
|
|
}))
|
2018-06-28 23:23:26 -04:00
|
|
|
}
|
2016-02-07 05:47:30 -05:00
|
|
|
// For the logger
|
2018-08-02 20:02:01 -04:00
|
|
|
morgan.token('remote-addr', req => {
|
|
|
|
return (req.get('DNT') === '1') ?
|
2018-09-24 07:07:33 -04:00
|
|
|
anonymize(req.ip || (req.connection && req.connection.remoteAddress) || undefined,
|
2018-08-02 20:02:01 -04:00
|
|
|
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 14:58:25 -04:00
|
|
|
app.use(morgan('combined', {
|
2018-01-19 07:58:13 -05:00
|
|
|
stream: { write: logger.info.bind(logger) }
|
2017-05-22 14:58:25 -04:00
|
|
|
}))
|
2016-02-07 05:47:30 -05:00
|
|
|
// For body requests
|
2018-03-26 05:49:44 -04:00
|
|
|
app.use(bodyParser.urlencoded({ extended: false }))
|
2017-11-29 05:34:44 -05:00
|
|
|
app.use(bodyParser.json({
|
2017-11-29 07:18:05 -05:00
|
|
|
type: [ 'application/json', 'application/*+json' ],
|
2017-11-29 05:34:44 -05:00
|
|
|
limit: '500kb'
|
|
|
|
}))
|
2018-06-28 07:59:48 -04:00
|
|
|
// Cookies
|
|
|
|
app.use(cookieParser())
|
2018-08-02 20:02:01 -04:00
|
|
|
// W3C DNT Tracking Status
|
|
|
|
app.use(advertiseDoNotTrack)
|
2016-02-07 05:47:30 -05:00
|
|
|
|
2017-10-19 08:58:28 -04: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 11:31:26 -05:00
|
|
|
app.use('/', activityPubRouter)
|
2018-04-16 18:49:04 -04:00
|
|
|
app.use('/', feedsRouter)
|
|
|
|
app.use('/', webfingerRouter)
|
2018-06-26 10:53:24 -04:00
|
|
|
app.use('/', trackerRouter)
|
2017-11-14 11:31:26 -05:00
|
|
|
|
2017-10-19 08:58:28 -04:00
|
|
|
// Static files
|
|
|
|
app.use('/', staticRouter)
|
|
|
|
|
2018-05-31 12:12:15 -04:00
|
|
|
// Client files, last valid routes!
|
|
|
|
app.use('/', clientsRouter)
|
2017-10-19 08:58:28 -04:00
|
|
|
|
2016-02-07 05:47:30 -05:00
|
|
|
// ----------- Errors -----------
|
|
|
|
|
|
|
|
// Catch 404 and forward to error handler
|
|
|
|
app.use(function (req, res, next) {
|
2016-03-21 16:13:10 -04:00
|
|
|
const err = new Error('Not Found')
|
2017-05-15 16:22:03 -04:00
|
|
|
err['status'] = 404
|
2016-02-07 05:47:30 -05:00
|
|
|
next(err)
|
|
|
|
})
|
|
|
|
|
2016-03-07 08:48:46 -05:00
|
|
|
app.use(function (err, req, res, next) {
|
2018-02-14 09:33:49 -05:00
|
|
|
let error = 'Unknown error.'
|
|
|
|
if (err) {
|
|
|
|
error = err.stack || err.message || err
|
|
|
|
}
|
|
|
|
|
2018-08-31 05:43:46 -04:00
|
|
|
// Sequelize error
|
|
|
|
const sql = err.parent ? err.parent.sql : undefined
|
|
|
|
|
|
|
|
logger.error('Error in controller.', { err: error, sql })
|
2018-02-14 09:33:49 -05:00
|
|
|
return res.status(err.status || 500).end()
|
2016-03-07 08:48:46 -05:00
|
|
|
})
|
2016-02-07 05:47:30 -05:00
|
|
|
|
2018-06-26 10:53:24 -04:00
|
|
|
const server = createWebsocketServer(app)
|
|
|
|
|
2016-11-25 06:32:21 -05:00
|
|
|
// ----------- Run -----------
|
|
|
|
|
2018-04-04 05:04:14 -04:00
|
|
|
async function startApplication () {
|
2017-05-15 16:22:03 -04:00
|
|
|
const port = CONFIG.LISTEN.PORT
|
2018-04-17 05:14:32 -04:00
|
|
|
const hostname = CONFIG.LISTEN.HOSTNAME
|
2017-12-13 11:46:23 -05:00
|
|
|
|
2018-04-04 05:04:14 -04:00
|
|
|
await installApplication()
|
|
|
|
|
2018-06-21 12:29:28 -04:00
|
|
|
// Check activity pub urls are valid
|
|
|
|
checkActivityPubUrls()
|
|
|
|
.catch(err => {
|
|
|
|
logger.error('Error in ActivityPub URLs checker.', { err })
|
|
|
|
process.exit(-1)
|
|
|
|
})
|
|
|
|
|
2018-04-04 05:04:14 -04:00
|
|
|
// Email initialization
|
|
|
|
Emailer.Instance.init()
|
|
|
|
await Emailer.Instance.checkConnectionOrDie()
|
|
|
|
|
|
|
|
await JobQueue.Instance.init()
|
|
|
|
|
|
|
|
// Caches initializations
|
2018-07-16 08:22:16 -04: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)
|
2018-04-04 05:04:14 -04:00
|
|
|
|
|
|
|
// Enable Schedulers
|
|
|
|
BadActorFollowScheduler.Instance.enable()
|
|
|
|
RemoveOldJobsScheduler.Instance.enable()
|
2018-06-14 12:06:56 -04:00
|
|
|
UpdateVideosScheduler.Instance.enable()
|
2018-08-02 10:02:51 -04:00
|
|
|
YoutubeDlUpdateScheduler.Instance.enable()
|
2018-09-11 10:27:07 -04:00
|
|
|
VideosRedundancyScheduler.Instance.enable()
|
2018-04-04 05:04:14 -04:00
|
|
|
|
|
|
|
// Redis initialization
|
|
|
|
Redis.Instance.init()
|
|
|
|
|
|
|
|
// Make server listening
|
2018-04-18 10:04:49 -04: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 12:49:54 -04:00
|
|
|
|
|
|
|
process.on('exit', () => {
|
|
|
|
JobQueue.Instance.terminate()
|
|
|
|
})
|
|
|
|
|
|
|
|
process.on('SIGINT', () => process.exit(0))
|
2017-02-18 05:56:28 -05:00
|
|
|
}
|