]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/clients.ts
Update webpack stack
[github/Chocobozzz/PeerTube.git] / server / controllers / api / clients.ts
CommitLineData
4d4e5cd4 1import * as express from 'express'
6606150c 2
69818c93 3import { CONFIG } from '../../initializers'
65fcc311 4import { logger } from '../../helpers'
e02643f3 5import { database as db } from '../../initializers/database'
e861452f 6
65fcc311 7const clientsRouter = express.Router()
6606150c 8
65fcc311 9clientsRouter.get('/local', getLocalClient)
6606150c
C
10
11// Get the client credentials for the PeerTube front end
69818c93 12function getLocalClient (req: express.Request, res: express.Response, next: express.NextFunction) {
65fcc311
C
13 const serverHostname = CONFIG.WEBSERVER.HOSTNAME
14 const serverPort = CONFIG.WEBSERVER.PORT
3737bbaf 15 let headerHostShouldBe = serverHostname
6606150c
C
16 if (serverPort !== 80 && serverPort !== 443) {
17 headerHostShouldBe += ':' + serverPort
18 }
19
20 // Don't make this check if this is a test instance
21 if (process.env.NODE_ENV !== 'test' && req.get('host') !== headerHostShouldBe) {
b1233aa8 22 logger.info('Getting client tokens for host %s is forbidden (expected %s).', req.get('host'), headerHostShouldBe)
6606150c
C
23 return res.type('json').status(403).end()
24 }
25
feb4bdfd 26 db.OAuthClient.loadFirstClient(function (err, client) {
6606150c
C
27 if (err) return next(err)
28 if (!client) return next(new Error('No client available.'))
29
30 res.json({
feb4bdfd 31 client_id: client.clientId,
6606150c
C
32 client_secret: client.clientSecret
33 })
34 })
35}
36
37// ---------------------------------------------------------------------------
38
65fcc311
C
39export {
40 clientsRouter
41}