patch authentication

This commit is contained in:
guillaume 2018-11-09 17:46:02 +01:00
parent cb091c8a54
commit 893329d9c6
2 changed files with 54 additions and 29 deletions

View file

@ -6,6 +6,12 @@ const i18nTagToT9n = (i18nTag) => {
return i18nTag; return i18nTag;
}; };
Template.userFormsLayout.onCreated(function() {
Meteor.call('getDefaultAuthenticationMethod', (error, result) => {
this.data.defaultAuthenticationMethod = new ReactiveVar(error ? undefined : result);
});
});
Template.userFormsLayout.onRendered(() => { Template.userFormsLayout.onRendered(() => {
const i18nTag = navigator.language; const i18nTag = navigator.language;
if (i18nTag) { if (i18nTag) {
@ -65,43 +71,24 @@ Template.userFormsLayout.events({
} }
}); });
}, },
'click #at-btn'(event) { 'click #at-btn'(event, instance) {
/* All authentication method can be managed/called here. /* All authentication method can be managed/called here.
!! DON'T FORGET to correctly fill the fields of the user during its creation if necessary authenticationMethod : String !! !! DON'T FORGET to correctly fill the fields of the user during its creation if necessary authenticationMethod : String !!
*/ */
if (FlowRouter.getRouteName() !== 'atSignIn') {
return;
}
const email = $('#at-field-username_and_email').val(); const email = $('#at-field-username_and_email').val();
const password = $('#at-field-password').val();
Meteor.subscribe('user-authenticationMethod', email, { if (FlowRouter.getRouteName() !== 'atSignIn' || password === '') {
onReady() { return;
const user = Users.findOne();
if (user && user.authenticationMethod === 'password') {
logoutWithTimer(user._id);
return this.stop();
} }
// Stop submit #at-pwd-form // Stop submit #at-pwd-form
event.preventDefault(); event.preventDefault();
event.stopImmediatePropagation(); event.stopImmediatePropagation();
const password = $('#at-field-password').val(); Meteor.subscribe('user-authenticationMethod', email, {
onReady() {
if (user === undefined || user.authenticationMethod === 'ldap') { return authentication.call(this, instance, email, password);
// Use the ldap connection package
Meteor.loginWithLDAP(email, password, function(error) {
if (!error) {
logoutWithTimer(user._id);
// Connection
return FlowRouter.go('/');
}
return error;
});
}
return this.stop();
}, },
}); });
}, },
@ -112,3 +99,33 @@ Template.defaultLayout.events({
Modal.close(); Modal.close();
}, },
}); });
function authentication(instance, email, password) {
let user = Users.findOne();
// Authentication with password
if (user && user.authenticationMethod === 'password') {
$('#at-pwd-form').submit();
// Meteor.call('logoutWithTimer', user._id, () => {});
return this.stop();
}
// If user doesn't exist, uses the default authentication method if it defined
if (user === undefined) {
user = {
"authenticationMethod": instance.data.defaultAuthenticationMethod.get()
};
}
// Authentication with LDAP
if (user.authenticationMethod === 'ldap') {
// Use the ldap connection package
Meteor.loginWithLDAP(email, password, function(error) {
if (!error) {
// Meteor.call('logoutWithTimer', Users.findOne()._id, () => {});
return FlowRouter.go('/');
}
return error;
});
}
return this.stop();
}

View file

@ -76,6 +76,7 @@ if (Meteor.isServer) {
}, createdAt: now, modifiedAt: now}; }, createdAt: now, modifiedAt: now};
Settings.insert(defaultSetting); Settings.insert(defaultSetting);
} }
const newSetting = Settings.findOne(); const newSetting = Settings.findOne();
if (!process.env.MAIL_URL && newSetting.mailUrl()) if (!process.env.MAIL_URL && newSetting.mailUrl())
process.env.MAIL_URL = newSetting.mailUrl(); process.env.MAIL_URL = newSetting.mailUrl();
@ -235,6 +236,12 @@ if (Meteor.isServer) {
cas: isCasEnabled(), cas: isCasEnabled(),
}; };
}, },
getDefaultAuthenticationMethod() {
return process.env.DEFAULT_AUTHENTICATION_METHOD;
},
// TODO: patch error : did not check all arguments during call
logoutWithTimer(userId) { logoutWithTimer(userId) {
if (process.env.LOGOUT_WITH_TIMER) { if (process.env.LOGOUT_WITH_TIMER) {
Jobs.run('logOut', userId, { Jobs.run('logOut', userId, {
@ -257,6 +264,7 @@ if (Meteor.isServer) {
{_id: userId}, {_id: userId},
{$set: {'services.resume.loginTokens': []}} {$set: {'services.resume.loginTokens': []}}
); );
this.success();
}, },
}); });
} }