mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
ca8d2fdae0
This is due to Google retiring google.plus APIs and the old passport libs used in the examples depended on these. Closes #386
90 lines
2.5 KiB
JavaScript
90 lines
2.5 KiB
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Google OAath 2.0
|
|
*
|
|
* You should read Using OAuth 2.0 to Access Google APIs:
|
|
* https://developers.google.com/identity/protocols/OAuth2
|
|
*
|
|
* This example assumes that all users authenticating via
|
|
* google should have access. You would proably limit access
|
|
* to users you trust.
|
|
*
|
|
* The implementation assumes the following environement variables:
|
|
*
|
|
* - GOOGLE_CLIENT_ID
|
|
* - GOOGLE_CLIENT_SECRET
|
|
* - GOOGLE_CALLBACK_URL
|
|
*/
|
|
|
|
// const { User, AuthenticationRequired } = require('unleash-server');
|
|
const { User, AuthenticationRequired } = require('../lib/server-impl.js');
|
|
|
|
const passport = require('@passport-next/passport');
|
|
const GoogleOAuth2Strategy = require('@passport-next/passport-google-oauth2')
|
|
.Strategy;
|
|
|
|
passport.use(
|
|
new GoogleOAuth2Strategy(
|
|
{
|
|
clientID: process.env.GOOGLE_CLIENT_ID,
|
|
clientSecret: process.env.GOOGLE_CLIENT_SECRET,
|
|
callbackURL: process.env.GOOGLE_CALLBACK_URL,
|
|
},
|
|
|
|
(accessToken, refreshToken, profile, done) => {
|
|
done(
|
|
null,
|
|
new User({
|
|
name: profile.displayName,
|
|
email: profile.emails[0].value,
|
|
})
|
|
);
|
|
}
|
|
)
|
|
);
|
|
|
|
function enableGoogleOauth(app) {
|
|
app.use(passport.initialize());
|
|
app.use(passport.session());
|
|
|
|
passport.serializeUser((user, done) => done(null, user));
|
|
passport.deserializeUser((user, done) => done(null, user));
|
|
app.get(
|
|
'/api/admin/login',
|
|
passport.authenticate('google', { scope: ['email'] })
|
|
);
|
|
|
|
app.get(
|
|
'/api/auth/callback',
|
|
passport.authenticate('google', {
|
|
failureRedirect: '/api/admin/error-login',
|
|
}),
|
|
(req, res) => {
|
|
// Successful authentication, redirect to your app.
|
|
res.redirect('/');
|
|
}
|
|
);
|
|
|
|
app.use('/api/admin/', (req, res, next) => {
|
|
if (req.user) {
|
|
next();
|
|
} else {
|
|
// Instruct unleash-frontend to pop-up auth dialog
|
|
return res
|
|
.status('401')
|
|
.json(
|
|
new AuthenticationRequired({
|
|
path: '/api/admin/login',
|
|
type: 'custom',
|
|
message: `You have to identify yourself in order to use Unleash.
|
|
Click the button and follow the instructions.`,
|
|
})
|
|
)
|
|
.end();
|
|
}
|
|
});
|
|
}
|
|
|
|
module.exports = enableGoogleOauth;
|