summaryrefslogtreecommitdiffstats
path: root/client/components/main/layouts.js
diff options
context:
space:
mode:
authorguillaume <guillaume.cassou@supinfo.com>2018-12-19 13:41:21 +0100
committerguillaume <guillaume.cassou@supinfo.com>2018-12-19 13:41:21 +0100
commit72e905675da64d403c2b9a5c51deb01d9084af85 (patch)
tree6958799467a4f23b08278771e4fcc328622d9622 /client/components/main/layouts.js
parent2fbcf7e9b61702a2c3311f813de2bb12a754b2b2 (diff)
downloadwekan-72e905675da64d403c2b9a5c51deb01d9084af85.tar.gz
wekan-72e905675da64d403c2b9a5c51deb01d9084af85.tar.bz2
wekan-72e905675da64d403c2b9a5c51deb01d9084af85.zip
Removes the dropdown for the authentication method
Diffstat (limited to 'client/components/main/layouts.js')
-rw-r--r--client/components/main/layouts.js90
1 files changed, 41 insertions, 49 deletions
diff --git a/client/components/main/layouts.js b/client/components/main/layouts.js
index a50d167e..7c060ca5 100644
--- a/client/components/main/layouts.js
+++ b/client/components/main/layouts.js
@@ -6,29 +6,14 @@ const i18nTagToT9n = (i18nTag) => {
return i18nTag;
};
-const validator = {
- set(obj, prop, value) {
- if (prop === 'state' && value !== 'signIn') {
- $('.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(() => {
+Template.userFormsLayout.onCreated(function() {
+ Meteor.call('getDefaultAuthenticationMethod', (error, result) => {
+ this.data.defaultAuthenticationMethod = new ReactiveVar(error ? undefined : result);
+ });
Meteor.subscribe('setting');
-
});
Template.userFormsLayout.onRendered(() => {
-
- AccountsTemplates.state.form.keys = new Proxy(AccountsTemplates.state.form.keys, validator);
-
const i18nTag = navigator.language;
if (i18nTag) {
T9n.setLanguage(i18nTagToT9n(i18nTag));
@@ -101,13 +86,11 @@ Template.userFormsLayout.events({
}
});
},
- 'click #at-btn'(event) {
- /* 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 !!
- */
- const authenticationMethodSelected = $('.select-authentication').val();
- // Local account
- if (authenticationMethodSelected === 'password') {
+ 'click #at-btn'(event, instance) {
+ const email = $('#at-field-username_and_email').val();
+ const password = $('#at-field-password').val();
+
+ if (FlowRouter.getRouteName() !== 'atSignIn' || password === '' || email === '') {
return;
}
@@ -115,29 +98,11 @@ Template.userFormsLayout.events({
event.preventDefault();
event.stopImmediatePropagation();
- const email = $('#at-field-username_and_email').val();
- const password = $('#at-field-password').val();
-
- // 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();
- },
- });
- }
+ Meteor.subscribe('user-authenticationMethod', email, {
+ onReady() {
+ return authentication.call(this, instance, email, password);
+ },
+ });
},
});
@@ -146,3 +111,30 @@ Template.defaultLayout.events({
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();
+}