Merge pull request #390 from jeroenr/master
Fixed URI encoding for clientId and parse optional client secret from config file
This commit is contained in:
commit
ae4d83107a
1 changed files with 20 additions and 17 deletions
|
@ -54,21 +54,22 @@ var Keycloak = function (config) {
|
|||
if (initOptions.token || initOptions.refreshToken) {
|
||||
setToken(initOptions.token, initOptions.refreshToken);
|
||||
} else if (initOptions.onLoad) {
|
||||
if (initOptions.onLoad == 'check-sso' || initOptions.onLoad == 'login-required') {
|
||||
var options = {};
|
||||
if (initOptions.onLoad == 'check-sso') {
|
||||
var options = {};
|
||||
switch (initOptions.onLoad) {
|
||||
case 'check-sso':
|
||||
options.prompt = 'none';
|
||||
}
|
||||
var p = kc.login(options);
|
||||
if (p) {
|
||||
p.success(function() {
|
||||
initPromise.setSuccess();
|
||||
}).error(function() {
|
||||
initPromise.setError();
|
||||
});
|
||||
};
|
||||
} else {
|
||||
throw 'Invalid value for onLoad';
|
||||
case 'login-required':
|
||||
var p = kc.login(options);
|
||||
if (p) {
|
||||
p.success(function() {
|
||||
initPromise.setSuccess();
|
||||
}).error(function() {
|
||||
initPromise.setError();
|
||||
});
|
||||
};
|
||||
break;
|
||||
default:
|
||||
throw 'Invalid value for onLoad';
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
@ -131,7 +132,7 @@ var Keycloak = function (config) {
|
|||
kc.createAccountUrl = function(options) {
|
||||
var url = getRealmUrl()
|
||||
+ '/account'
|
||||
+ '?referrer=' + kc.clientId
|
||||
+ '?referrer=' + encodeURIComponent(kc.clientId)
|
||||
+ '&referrer_uri=' + encodeURIComponent(adapter.redirectUri(options));
|
||||
|
||||
return url;
|
||||
|
@ -143,7 +144,7 @@ var Keycloak = function (config) {
|
|||
|
||||
kc.hasRealmRole = function (role) {
|
||||
var access = kc.realmAccess;
|
||||
return access && access.roles.indexOf(role) >= 0 || false;
|
||||
return !!access && access.roles.indexOf(role) >= 0;
|
||||
}
|
||||
|
||||
kc.hasResourceRole = function(role, resource) {
|
||||
|
@ -152,7 +153,7 @@ var Keycloak = function (config) {
|
|||
}
|
||||
|
||||
var access = kc.resourceAccess[resource || kc.clientId];
|
||||
return access && access.roles.indexOf(role) >= 0 || false;
|
||||
return !!access && access.roles.indexOf(role) >= 0;
|
||||
}
|
||||
|
||||
kc.loadUserProfile = function() {
|
||||
|
@ -329,6 +330,7 @@ var Keycloak = function (config) {
|
|||
kc.authServerUrl = config['auth-server-url'];
|
||||
kc.realm = config['realm'];
|
||||
kc.clientId = config['resource'];
|
||||
kc.clientSecret = (config['credentials'] || {})['secret'];
|
||||
|
||||
promise.setSuccess();
|
||||
} else {
|
||||
|
@ -360,6 +362,7 @@ var Keycloak = function (config) {
|
|||
kc.authServerUrl = config.url;
|
||||
kc.realm = config.realm;
|
||||
kc.clientId = config.clientId;
|
||||
kc.clientSecret = (config.credentials || {}).secret;
|
||||
|
||||
promise.setSuccess();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue