]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server.js
Request model refractoring -> use mongoose api
[github/Chocobozzz/PeerTube.git] / server.js
... / ...
CommitLineData
1'use strict'
2
3// ----------- Node modules -----------
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
12
13// Create our main app
14const app = express()
15
16// ----------- Checker -----------
17const checker = require('./server/initializers/checker')
18
19const miss = checker.checkConfig()
20if (miss.length !== 0) {
21 throw new Error('Miss some configurations keys : ' + miss)
22}
23
24// ----------- Database -----------
25const config = require('config')
26const constants = require('./server/initializers/constants')
27const database = require('./server/initializers/database')
28const logger = require('./server/helpers/logger')
29
30database.connect()
31
32// ----------- PeerTube modules -----------
33const customValidators = require('./server/helpers/customValidators')
34const installer = require('./server/initializers/installer')
35const mongoose = require('mongoose')
36const routes = require('./server/controllers')
37const utils = require('./server/helpers/utils')
38const webtorrent = require('./server/lib/webtorrent')
39const Request = mongoose.model('Request')
40
41// Get configurations
42const port = config.get('listen.port')
43
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
60// Catch sefaults
61require('segfault-handler').registerHandler()
62
63// API routes
64const apiRoute = '/api/' + constants.API_VERSION
65app.use(apiRoute, routes.api)
66
67// Static files
68app.use('/client', express.static(path.join(__dirname, '/client/dist'), { maxAge: 0 }))
69// 404 for static files not found
70app.use('/client/*', function (req, res, next) {
71 res.sendStatus(404)
72})
73
74// Thumbnails path for express
75const thumbnailsPhysicalPath = path.join(__dirname, config.get('storage.thumbnails'))
76app.use(constants.THUMBNAILS_STATIC_PATH, express.static(thumbnailsPhysicalPath, { maxAge: 0 }))
77
78// Client application
79app.use('/*', function (req, res, next) {
80 res.sendFile(path.join(__dirname, 'client/dist/index.html'))
81})
82
83// ----------- Tracker -----------
84
85const trackerServer = new TrackerServer({
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
100const server = http.createServer(app)
101const wss = new WebSocketServer({server: server, path: '/tracker/socket'})
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) {
110 const err = new Error('Not Found')
111 err.status = 404
112 next(err)
113})
114
115app.use(function (err, req, res, next) {
116 logger.error(err)
117 res.sendStatus(err.status || 500)
118})
119
120installer.installApplication(function (err) {
121 if (err) throw err
122
123 // Create/activate the webtorrent module
124 webtorrent.create(function () {
125 function cleanForExit () {
126 utils.cleanForExit(webtorrent.app)
127 }
128
129 function exitGracefullyOnSignal () {
130 process.exit(-1)
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
140 Request.activate()
141
142 // videos.seedAllExisting(function () {
143 logger.info('Seeded all the videos')
144 logger.info('Server listening on port %d', port)
145 app.emit('ready')
146 // })
147 })
148 })
149})
150
151module.exports = app