mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:53:23 +02:00
* Upgrading STF for security reasons Signed-off-by: Denis barbaron <denis.barbaron@orange.com> * update semaphore files Signed-off-by: Denis barbaron <denis.barbaron@orange.com> * upgrading STF for security reasons v2 Signed-off-by: Denis barbaron <denis.barbaron@orange.com> * update yarn.lock file Signed-off-by: Denis barbaron <denis.barbaron@orange.com> --------- Signed-off-by: Denis barbaron <denis.barbaron@orange.com>
94 lines
2.2 KiB
JavaScript
94 lines
2.2 KiB
JavaScript
/**
|
|
* Copyright © 2024 contains code contributed by Orange SA, authors: Denis Barbaron - Licensed under the Apache license 2.0
|
|
**/
|
|
|
|
var http = require('http')
|
|
|
|
var express = require('express')
|
|
var passport = require('passport')
|
|
|
|
var logger = require('../../../util/logger')
|
|
var urlutil = require('../../../util/urlutil')
|
|
var jwtutil = require('../../../util/jwtutil')
|
|
var Strategy = require('./strategy')
|
|
|
|
const dbapi = require('../../../db/api')
|
|
|
|
module.exports = function(options) {
|
|
var log = logger.createLogger('auth-oauth2')
|
|
var app = express()
|
|
var server = http.createServer(app)
|
|
|
|
app.set('strict routing', true)
|
|
app.set('case sensitive routing', true)
|
|
|
|
app.get('/auth/contact', function(req, res) {
|
|
dbapi.getRootGroup().then(function(group) {
|
|
res.status(200)
|
|
.json({
|
|
success: true
|
|
, contact: group.owner
|
|
})
|
|
})
|
|
.catch(function(err) {
|
|
log.error('Unexpected error', err.stack)
|
|
res.status(500)
|
|
.json({
|
|
success: false
|
|
, error: 'ServerError'
|
|
})
|
|
})
|
|
})
|
|
|
|
function verify(accessToken, refreshToken, profile, done) {
|
|
done(null, profile)
|
|
}
|
|
|
|
passport.use(new Strategy(options.oauth, verify))
|
|
|
|
app.use(passport.initialize())
|
|
app.use(passport.authenticate('oauth2', {
|
|
failureRedirect: '/auth/oauth/'
|
|
, session: false
|
|
}))
|
|
|
|
app.disable('x-powered-by')
|
|
|
|
function isEmailAllowed(email) {
|
|
if (email) {
|
|
if (options.domain) {
|
|
return email.endsWith(options.domain)
|
|
}
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
app.get(
|
|
'/auth/oauth/callback'
|
|
, function(req, res) {
|
|
if (isEmailAllowed(req.user.email)) {
|
|
res.redirect(urlutil.addParams(options.appUrl, {
|
|
jwt: jwtutil.encode({
|
|
payload: {
|
|
email: req.user.email
|
|
, name: req.user.email.split('@', 1).join('')
|
|
}
|
|
, secret: options.secret
|
|
, header: {
|
|
exp: Date.now() + 24 * 3600
|
|
}
|
|
})
|
|
}))
|
|
}
|
|
else {
|
|
log.warn('Missing or disallowed email in profile', req.user)
|
|
res.render('rejected-email')
|
|
}
|
|
}
|
|
)
|
|
|
|
server.listen(options.port)
|
|
log.info('Listening on port %d', options.port)
|
|
}
|