mirror of https://github.com/rancher/ui.git
98 lines
2.4 KiB
JavaScript
98 lines
2.4 KiB
JavaScript
import { set, get } from '@ember/object';
|
|
import Service, { inject as service } from '@ember/service';
|
|
import Util from 'shared/utils/util';
|
|
|
|
export default Service.extend({
|
|
globalStore: service(),
|
|
session: service(),
|
|
access: service(),
|
|
app: service(),
|
|
|
|
login() {
|
|
const finalUrl = window.location.origin;
|
|
const provider = get(this, 'access.providers').findBy('id', 'ping');
|
|
|
|
return provider.doAction('login', { finalRedirectUrl: finalUrl }).then( ( resp ) => {
|
|
return window.location.href = resp.idpRedirectUrl;
|
|
}).catch(() => {
|
|
return {
|
|
type: 'error',
|
|
message: get(this, 'intl').t('authPage.saml.authError')
|
|
}
|
|
});
|
|
},
|
|
|
|
test(config, cb) {
|
|
let responded = false;
|
|
|
|
window.onAuthTest = (err, code) => {
|
|
if ( !responded ) {
|
|
let authConfig = code;
|
|
|
|
responded = true;
|
|
|
|
this.finishTest(authConfig, code, cb);
|
|
}
|
|
};
|
|
|
|
let url = get(config, 'idpRedirectUrl');
|
|
let popup = window.open(url, 'rancherAuth', Util.popupWindowOptions());
|
|
|
|
let timer = setInterval(function() {
|
|
if (popup && popup.closed ) {
|
|
clearInterval(timer);
|
|
|
|
if ( !responded ) {
|
|
responded = true;
|
|
|
|
cb({
|
|
type: 'error',
|
|
message: get(this, 'intl').t('authPage.saml.authError')
|
|
});
|
|
}
|
|
} else if (popup === null || typeof (popup) === 'undefined') {
|
|
clearInterval(timer);
|
|
|
|
if ( !responded ) {
|
|
responded = true;
|
|
|
|
cb({
|
|
type: 'error',
|
|
message: get(this, 'intl').t('authPage.saml.popupError')
|
|
});
|
|
}
|
|
}
|
|
}, 500);
|
|
},
|
|
|
|
finishTest(config, code, cb) {
|
|
const authConfig = config;
|
|
|
|
set(authConfig, 'enabled', true);
|
|
|
|
const allowedPrincipalIds = get(authConfig, 'allowedPrincipalIds') || [];
|
|
|
|
return authConfig.save().then(() => {
|
|
let found = false;
|
|
const myPIds = get(this, 'access.me.principalIds');
|
|
|
|
myPIds.forEach( (id) => {
|
|
if (allowedPrincipalIds.indexOf(id) >= 0) {
|
|
found = true;
|
|
}
|
|
});
|
|
|
|
if ( !found && !allowedPrincipalIds.length) {
|
|
allowedPrincipalIds.pushObject(get(this, 'access.principal.id'));
|
|
}
|
|
|
|
return authConfig.save().then(() => {
|
|
window.location.href = window.location.href;
|
|
});
|
|
}).catch((err) => {
|
|
cb(err);
|
|
});
|
|
|
|
},
|
|
});
|