]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server.ts
Fix account names validation
[github/Chocobozzz/PeerTube.git] / server.ts
CommitLineData
6b467fd5
C
1// FIXME: https://github.com/nodejs/node/pull/16853
2require('tls').DEFAULT_ECDH_CURVE = 'auto'
3
1840c2f7
C
4import { isTestInstance } from './server/helpers/core-utils'
5
6if (isTestInstance()) {
e02643f3
C
7 require('source-map-support').install()
8}
9
a030a9b2 10// ----------- Node modules -----------
4d4e5cd4
C
11import * as bodyParser from 'body-parser'
12import * as express from 'express'
4d4e5cd4
C
13import * as http from 'http'
14import * as morgan from 'morgan'
15import * as path from 'path'
b60e5f38 16import * as bitTorrentTracker from 'bittorrent-tracker'
1840c2f7 17import * as cors from 'cors'
65fcc311
C
18import { Server as WebSocketServer } from 'ws'
19
b60e5f38 20const TrackerServer = bitTorrentTracker.Server
a030a9b2 21
9f540774
C
22process.title = 'peertube'
23
a030a9b2 24// Create our main app
13ce1d01 25const app = express()
a030a9b2 26
3482688c 27// ----------- Core checker -----------
65fcc311 28import { checkMissedConfig, checkFFmpeg, checkConfig } from './server/initializers/checker'
69b0a27c 29
65fcc311 30const missed = checkMissedConfig()
b65c27aa 31if (missed.length !== 0) {
3482688c 32 throw new Error('Your configuration files miss keys: ' + missed)
b65c27aa 33}
3482688c 34
4f491371 35import { ACCEPT_HEADERS, API_VERSION, CONFIG, STATIC_PATHS } from './server/initializers/constants'
3482688c 36checkFFmpeg(CONFIG)
b65c27aa 37
65fcc311 38const errorMessage = checkConfig()
b65c27aa
C
39if (errorMessage !== null) {
40 throw new Error(errorMessage)
69b0a27c
C
41}
42
3482688c
C
43// ----------- Database -----------
44// Do not use barrels because we don't want to load all modules here (we need to initialize database first)
45import { logger } from './server/helpers/logger'
91fea9fc 46
3482688c 47// Initialize database and models
91fea9fc
C
48import { initDatabaseModels } from './server/initializers/database'
49import { migrate } from './server/initializers/migrator'
50migrate()
51 .then(() => initDatabaseModels(false))
52 .then(() => onDatabaseInitDone())
3482688c 53
00057e85 54// ----------- PeerTube modules -----------
91fea9fc 55import { installApplication } from './server/initializers'
50d6de9c
C
56import { activitypubHttpJobScheduler, transcodingJobScheduler } from './server/lib/jobs'
57import { VideosPreviewCache } from './server/lib/cache'
350e31d6 58import { apiRouter, clientsRouter, staticRouter, servicesRouter, webfingerRouter, activityPubRouter } from './server/controllers'
a030a9b2 59
a030a9b2
C
60// ----------- Command line -----------
61
62// ----------- App -----------
63
407c4473 64// Enable CORS for develop
1840c2f7 65if (isTestInstance()) {
93e1258c
C
66 app.use((req, res, next) => {
67 // These routes have already cors
68 if (
69 req.path.indexOf(STATIC_PATHS.TORRENTS) === -1 &&
70 req.path.indexOf(STATIC_PATHS.WEBSEED) === -1
71 ) {
72 return (cors({
73 origin: 'http://localhost:3000',
74 credentials: true
75 }))(req, res, next)
76 }
77
78 return next()
79 })
1840c2f7
C
80}
81
a030a9b2 82// For the logger
e02643f3
C
83app.use(morgan('combined', {
84 stream: { write: logger.info }
85}))
a030a9b2 86// For body requests
165cdc75 87app.use(bodyParser.json({
86d13ec2 88 type: [ 'application/json', 'application/*+json' ],
165cdc75
C
89 limit: '500kb'
90}))
a030a9b2 91app.use(bodyParser.urlencoded({ extended: false }))
a030a9b2 92
a030a9b2
C
93// ----------- Tracker -----------
94
13ce1d01 95const trackerServer = new TrackerServer({
a030a9b2
C
96 http: false,
97 udp: false,
98 ws: false,
99 dht: false
100})
101
102trackerServer.on('error', function (err) {
103 logger.error(err)
104})
105
106trackerServer.on('warning', function (err) {
107 logger.error(err)
108})
109
13ce1d01 110const server = http.createServer(app)
65fcc311 111const wss = new WebSocketServer({ server: server, path: '/tracker/socket' })
a030a9b2
C
112wss.on('connection', function (ws) {
113 trackerServer.onWebSocketConnection(ws)
114})
115
a96aed15
C
116const onHttpRequest = trackerServer.onHttpRequest.bind(trackerServer)
117app.get('/tracker/announce', (req, res) => onHttpRequest(req, res, { action: 'announce' }))
118app.get('/tracker/scrape', (req, res) => onHttpRequest(req, res, { action: 'scrape' }))
119
120// ----------- Views, routes and static files -----------
121
122// API
123const apiRoute = '/api/' + API_VERSION
124app.use(apiRoute, apiRouter)
125
126// Services (oembed...)
127app.use('/services', servicesRouter)
128
350e31d6
C
129app.use('/', webfingerRouter)
130app.use('/', activityPubRouter)
131
a96aed15
C
132// Client files
133app.use('/', clientsRouter)
134
135// Static files
136app.use('/', staticRouter)
137
138// Always serve index client page (the client is a single page application, let it handle routing)
139app.use('/*', function (req, res) {
4f491371 140 if (req.accepts(ACCEPT_HEADERS) === 'html') {
98ec8b8e
C
141 return res.sendFile(path.join(__dirname, '../client/dist/index.html'))
142 }
143
144 return res.status(404).end()
a96aed15
C
145})
146
a030a9b2
C
147// ----------- Errors -----------
148
149// Catch 404 and forward to error handler
150app.use(function (req, res, next) {
13ce1d01 151 const err = new Error('Not Found')
65fcc311 152 err['status'] = 404
a030a9b2
C
153 next(err)
154})
155
6f4e2522 156app.use(function (err, req, res, next) {
4635f59d 157 logger.error(err, err)
6f4e2522
C
158 res.sendStatus(err.status || 500)
159})
a030a9b2 160
79530164
C
161// ----------- Run -----------
162
5804c0db 163function onDatabaseInitDone () {
65fcc311 164 const port = CONFIG.LISTEN.PORT
91fea9fc
C
165
166 installApplication()
6fcd19ba 167 .then(() => {
5804c0db 168 // ----------- Make the server listening -----------
571389d4 169 server.listen(port, () => {
e8e12200 170 VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.SIZE)
afffe988 171 activitypubHttpJobScheduler.activate()
571389d4 172 transcodingJobScheduler.activate()
f981dae8 173
5804c0db 174 logger.info('Server listening on port %d', port)
556ddc31 175 logger.info('Web server: %s', CONFIG.WEBSERVER.URL)
5804c0db 176 })
8c308c2b 177 })
5804c0db 178}