]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/controllers/api/clients.ts
Type models
[github/Chocobozzz/PeerTube.git] / server / controllers / api / clients.ts
1 import express = require('express')
2
3 import { CONFIG } from '../../initializers';
4 import { logger } from '../../helpers'
5 import { database as db } from '../../initializers/database'
6
7 const clientsRouter = express.Router()
8
9 clientsRouter.get('/local', getLocalClient)
10
11 // Get the client credentials for the PeerTube front end
12 function getLocalClient (req, res, next) {
13 const serverHostname = CONFIG.WEBSERVER.HOSTNAME
14 const serverPort = CONFIG.WEBSERVER.PORT
15 let headerHostShouldBe = serverHostname
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) {
22 logger.info('Getting client tokens for host %s is forbidden (expected %s).', req.get('host'), headerHostShouldBe)
23 return res.type('json').status(403).end()
24 }
25
26 db.OAuthClient.loadFirstClient(function (err, client) {
27 if (err) return next(err)
28 if (!client) return next(new Error('No client available.'))
29
30 res.json({
31 client_id: client.clientId,
32 client_secret: client.clientSecret
33 })
34 })
35 }
36
37 // ---------------------------------------------------------------------------
38
39 export {
40 clientsRouter
41 }