]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server.js
Request model refractoring -> use mongoose api
[github/Chocobozzz/PeerTube.git] / server.js
CommitLineData
a030a9b2
C
1'use strict'
2
3// ----------- Node modules -----------
13ce1d01
C
4const bodyParser = require('body-parser')
5const express = require('express')
6const expressValidator = require('express-validator')
7const http = require('http')
8const morgan = require('morgan')
9const path = require('path')
10const TrackerServer = require('bittorrent-tracker').Server
11const WebSocketServer = require('ws').Server
a030a9b2
C
12
13// Create our main app
13ce1d01 14const app = express()
a030a9b2
C
15
16// ----------- Checker -----------
13ce1d01 17const checker = require('./server/initializers/checker')
a030a9b2 18
13ce1d01 19const miss = checker.checkConfig()
a030a9b2 20if (miss.length !== 0) {
ac2f99eb 21 throw new Error('Miss some configurations keys : ' + miss)
a030a9b2
C
22}
23
00057e85 24// ----------- Database -----------
13ce1d01
C
25const config = require('config')
26const constants = require('./server/initializers/constants')
13ce1d01 27const database = require('./server/initializers/database')
13ce1d01 28const logger = require('./server/helpers/logger')
00057e85
C
29
30database.connect()
31
32// ----------- PeerTube modules -----------
33const customValidators = require('./server/helpers/customValidators')
34const installer = require('./server/initializers/installer')
35const mongoose = require('mongoose')
13ce1d01
C
36const routes = require('./server/controllers')
37const utils = require('./server/helpers/utils')
13ce1d01 38const webtorrent = require('./server/lib/webtorrent')
00057e85 39const Request = mongoose.model('Request')
a030a9b2
C
40
41// Get configurations
13ce1d01 42const port = config.get('listen.port')
a030a9b2 43
a030a9b2
C
44// ----------- Command line -----------
45
46// ----------- App -----------
47
48// For the logger
49app.use(morgan('combined', { stream: logger.stream }))
50// For body requests
51app.use(bodyParser.json())
52app.use(bodyParser.urlencoded({ extended: false }))
53// Validate some params for the API
54app.use(expressValidator({
55 customValidators: customValidators
56}))
57
58// ----------- Views, routes and static files -----------
59
a030a9b2
C
60// Catch sefaults
61require('segfault-handler').registerHandler()
62
a030a9b2 63// API routes
bc503c2a
C
64const apiRoute = '/api/' + constants.API_VERSION
65app.use(apiRoute, routes.api)
a030a9b2 66
bd324a66 67// Static files
4a6995be 68app.use('/client', express.static(path.join(__dirname, '/client/dist'), { maxAge: 0 }))
bd324a66 69// 404 for static files not found
41a2aee3 70app.use('/client/*', function (req, res, next) {
bd324a66
C
71 res.sendStatus(404)
72})
73
cbe2f7c3 74// Thumbnails path for express
bc503c2a
C
75const thumbnailsPhysicalPath = path.join(__dirname, config.get('storage.thumbnails'))
76app.use(constants.THUMBNAILS_STATIC_PATH, express.static(thumbnailsPhysicalPath, { maxAge: 0 }))
cbe2f7c3 77
6f4e2522
C
78// Client application
79app.use('/*', function (req, res, next) {
4a6995be 80 res.sendFile(path.join(__dirname, 'client/dist/index.html'))
6f4e2522 81})
a030a9b2
C
82
83// ----------- Tracker -----------
84
13ce1d01 85const trackerServer = new TrackerServer({
a030a9b2
C
86 http: false,
87 udp: false,
88 ws: false,
89 dht: false
90})
91
92trackerServer.on('error', function (err) {
93 logger.error(err)
94})
95
96trackerServer.on('warning', function (err) {
97 logger.error(err)
98})
99
13ce1d01
C
100const server = http.createServer(app)
101const wss = new WebSocketServer({server: server, path: '/tracker/socket'})
a030a9b2
C
102wss.on('connection', function (ws) {
103 trackerServer.onWebSocketConnection(ws)
104})
105
106// ----------- Errors -----------
107
108// Catch 404 and forward to error handler
109app.use(function (req, res, next) {
13ce1d01 110 const err = new Error('Not Found')
a030a9b2
C
111 err.status = 404
112 next(err)
113})
114
6f4e2522
C
115app.use(function (err, req, res, next) {
116 logger.error(err)
117 res.sendStatus(err.status || 500)
118})
a030a9b2 119
37dc07b2 120installer.installApplication(function (err) {
9457bf88 121 if (err) throw err
9457bf88 122
a030a9b2
C
123 // Create/activate the webtorrent module
124 webtorrent.create(function () {
125 function cleanForExit () {
126 utils.cleanForExit(webtorrent.app)
127 }
128
129 function exitGracefullyOnSignal () {
ac2f99eb 130 process.exit(-1)
a030a9b2
C
131 }
132
133 process.on('exit', cleanForExit)
134 process.on('SIGINT', exitGracefullyOnSignal)
135 process.on('SIGTERM', exitGracefullyOnSignal)
136
137 // ----------- Make the server listening -----------
138 server.listen(port, function () {
139 // Activate the pool requests
00057e85 140 Request.activate()
a030a9b2 141
aaf61f38 142 // videos.seedAllExisting(function () {
a030a9b2
C
143 logger.info('Seeded all the videos')
144 logger.info('Server listening on port %d', port)
145 app.emit('ready')
aaf61f38 146 // })
8c308c2b
C
147 })
148 })
a030a9b2 149})
8c308c2b 150
a030a9b2 151module.exports = app