| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- const debug = require('debug')('growi:service:PassportService');
- const passport = require('passport');
- const LocalStrategy = require('passport-local').Strategy;
- const LdapStrategy = require('passport-ldapauth');
- const GoogleStrategy = require('passport-google-auth').Strategy;
- const GitHubStrategy = require('passport-github').Strategy;
- /**
- * the service class of Passport
- */
- class PassportService {
- // see '/lib/form/login.js'
- static get USERNAME_FIELD() { return 'loginForm[username]' }
- static get PASSWORD_FIELD() { return 'loginForm[password]' }
- constructor(crowi) {
- this.crowi = crowi;
- /**
- * the flag whether LocalStrategy is set up successfully
- */
- this.isLocalStrategySetup = false;
- /**
- * the flag whether LdapStrategy is set up successfully
- */
- this.isLdapStrategySetup = false;
- /**
- * the flag whether LdapStrategy is set up successfully
- */
- this.isGoogleStrategySetup = false;
- /**
- * the flag whether serializer/deserializer are set up successfully
- */
- this.isSerializerSetup = false;
- }
- /**
- * reset LocalStrategy
- *
- * @memberof PassportService
- */
- resetLocalStrategy() {
- debug('LocalStrategy: reset');
- passport.unuse('local');
- this.isLocalStrategySetup = false;
- }
- /**
- * setup LocalStrategy
- *
- * @memberof PassportService
- */
- setupLocalStrategy() {
- // check whether the strategy has already been set up
- if (this.isLocalStrategySetup) {
- throw new Error('LocalStrategy has already been set up');
- }
- debug('LocalStrategy: setting up..');
- const User = this.crowi.model('User');
- passport.use(new LocalStrategy(
- {
- usernameField: PassportService.USERNAME_FIELD,
- passwordField: PassportService.PASSWORD_FIELD,
- },
- (username, password, done) => {
- // find user
- User.findUserByUsernameOrEmail(username, password, (err, user) => {
- if (err) { return done(err) }
- // check existence and password
- if (!user || !user.isPasswordValid(password)) {
- return done(null, false, { message: 'Incorrect credentials.' });
- }
- return done(null, user);
- });
- }
- ));
- this.isLocalStrategySetup = true;
- debug('LocalStrategy: setup is done');
- }
- /**
- * reset LdapStrategy
- *
- * @memberof PassportService
- */
- resetLdapStrategy() {
- debug('LdapStrategy: reset');
- passport.unuse('ldapauth');
- this.isLdapStrategySetup = false;
- }
- /**
- * Asynchronous configuration retrieval
- *
- * @memberof PassportService
- */
- setupLdapStrategy() {
- // check whether the strategy has already been set up
- if (this.isLdapStrategySetup) {
- throw new Error('LdapStrategy has already been set up');
- }
- const config = this.crowi.config;
- const Config = this.crowi.model('Config');
- const isLdapEnabled = Config.isEnabledPassportLdap(config);
- // when disabled
- if (!isLdapEnabled) {
- return;
- }
- debug('LdapStrategy: setting up..');
- passport.use(new LdapStrategy(this.getLdapConfigurationFunc(config, {passReqToCallback: true}),
- (req, ldapAccountInfo, done) => {
- debug('LDAP authentication has succeeded', ldapAccountInfo);
- // store ldapAccountInfo to req
- req.ldapAccountInfo = ldapAccountInfo;
- done(null, ldapAccountInfo);
- }
- ));
- this.isLdapStrategySetup = true;
- debug('LdapStrategy: setup is done');
- }
- /**
- * return attribute name for mapping to username of Crowi DB
- *
- * @returns
- * @memberof PassportService
- */
- getLdapAttrNameMappedToUsername() {
- const config = this.crowi.config;
- return config.crowi['security:passport-ldap:attrMapUsername'] || 'uid';
- }
- /**
- * return attribute name for mapping to name of Crowi DB
- *
- * @returns
- * @memberof PassportService
- */
- getLdapAttrNameMappedToName() {
- const config = this.crowi.config;
- return config.crowi['security:passport-ldap:attrMapName'] || '';
- }
- /**
- * CAUTION: this method is capable to use only when `req.body.loginForm` is not null
- *
- * @param {any} req
- * @returns
- * @memberof PassportService
- */
- getLdapAccountIdFromReq(req) {
- return req.body.loginForm.username;
- }
- /**
- * Asynchronous configuration retrieval
- * @see https://github.com/vesse/passport-ldapauth#asynchronous-configuration-retrieval
- *
- * @param {object} config
- * @param {object} opts
- * @returns
- * @memberof PassportService
- */
- getLdapConfigurationFunc(config, opts) {
- // get configurations
- const isUserBind = config.crowi['security:passport-ldap:isUserBind'];
- const serverUrl = config.crowi['security:passport-ldap:serverUrl'];
- const bindDN = config.crowi['security:passport-ldap:bindDN'];
- const bindCredentials = config.crowi['security:passport-ldap:bindDNPassword'];
- const searchFilter = config.crowi['security:passport-ldap:searchFilter'] || '(uid={{username}})';
- const groupSearchBase = config.crowi['security:passport-ldap:groupSearchBase'];
- const groupSearchFilter = config.crowi['security:passport-ldap:groupSearchFilter'];
- const groupDnProperty = config.crowi['security:passport-ldap:groupDnProperty'] || 'uid';
- // parse serverUrl
- // see: https://regex101.com/r/0tuYBB/1
- const match = serverUrl.match(/(ldaps?:\/\/[^/]+)\/(.*)?/);
- if (match == null || match.length < 1) {
- debug('LdapStrategy: serverUrl is invalid');
- return (req, callback) => { callback({ message: 'serverUrl is invalid'}) };
- }
- const url = match[1];
- const searchBase = match[2] || '';
- debug(`LdapStrategy: url=${url}`);
- debug(`LdapStrategy: searchBase=${searchBase}`);
- debug(`LdapStrategy: isUserBind=${isUserBind}`);
- if (!isUserBind) {
- debug(`LdapStrategy: bindDN=${bindDN}`);
- debug(`LdapStrategy: bindCredentials=${bindCredentials}`);
- }
- debug(`LdapStrategy: searchFilter=${searchFilter}`);
- debug(`LdapStrategy: groupSearchBase=${groupSearchBase}`);
- debug(`LdapStrategy: groupSearchFilter=${groupSearchFilter}`);
- debug(`LdapStrategy: groupDnProperty=${groupDnProperty}`);
- return (req, callback) => {
- // get credentials from form data
- const loginForm = req.body.loginForm;
- if (!req.form.isValid) {
- return callback({ message: 'Incorrect credentials.' });
- }
- // user bind
- const fixedBindDN = (isUserBind) ?
- bindDN.replace(/{{username}}/, loginForm.username):
- bindDN;
- const fixedBindCredentials = (isUserBind) ? loginForm.password : bindCredentials;
- let serverOpt = {
- url, bindDN: fixedBindDN, bindCredentials: fixedBindCredentials,
- searchBase, searchFilter,
- attrMapUsername: this.getLdapAttrNameMappedToUsername(),
- attrMapName: this.getLdapAttrNameMappedToName(),
- };
- if (groupSearchBase && groupSearchFilter) {
- serverOpt = Object.assign(serverOpt, { groupSearchBase, groupSearchFilter, groupDnProperty });
- }
- process.nextTick(() => {
- const mergedOpts = Object.assign({
- usernameField: PassportService.USERNAME_FIELD,
- passwordField: PassportService.PASSWORD_FIELD,
- server: serverOpt,
- }, opts);
- debug('ldap configuration: ', mergedOpts);
- // store configuration to req
- req.ldapConfiguration = mergedOpts;
- callback(null, mergedOpts);
- });
- };
- }
- /**
- * Asynchronous configuration retrieval
- *
- * @memberof PassportService
- */
- setupGoogleStrategy() {
- // check whether the strategy has already been set up
- if (this.isGoogleStrategySetup) {
- throw new Error('GoogleStrategy has already been set up');
- }
- const config = this.crowi.config;
- const Config = this.crowi.model('Config');
- //this
- const isGoogleEnabled = Config.isEnabledPassportGoogle(config);
- // when disabled
- if (!isGoogleEnabled) {
- return;
- }
- debug('GoogleStrategy: setting up..');
- passport.use(new GoogleStrategy({
- clientId: config.crowi['security:passport-google:clientId'] || process.env.OAUTH_GOOGLE_CLIENT_ID,
- clientSecret: config.crowi['security:passport-google:clientSecret'] || process.env.OAUTH_GOOGLE_CLIENT_SECRET,
- callbackURL: config.crowi['security:passport-google:callbackUrl'] || process.env.OAUTH_GOOGLE_CALLBACK_URI,
- skipUserProfile: false,
- }, function(accessToken, refreshToken, profile, done) {
- if (profile) {
- return done(null, profile);
- }
- else {
- return done(null, false);
- }
- }));
- this.isGoogleStrategySetup = true;
- debug('GoogleStrategy: setup is done');
- }
- /**
- * reset GoogleStrategy
- *
- * @memberof PassportService
- */
- resetGoogleStrategy() {
- debug('GoogleStrategy: reset');
- passport.unuse('google');
- this.isGoogleStrategySetup = false;
- }
- setupGitHubStrategy() {
- // check whether the strategy has already been set up
- if (this.isGitHubStrategySetup) {
- throw new Error('GitHubStrategy has already been set up');
- }
- const config = this.crowi.config;
- const Config = this.crowi.model('Config');
- //this
- const isGitHubEnabled = Config.isEnabledPassportGitHub(config);
- // when disabled
- if (!isGitHubEnabled) {
- return;
- }
- debug('GitHubStrategy: setting up..');
- passport.use(new GitHubStrategy({
- clientID: config.crowi['security:passport-github:clientId'] || process.env.OAUTH_GITHUB_CLIENT_ID,
- clientSecret: config.crowi['security:passport-github:clientSecret'] || process.env.OAUTH_GITHUB_CLIENT_SECRET,
- callbackURL: config.crowi['security:passport-github:callbackUrl'] || process.env.OAUTH_GITHUB_CALLBACK_URI,
- skipUserProfile: false,
- }, function(accessToken, refreshToken, profile, done) {
- if (profile) {
- return done(null, profile);
- }
- else {
- return done(null, false);
- }
- }));
- this.isGitHubStrategySetup = true;
- debug('GitHubStrategy: setup is done');
- }
- /**
- * reset GoogleStrategy
- *
- * @memberof PassportService
- */
- resetGitHubStrategy() {
- debug('GitHubStrategy: reset');
- passport.unuse('github');
- this.isGitHubStrategySetup = false;
- }
- /**
- * setup serializer and deserializer
- *
- * @memberof PassportService
- */
- setupSerializer() {
- // check whether the serializer/deserializer have already been set up
- if (this.isSerializerSetup) {
- throw new Error('serializer/deserializer have already been set up');
- }
- debug('setting up serializer and deserializer');
- const User = this.crowi.model('User');
- passport.serializeUser(function(user, done) {
- done(null, user.id);
- });
- passport.deserializeUser(function(id, done) {
- User.findById(id, function(err, user) {
- done(err, user);
- });
- });
- this.isSerializerSetup = true;
- }
- }
- module.exports = PassportService;
|