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 http from 'http'
|
|
|
|
import * as morgan from 'morgan'
|
|
|
|
import * as path from 'path'
|
2017-09-15 12:17:08 +02:00
|
|
|
import * as bitTorrentTracker from 'bittorrent-tracker'
|
2017-06-11 15:19:43 +02:00
|
|
|
import * as cors from 'cors'
|
2017-05-15 22:22:03 +02:00
|
|
|
import { Server as WebSocketServer } from 'ws'
|
|
|
|
|
2017-09-15 12:17:08 +02:00
|
|
|
const TrackerServer = bitTorrentTracker.Server
|
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 -----------
|
2017-05-15 22:22:03 +02:00
|
|
|
import { checkMissedConfig, checkFFmpeg, checkConfig } from './server/initializers/checker'
|
2016-07-01 16:03:53 +02:00
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
const missed = checkMissedConfig()
|
2016-11-01 19:46:07 +01:00
|
|
|
if (missed.length !== 0) {
|
2017-08-26 09:17:20 +02:00
|
|
|
throw new Error('Your configuration files miss keys: ' + missed)
|
2016-11-01 19:46:07 +01:00
|
|
|
}
|
2017-08-26 09:17:20 +02:00
|
|
|
|
2017-11-30 13:37:11 +01:00
|
|
|
import { ACCEPT_HEADERS, API_VERSION, CONFIG, STATIC_PATHS } from './server/initializers/constants'
|
2017-08-26 09:17:20 +02:00
|
|
|
checkFFmpeg(CONFIG)
|
2016-11-01 19:46:07 +01:00
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
const errorMessage = checkConfig()
|
2016-11-01 19:46:07 +01:00
|
|
|
if (errorMessage !== null) {
|
|
|
|
throw new Error(errorMessage)
|
2016-07-01 16:03:53 +02:00
|
|
|
}
|
|
|
|
|
2017-08-26 09:17:20 +02:00
|
|
|
// ----------- Database -----------
|
|
|
|
// 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'
|
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(() => onDatabaseInitDone())
|
2017-08-26 09:17:20 +02:00
|
|
|
|
2016-06-28 20:10:32 +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'
|
2018-01-25 15:05:18 +01:00
|
|
|
import { JobQueue } from './server/lib/job-queue'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { VideosPreviewCache } from './server/lib/cache'
|
2017-11-14 17:31:26 +01:00
|
|
|
import { apiRouter, clientsRouter, staticRouter, servicesRouter, webfingerRouter, activityPubRouter } from './server/controllers'
|
2018-01-30 13:27:07 +01:00
|
|
|
import { Redis } from './server/lib/redis'
|
2018-01-11 09:35:50 +01:00
|
|
|
import { BadActorFollowScheduler } from './server/lib/schedulers/bad-actor-follow-scheduler'
|
2018-01-25 15:05:18 +01:00
|
|
|
import { RemoveOldJobsScheduler } from './server/lib/schedulers/remove-old-jobs-scheduler'
|
2016-02-07 11:47:30 +01:00
|
|
|
|
|
|
|
// ----------- Command line -----------
|
|
|
|
|
|
|
|
// ----------- App -----------
|
|
|
|
|
2017-07-23 09:40:28 +02:00
|
|
|
// Enable CORS for develop
|
2017-06-11 15:19:43 +02:00
|
|
|
if (isTestInstance()) {
|
2017-08-25 11:36:23 +02:00
|
|
|
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
|
|
|
|
) {
|
|
|
|
return (cors({
|
|
|
|
origin: 'http://localhost:3000',
|
|
|
|
credentials: true
|
|
|
|
}))(req, res, next)
|
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
})
|
2017-06-11 15:19:43 +02:00
|
|
|
}
|
|
|
|
|
2016-02-07 11:47:30 +01:00
|
|
|
// For the logger
|
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
|
2017-11-29 11:34:44 +01:00
|
|
|
app.use(bodyParser.json({
|
2017-11-29 13:18:05 +01:00
|
|
|
type: [ 'application/json', 'application/*+json' ],
|
2017-11-29 11:34:44 +01:00
|
|
|
limit: '500kb'
|
|
|
|
}))
|
2016-02-07 11:47:30 +01:00
|
|
|
app.use(bodyParser.urlencoded({ extended: false }))
|
|
|
|
|
|
|
|
// ----------- Tracker -----------
|
|
|
|
|
2016-03-21 21:13:10 +01:00
|
|
|
const trackerServer = new TrackerServer({
|
2016-02-07 11:47:30 +01:00
|
|
|
http: false,
|
|
|
|
udp: false,
|
|
|
|
ws: false,
|
|
|
|
dht: false
|
|
|
|
})
|
|
|
|
|
|
|
|
trackerServer.on('error', function (err) {
|
2018-02-09 13:15:40 +01:00
|
|
|
logger.error('Error in websocket tracker.', err)
|
2016-02-07 11:47:30 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
trackerServer.on('warning', function (err) {
|
2018-02-09 13:15:40 +01:00
|
|
|
logger.error('Warning in websocket tracker.', err)
|
2016-02-07 11:47:30 +01:00
|
|
|
})
|
|
|
|
|
2016-03-21 21:13:10 +01:00
|
|
|
const server = http.createServer(app)
|
2017-05-15 22:22:03 +02:00
|
|
|
const wss = new WebSocketServer({ server: server, path: '/tracker/socket' })
|
2016-02-07 11:47:30 +01:00
|
|
|
wss.on('connection', function (ws) {
|
|
|
|
trackerServer.onWebSocketConnection(ws)
|
|
|
|
})
|
|
|
|
|
2017-10-19 14:58:28 +02:00
|
|
|
const onHttpRequest = trackerServer.onHttpRequest.bind(trackerServer)
|
|
|
|
app.get('/tracker/announce', (req, res) => onHttpRequest(req, res, { action: 'announce' }))
|
|
|
|
app.get('/tracker/scrape', (req, res) => onHttpRequest(req, res, { action: 'scrape' }))
|
|
|
|
|
|
|
|
// ----------- 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('/', webfingerRouter)
|
|
|
|
app.use('/', activityPubRouter)
|
|
|
|
|
2017-10-19 14:58:28 +02:00
|
|
|
// Client files
|
|
|
|
app.use('/', clientsRouter)
|
|
|
|
|
|
|
|
// Static files
|
|
|
|
app.use('/', staticRouter)
|
|
|
|
|
|
|
|
// Always serve index client page (the client is a single page application, let it handle routing)
|
|
|
|
app.use('/*', function (req, res) {
|
2017-11-30 13:37:11 +01:00
|
|
|
if (req.accepts(ACCEPT_HEADERS) === 'html') {
|
2017-11-30 13:16:23 +01:00
|
|
|
return res.sendFile(path.join(__dirname, '../client/dist/index.html'))
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.status(404).end()
|
2017-10-19 14:58:28 +02:00
|
|
|
})
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.error('Error in controller.', { error })
|
|
|
|
return res.status(err.status || 500).end()
|
2016-03-07 14:48:46 +01:00
|
|
|
})
|
2016-02-07 11:47:30 +01:00
|
|
|
|
2016-11-25 12:32:21 +01:00
|
|
|
// ----------- Run -----------
|
|
|
|
|
2017-02-18 11:56:28 +01:00
|
|
|
function onDatabaseInitDone () {
|
2017-05-15 22:22:03 +02:00
|
|
|
const port = CONFIG.LISTEN.PORT
|
2017-12-13 17:46:23 +01:00
|
|
|
|
|
|
|
installApplication()
|
2017-07-05 13:26:25 +02:00
|
|
|
.then(() => {
|
2017-02-18 11:56:28 +01:00
|
|
|
// ----------- Make the server listening -----------
|
2017-11-10 17:27:49 +01:00
|
|
|
server.listen(port, () => {
|
2018-01-30 13:27:07 +01:00
|
|
|
// Emailer initialization and then job queue initialization
|
|
|
|
Emailer.Instance.init()
|
|
|
|
Emailer.Instance.checkConnectionOrDie()
|
|
|
|
.then(() => JobQueue.Instance.init())
|
|
|
|
|
|
|
|
// Caches initializations
|
2018-01-03 11:36:03 +01:00
|
|
|
VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.SIZE)
|
2018-01-30 13:27:07 +01:00
|
|
|
|
|
|
|
// Enable Schedulers
|
2018-01-11 09:35:50 +01:00
|
|
|
BadActorFollowScheduler.Instance.enable()
|
2018-01-25 15:05:18 +01:00
|
|
|
RemoveOldJobsScheduler.Instance.enable()
|
2018-01-30 13:27:07 +01:00
|
|
|
|
|
|
|
// Redis initialization
|
|
|
|
Redis.Instance.init()
|
2017-07-12 11:56:02 +02:00
|
|
|
|
2017-02-18 11:56:28 +01:00
|
|
|
logger.info('Server listening on port %d', port)
|
2017-08-25 18:36:49 +02:00
|
|
|
logger.info('Web server: %s', CONFIG.WEBSERVER.URL)
|
2017-02-18 11:56:28 +01:00
|
|
|
})
|
2015-06-09 17:41:40 +02:00
|
|
|
})
|
2017-02-18 11:56:28 +01:00
|
|
|
}
|