Created
July 31, 2015 14:00
-
-
Save sandrinodimattia/cabaeafbdb8578bbb379 to your computer and use it in GitHub Desktop.
Auth0 - Automatically login with kerberos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Helper to get a querystring value. | |
*/ | |
function getParameterByName( name ){ | |
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); | |
var regexS = "[\\?&]"+name+"=([^&#]*)"; | |
var regex = new RegExp( regexS ); | |
var results = regex.exec( window.location.href ); | |
if( results == null ) | |
return ""; | |
else | |
return decodeURIComponent(results[1].replace(/\+/g, " ")); | |
} | |
/* | |
* Verify if Kerberos is possible (based on the IP address). | |
* If it is, try to authenticate the user. | |
*/ | |
lock.$auth0.getSSOData(true, function(err, data) { | |
if (!err && data.sso) { | |
if (data.connection && data.strategy === 'ad') { | |
lock.$auth0.signin({ | |
connection: data.connection, | |
state: getParameterByName('state'), | |
protocol: getParameterByName('protocol') || 'oauth2' | |
}); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment