mirror of
https://github.com/wekan/wekan.git
synced 2025-12-27 04:38:49 +01:00
Removes the dropdown for the authentication method
This commit is contained in:
parent
2fbcf7e9b6
commit
72e905675d
4 changed files with 41 additions and 90 deletions
|
|
@ -23,7 +23,6 @@ template(name="userFormsLayout")
|
||||||
br
|
br
|
||||||
section.auth-dialog
|
section.auth-dialog
|
||||||
+Template.dynamic(template=content)
|
+Template.dynamic(template=content)
|
||||||
+connectionMethod
|
|
||||||
if isCas
|
if isCas
|
||||||
.at-form
|
.at-form
|
||||||
button#cas(class='at-btn submit' type='submit') {{casSignInLabel}}
|
button#cas(class='at-btn submit' type='submit') {{casSignInLabel}}
|
||||||
|
|
|
||||||
|
|
@ -6,29 +6,14 @@ const i18nTagToT9n = (i18nTag) => {
|
||||||
return i18nTag;
|
return i18nTag;
|
||||||
};
|
};
|
||||||
|
|
||||||
const validator = {
|
Template.userFormsLayout.onCreated(function() {
|
||||||
set(obj, prop, value) {
|
Meteor.call('getDefaultAuthenticationMethod', (error, result) => {
|
||||||
if (prop === 'state' && value !== 'signIn') {
|
this.data.defaultAuthenticationMethod = new ReactiveVar(error ? undefined : result);
|
||||||
$('.at-form-authentication').hide();
|
});
|
||||||
} else if (prop === 'state' && value === 'signIn') {
|
|
||||||
$('.at-form-authentication').show();
|
|
||||||
}
|
|
||||||
// The default behavior to store the value
|
|
||||||
obj[prop] = value;
|
|
||||||
// Indicate success
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
Template.userFormsLayout.onCreated(() => {
|
|
||||||
Meteor.subscribe('setting');
|
Meteor.subscribe('setting');
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
Template.userFormsLayout.onRendered(() => {
|
Template.userFormsLayout.onRendered(() => {
|
||||||
|
|
||||||
AccountsTemplates.state.form.keys = new Proxy(AccountsTemplates.state.form.keys, validator);
|
|
||||||
|
|
||||||
const i18nTag = navigator.language;
|
const i18nTag = navigator.language;
|
||||||
if (i18nTag) {
|
if (i18nTag) {
|
||||||
T9n.setLanguage(i18nTagToT9n(i18nTag));
|
T9n.setLanguage(i18nTagToT9n(i18nTag));
|
||||||
|
|
@ -101,13 +86,11 @@ Template.userFormsLayout.events({
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
'click #at-btn'(event) {
|
'click #at-btn'(event, instance) {
|
||||||
/* All authentication method can be managed/called here.
|
const email = $('#at-field-username_and_email').val();
|
||||||
!! DON'T FORGET to correctly fill the fields of the user during its creation if necessary authenticationMethod : String !!
|
const password = $('#at-field-password').val();
|
||||||
*/
|
|
||||||
const authenticationMethodSelected = $('.select-authentication').val();
|
if (FlowRouter.getRouteName() !== 'atSignIn' || password === '' || email === '') {
|
||||||
// Local account
|
|
||||||
if (authenticationMethodSelected === 'password') {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -115,29 +98,11 @@ Template.userFormsLayout.events({
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
event.stopImmediatePropagation();
|
event.stopImmediatePropagation();
|
||||||
|
|
||||||
const email = $('#at-field-username_and_email').val();
|
Meteor.subscribe('user-authenticationMethod', email, {
|
||||||
const password = $('#at-field-password').val();
|
onReady() {
|
||||||
|
return authentication.call(this, instance, email, password);
|
||||||
// Ldap account
|
},
|
||||||
if (authenticationMethodSelected === 'ldap') {
|
});
|
||||||
// Check if the user can use the ldap connection
|
|
||||||
Meteor.subscribe('user-authenticationMethod', email, {
|
|
||||||
onReady() {
|
|
||||||
const user = Users.findOne();
|
|
||||||
if (user === undefined || user.authenticationMethod === 'ldap') {
|
|
||||||
// Use the ldap connection package
|
|
||||||
Meteor.loginWithLDAP(email, password, function(error) {
|
|
||||||
if (!error) {
|
|
||||||
// Connection
|
|
||||||
return FlowRouter.go('/');
|
|
||||||
}
|
|
||||||
return error;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return this.stop();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -146,3 +111,30 @@ Template.defaultLayout.events({
|
||||||
Modal.close();
|
Modal.close();
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function authentication(instance, email, password) {
|
||||||
|
const user = Users.findOne();
|
||||||
|
|
||||||
|
// Authentication with password
|
||||||
|
if (user && user.authenticationMethod === 'password') {
|
||||||
|
$('#at-pwd-form').submit();
|
||||||
|
return this.stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
const authenticationMethod = user ?
|
||||||
|
user.authenticationMethod :
|
||||||
|
instance.data.defaultAuthenticationMethod.get();
|
||||||
|
|
||||||
|
// Authentication with LDAP
|
||||||
|
if (authenticationMethod === 'ldap') {
|
||||||
|
// Use the ldap connection package
|
||||||
|
Meteor.loginWithLDAP(email, password, function(error) {
|
||||||
|
if (!error) {
|
||||||
|
return FlowRouter.go('/');
|
||||||
|
}
|
||||||
|
return error;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.stop();
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
template(name='connectionMethod')
|
|
||||||
div.at-form-authentication
|
|
||||||
label {{_ 'authentication-method'}}
|
|
||||||
select.select-authentication
|
|
||||||
each authentications
|
|
||||||
option(value="{{value}}") {{_ value}}
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
||||||
Template.connectionMethod.onCreated(function() {
|
|
||||||
this.authenticationMethods = new ReactiveVar([]);
|
|
||||||
|
|
||||||
Meteor.call('getAuthenticationsEnabled', (_, result) => {
|
|
||||||
if (result) {
|
|
||||||
// TODO : add a management of different languages
|
|
||||||
// (ex {value: ldap, text: TAPi18n.__('ldap', {}, T9n.getLanguage() || 'en')})
|
|
||||||
this.authenticationMethods.set([
|
|
||||||
{value: 'password'},
|
|
||||||
// Gets only the authentication methods availables
|
|
||||||
...Object.entries(result).filter((e) => e[1]).map((e) => ({value: e[0]})),
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
// If only the default authentication available, hides the select boxe
|
|
||||||
const content = $('.at-form-authentication');
|
|
||||||
if (!(this.authenticationMethods.get().length > 1)) {
|
|
||||||
content.hide();
|
|
||||||
} else {
|
|
||||||
content.show();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
Template.connectionMethod.onRendered(() => {
|
|
||||||
// Moves the select boxe in the first place of the at-pwd-form div
|
|
||||||
$('.at-form-authentication').detach().prependTo('.at-pwd-form');
|
|
||||||
});
|
|
||||||
|
|
||||||
Template.connectionMethod.helpers({
|
|
||||||
authentications() {
|
|
||||||
return Template.instance().authenticationMethods.get();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue