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