app.controller('loginCtrl', [ '$scope', '$timeout', 'Auth', '$location', 'localStorageService', '$rootScope', 'azp@oauth3.org' , function ($scope, $timeout, Auth, $location, localStorageService, $rootScope, Oauth3) { var vm = this; vm.currentPath = $location.url().substr(1); vm.independentIssuer = false; vm.oauth3 = Oauth3.oauth3 = Oauth3.oauth3 || Oauth3.create(location); vm.timers = {}; vm.defaultIssuer = 'provider.' + location.host.replace(/^cloud\./, ''); vm.session = Auth.session; vm.sessions = Auth.sessions; vm.showAdvanced = true; vm.toggleAdvanced = function () { vm.showAdvanced = !vm.showAdvanced; vm.independentIssuer = !vm.independentIssuer; }; vm.notification = true; vm._setSubject = function (subject) { vm.currentSubject = vm.newSubject; subject = subject || vm.newSubject; var issuer = subject.replace(/.*@/, ''); if (vm.independentIssuer) { return $timeout(function () { return; }, 0); } return Oauth3.discover(issuer, { client_uri: Oauth3.clientUri(location) }).then(function (deets) { return vm._setIssuer(issuer); }, function () { // ignore error }); }; vm.setSubject = function (subject) { $timeout.cancel(vm.timers.subject); vm.timers.subject = $timeout(function () { vm._setSubject(subject); }, 300); }; vm._setIssuer = function (url) { vm.spinner = true; url = (url || vm.newIssuer).replace(/.*@/, ''); if (!url) { url = vm.defaultIssuer; } return Oauth3.discover(url, { client_uri: Oauth3.clientUri(location) }).then(function (deets) { console.log('discover', url); console.log(deets); vm.currentIssuer = url; vm.issuerName = url; return vm.oauth3.setIdentityProvider(url).then(function (deets) { vm.oauth3.setResourceProvider(url); vm.spinner = false; // TODO add icon and name to directives console.log(deets); }); }, function () { console.log('oauth3 timeout: No dice, no change'); vm.spinner = false; }); }; vm.setIssuer = function (url) { $timeout.cancel(vm.timers.issuer); vm.timers.issuer = $timeout(function () { vm._setIssuer(url); }, 300); }; vm.setAudience = function (url) { url = url || vm.audienceUrl; vm.audienceName = url; vm.oauth3.setResourceProvider(url); }; vm.selectSession = function (session) { vm.xauth = true; vm.session = session; return Auth.select(session).then(function (oauth3) { vm.xauth = false; vm.oauth3 = oauth3; }); }; vm.instaauth = function () { return vm._setSubject().then(function () { return vm._setIssuer().then(function () { return vm.auth(); }); }); }; vm.auth = function () { var subject = vm.currentSubject; var issuer = vm.issuerName; return vm.oauth3.authenticate({ subject: subject , scope: [ 'domains@oauth3.org', 'domains', 'dns@oauth3.org', 'dns', 'www@daplie.com' ] }).then(function (session) { console.log('vm.auth session.issuer', session.issuer); session.subject = subject; session.issuer = issuer; Auth.add(session); if ($rootScope.redirectedURL === '/splash-page') { $location.path('/home'); } else { $location.path('/' + $rootScope.redirectedURL); } }, function (err) { console.log('auth error'); console.log(err); }); }; vm.newIssuer = vm.defaultIssuer; vm.setIssuer(vm.defaultIssuer); vm.initGetSession = function() { return Auth.select(Auth.session); } vm.initListLoggedInProfiles = function () { vm.activeProfiles = Auth.getActiveSessions(); }; vm.signIn = function () { vm.auth(); }; vm.masterLogOut = function () { localStorage.clear(); $location.path('/splash-page'); }; vm.signOut = function () { // TODO the sign-out url for each account should be fixed. return Auth.signOut().then(function () { if (Auth.sessions.length === 0) { $location.path('/splash-page'); return; } window.alert("You are still logged in with other accounts."); }); }; }]);