PeerTube/server/core/controllers/api/oauth-clients.ts

55 lines
1.8 KiB
TypeScript
Raw Normal View History

2021-08-27 07:32:44 -05:00
import express from 'express'
import { HttpStatusCode, OAuthClientLocal } from '@peertube/peertube-models'
import { isTestOrDevInstance } from '@peertube/peertube-node-utils'
import { OAuthClientModel } from '@server/models/oauth/oauth-client.js'
import { logger } from '../../helpers/logger.js'
import { CONFIG } from '../../initializers/config.js'
import { apiRateLimiter, asyncMiddleware, openapiOperationDoc } from '../../middlewares/index.js'
2016-08-19 14:34:51 -05:00
2017-06-25 10:44:19 -05:00
const oauthClientsRouter = express.Router()
2016-08-05 09:09:39 -05:00
2023-06-20 07:17:34 -05:00
oauthClientsRouter.use(apiRateLimiter)
2017-10-25 04:55:06 -05:00
oauthClientsRouter.get('/local',
openapiOperationDoc({ operationId: 'getOAuthClient' }),
2017-10-25 04:55:06 -05:00
asyncMiddleware(getLocalClient)
)
2016-08-05 09:09:39 -05:00
// Get the client credentials for the PeerTube front end
2017-10-25 04:55:06 -05:00
async function getLocalClient (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-05-15 15:22:03 -05:00
const serverHostname = CONFIG.WEBSERVER.HOSTNAME
const serverPort = CONFIG.WEBSERVER.PORT
let headerHostShouldBe = serverHostname
2016-08-05 09:09:39 -05:00
if (serverPort !== 80 && serverPort !== 443) {
headerHostShouldBe += ':' + serverPort
}
// Don't make this check if this is a test instance
if (!isTestOrDevInstance() && req.get('host') !== headerHostShouldBe) {
logger.info(
'Getting client tokens for host %s is forbidden (expected %s).', req.get('host'), headerHostShouldBe,
{ webserverConfig: CONFIG.WEBSERVER }
)
return res.fail({
status: HttpStatusCode.FORBIDDEN_403,
message: `Getting client tokens for host ${req.get('host')} is forbidden`
})
2016-08-05 09:09:39 -05:00
}
2017-12-12 10:53:50 -06:00
const client = await OAuthClientModel.loadFirstClient()
2017-10-25 04:55:06 -05:00
if (!client) throw new Error('No client available.')
const json: OAuthClientLocal = {
client_id: client.clientId,
client_secret: client.clientSecret
}
return res.json(json)
2016-08-05 09:09:39 -05:00
}
// ---------------------------------------------------------------------------
2017-05-15 15:22:03 -05:00
export {
2017-06-25 10:44:19 -05:00
oauthClientsRouter
2017-05-15 15:22:03 -05:00
}