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'
|
|
|
|
// FIXME: cannot import express-validator
|
2016-03-21 16:13:10 -04:00
|
|
|
const expressValidator = require('express-validator')
|
2017-06-05 15:53:49 -04:00
|
|
|
import * as http from 'http'
|
|
|
|
import * as morgan from 'morgan'
|
|
|
|
import * as path from 'path'
|
|
|
|
import * as bittorrentTracker from 'bittorrent-tracker'
|
2017-06-11 09:19:43 -04:00
|
|
|
import * as cors from 'cors'
|
2017-05-15 16:22:03 -04:00
|
|
|
import { Server as WebSocketServer } from 'ws'
|
|
|
|
|
|
|
|
const TrackerServer = bittorrentTracker.Server
|
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
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
// ----------- Database -----------
|
2017-05-15 16:22:03 -04:00
|
|
|
// Do not use barels 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 } from './server/initializers/constants'
|
2016-12-11 15:50:51 -05:00
|
|
|
// Initialize database and models
|
2017-05-22 14:58:25 -04:00
|
|
|
import { database as db } from './server/initializers/database'
|
|
|
|
db.init(false, onDatabaseInitDone)
|
2016-06-28 14:10:32 -04:00
|
|
|
|
2016-07-01 10:03:53 -04:00
|
|
|
// ----------- Checker -----------
|
2017-05-15 16:22:03 -04:00
|
|
|
import { checkMissedConfig, checkFFmpeg, checkConfig } from './server/initializers/checker'
|
2016-07-01 10:03:53 -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) {
|
|
|
|
throw new Error('Miss some configurations keys : ' + missed)
|
|
|
|
}
|
2017-05-15 16:22:03 -04:00
|
|
|
checkFFmpeg(function (err) {
|
2017-05-05 11:24:16 -04:00
|
|
|
if (err) {
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
})
|
2016-11-01 14:46:07 -04:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
// ----------- PeerTube modules -----------
|
2017-05-15 16:22:03 -04:00
|
|
|
import { migrate, installApplication } from './server/initializers'
|
|
|
|
import { JobScheduler, activateSchedulers } from './server/lib'
|
|
|
|
import * as customValidators from './server/helpers/custom-validators'
|
|
|
|
import { apiRouter, clientsRouter, staticRouter } from './server/controllers'
|
2016-02-07 05:47:30 -05:00
|
|
|
|
|
|
|
// ----------- Command line -----------
|
|
|
|
|
|
|
|
// ----------- App -----------
|
|
|
|
|
2017-06-11 09:19:43 -04:00
|
|
|
// Enable cors for develop
|
|
|
|
if (isTestInstance()) {
|
|
|
|
app.use(cors({
|
|
|
|
origin: 'http://localhost:3000',
|
|
|
|
credentials: true
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2016-02-07 05:47:30 -05:00
|
|
|
// For the logger
|
2017-05-22 14:58:25 -04:00
|
|
|
app.use(morgan('combined', {
|
|
|
|
stream: { write: logger.info }
|
|
|
|
}))
|
2016-02-07 05:47:30 -05:00
|
|
|
// For body requests
|
2016-08-23 10:24:11 -04:00
|
|
|
app.use(bodyParser.json({ limit: '500kb' }))
|
2016-02-07 05:47:30 -05:00
|
|
|
app.use(bodyParser.urlencoded({ extended: false }))
|
|
|
|
// Validate some params for the API
|
|
|
|
app.use(expressValidator({
|
2017-05-15 16:22:03 -04:00
|
|
|
customValidators: customValidators
|
2016-02-07 05:47:30 -05:00
|
|
|
}))
|
|
|
|
|
|
|
|
// ----------- Views, routes and static files -----------
|
|
|
|
|
2016-11-25 06:32:21 -05:00
|
|
|
// API
|
2017-05-15 16:22:03 -04:00
|
|
|
const apiRoute = '/api/' + API_VERSION
|
|
|
|
app.use(apiRoute, apiRouter)
|
2016-07-26 16:30:46 -04:00
|
|
|
|
2016-11-25 06:32:21 -05:00
|
|
|
// Client files
|
2017-05-15 16:22:03 -04:00
|
|
|
app.use('/', clientsRouter)
|
2016-05-10 15:19:24 -04:00
|
|
|
|
2016-11-25 06:32:21 -05:00
|
|
|
// Static files
|
2017-05-15 16:22:03 -04:00
|
|
|
app.use('/', staticRouter)
|
2016-11-11 05:52:24 -05:00
|
|
|
|
2016-11-25 06:32:21 -05:00
|
|
|
// Always serve index client page (the client is a single page application, let it handle routing)
|
2016-03-07 08:48:46 -05:00
|
|
|
app.use('/*', function (req, res, next) {
|
2017-05-22 14:58:25 -04:00
|
|
|
res.sendFile(path.join(__dirname, '../client/dist/index.html'))
|
2016-03-07 08:48:46 -05:00
|
|
|
})
|
2016-02-07 05:47:30 -05:00
|
|
|
|
|
|
|
// ----------- Tracker -----------
|
|
|
|
|
2016-03-21 16:13:10 -04:00
|
|
|
const trackerServer = new TrackerServer({
|
2016-02-07 05:47:30 -05:00
|
|
|
http: false,
|
|
|
|
udp: false,
|
|
|
|
ws: false,
|
|
|
|
dht: false
|
|
|
|
})
|
|
|
|
|
|
|
|
trackerServer.on('error', function (err) {
|
|
|
|
logger.error(err)
|
|
|
|
})
|
|
|
|
|
|
|
|
trackerServer.on('warning', function (err) {
|
|
|
|
logger.error(err)
|
|
|
|
})
|
|
|
|
|
2016-03-21 16:13:10 -04:00
|
|
|
const server = http.createServer(app)
|
2017-05-15 16:22:03 -04:00
|
|
|
const wss = new WebSocketServer({ server: server, path: '/tracker/socket' })
|
2016-02-07 05:47:30 -05:00
|
|
|
wss.on('connection', function (ws) {
|
|
|
|
trackerServer.onWebSocketConnection(ws)
|
|
|
|
})
|
|
|
|
|
|
|
|
// ----------- 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) {
|
|
|
|
logger.error(err)
|
|
|
|
res.sendStatus(err.status || 500)
|
|
|
|
})
|
2016-02-07 05:47:30 -05:00
|
|
|
|
2016-11-25 06:32:21 -05:00
|
|
|
// ----------- Run -----------
|
|
|
|
|
2017-02-18 05:56:28 -05:00
|
|
|
function onDatabaseInitDone () {
|
2017-05-15 16:22:03 -04:00
|
|
|
const port = CONFIG.LISTEN.PORT
|
2017-02-18 05:56:28 -05:00
|
|
|
// Run the migration scripts if needed
|
2017-05-15 16:22:03 -04:00
|
|
|
migrate(function (err) {
|
2016-09-26 16:36:36 -04:00
|
|
|
if (err) throw err
|
2016-02-07 05:47:30 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
installApplication(function (err) {
|
2017-02-18 05:56:28 -05:00
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
// ----------- Make the server listening -----------
|
|
|
|
server.listen(port, function () {
|
|
|
|
// Activate the communication with friends
|
2017-05-15 16:22:03 -04:00
|
|
|
activateSchedulers()
|
2016-07-26 16:30:46 -04:00
|
|
|
|
2017-05-02 16:02:27 -04:00
|
|
|
// Activate job scheduler
|
2017-05-15 16:22:03 -04:00
|
|
|
JobScheduler.Instance.activate()
|
2017-05-02 16:02:27 -04:00
|
|
|
|
2017-02-18 05:56:28 -05:00
|
|
|
logger.info('Server listening on port %d', port)
|
2017-05-15 16:22:03 -04:00
|
|
|
logger.info('Webserver: %s', CONFIG.WEBSERVER.URL)
|
2017-02-18 05:56:28 -05:00
|
|
|
})
|
2015-06-09 11:41:40 -04:00
|
|
|
})
|
|
|
|
})
|
2017-02-18 05:56:28 -05:00
|
|
|
}
|