aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/clients.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-05-15 22:22:03 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-05-20 09:57:40 +0200
commit65fcc3119c334b75dd13bcfdebf186afdc580a8f (patch)
tree4f2158c61a9b7c3f47cfa233d01413b946ee53c0 /server/controllers/api/clients.ts
parentd5f345ed4cfac4e1fa84dcb4fce1cda4d32f9c73 (diff)
downloadPeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.gz
PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.zst
PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.zip
First typescript iteration
Diffstat (limited to 'server/controllers/api/clients.ts')
-rw-r--r--server/controllers/api/clients.ts41
1 files changed, 41 insertions, 0 deletions
diff --git a/server/controllers/api/clients.ts b/server/controllers/api/clients.ts
new file mode 100644
index 000000000..902f62995
--- /dev/null
+++ b/server/controllers/api/clients.ts
@@ -0,0 +1,41 @@
1import express = require('express')
2
3import { CONFIG } from '../../initializers';
4import { logger } from '../../helpers'
5const db = require('../../initializers/database')
6
7const clientsRouter = express.Router()
8
9clientsRouter.get('/local', getLocalClient)
10
11// Get the client credentials for the PeerTube front end
12function 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
39export {
40 clientsRouter
41}