mirror of https://github.com/rancher/ui.git
191 lines
4.7 KiB
JavaScript
191 lines
4.7 KiB
JavaScript
import Ember from 'ember';
|
|
import C from 'ui/utils/constants';
|
|
|
|
export default Ember.Controller.extend({
|
|
endpoint: Ember.inject.service(),
|
|
access: Ember.inject.service(),
|
|
|
|
confirmDisable: false,
|
|
errors: null,
|
|
testing: false,
|
|
saving: false,
|
|
saved: true,
|
|
error: null,
|
|
originalModel: null,
|
|
|
|
addUserInput: '',
|
|
addOrgInput: '',
|
|
|
|
username: '',
|
|
password: '',
|
|
|
|
createDisabled: function() {
|
|
return !this.get('username.length') || !this.get('password.length');
|
|
}.property('username.length','password.length'),
|
|
|
|
saveDisabled: Ember.computed.or('saving','saved'),
|
|
isRestricted: Ember.computed.equal('model.accessMode','restricted'),
|
|
|
|
wasRestricted: Ember.computed.equal('originalModel.accessMode','restricted'),
|
|
wasRestrictedMsg: function() {
|
|
var users = this.get('originalModel.allowedUsers.length');
|
|
var orgs = this.get('originalModel.allowedOrganizations.length');
|
|
var enterprise = !!this.get('originalModel.hostname');
|
|
|
|
var github = 'GitHub' + ( enterprise ? ' Enterprise' : '');
|
|
|
|
var str = 'project members';
|
|
if ( users )
|
|
{
|
|
str += (orgs ? ', ' : ' and ') + users + ' ' + github + ' user' + (users === 1 ? '' : 's');
|
|
}
|
|
|
|
if ( orgs )
|
|
{
|
|
str += ' and ' + orgs + (users ? '' : ' ' + github) + ' organization' + ( orgs === 1 ? '' : 's');
|
|
}
|
|
|
|
return str;
|
|
}.property('originalModel.allowedUsers.[]','originalModel.allowedOrganizations.[]','wasRestricted'),
|
|
|
|
wasShowing: false,
|
|
showingAccessControl: function() {
|
|
var show = this.get('wasShowing');
|
|
var restricted = this.get('isRestricted');
|
|
|
|
if ( restricted )
|
|
{
|
|
if ( (this.get('model.allowedUsers.length') + this.get('model.allowedOrganizations.length')) > 1 )
|
|
{
|
|
show = true;
|
|
}
|
|
else if ( this.get('model.allowedUsers.firstObject') !== this.get('session').get(C.SESSION.USER_ID) )
|
|
{
|
|
show = true;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
show = true;
|
|
}
|
|
|
|
|
|
this.set('wasShowing', show);
|
|
return show;
|
|
}.property('model.allowedUsers.[]','model.allowedOrganizations.[]','isRestricted','wasShowing'),
|
|
|
|
accessModeChanged: function() {
|
|
this.set('saved',false);
|
|
}.observes('accessMode'),
|
|
|
|
actions: {
|
|
test: function() {
|
|
this.send('clearError');
|
|
this.set('testing', true);
|
|
|
|
var model = this.get('model');
|
|
model.setProperties({
|
|
enabled: false,
|
|
});
|
|
|
|
|
|
model.save().then(() => {
|
|
this.send('authenticate');
|
|
}).catch(err => {
|
|
this.send('gotError', err);
|
|
});
|
|
},
|
|
|
|
authenticate: function() {
|
|
this.send('clearError');
|
|
var code = this.get('username')+':'+this.get('password');
|
|
this.get('access').login(code).then(res => {
|
|
var auth = JSON.parse(res.xhr.responseText);
|
|
this.send('authenticationSucceeded', auth);
|
|
}).catch(err => {
|
|
this.send('gotError', err);
|
|
});
|
|
},
|
|
|
|
authenticationSucceeded: function(auth) {
|
|
this.send('clearError');
|
|
this.set('organizations', auth.orgs);
|
|
|
|
// Set this to true so the token will be sent with the request
|
|
this.set('access.enabled', true);
|
|
|
|
var model = this.get('model');
|
|
model.setProperties({
|
|
enabled: true,
|
|
});
|
|
|
|
model.save().then(() => {
|
|
this.send('waitAndRefresh');
|
|
}).catch((err) => {
|
|
this.set('access.enabled', false);
|
|
this.send('gotError', err);
|
|
});
|
|
},
|
|
|
|
waitAndRefresh: function(url) {
|
|
$('#loading-underlay, #loading-overlay').removeClass('hide').show();
|
|
setTimeout(function() {
|
|
window.location.href = url || window.location.href;
|
|
}, 1000);
|
|
},
|
|
|
|
addAuthorized: function(/*data*/) {
|
|
},
|
|
|
|
promptDisable: function() {
|
|
this.set('confirmDisable', true);
|
|
Ember.run.later(this, function() {
|
|
this.set('confirmDisable', false);
|
|
}, 10000);
|
|
},
|
|
|
|
gotError: function(err) {
|
|
if ( err.message )
|
|
{
|
|
this.send('showError', err.message + (err.detail? '('+err.detail+')' : ''));
|
|
}
|
|
else
|
|
{
|
|
this.send('showError', 'Error ('+err.status + ' - ' + err.code+')');
|
|
}
|
|
|
|
this.set('testing', false);
|
|
this.set('saving', false);
|
|
},
|
|
|
|
showError: function(msg) {
|
|
this.set('errors', [msg]);
|
|
window.scrollY = 0;
|
|
},
|
|
|
|
clearError: function() {
|
|
this.set('errors', null);
|
|
},
|
|
|
|
disable: function() {
|
|
this.send('clearError');
|
|
|
|
var model = this.get('model');
|
|
model.setProperties({
|
|
enabled: false,
|
|
});
|
|
|
|
|
|
model.save().then(() => {
|
|
this.get('access').clearSessionKeys();
|
|
this.set('access.enabled',false);
|
|
this.send('waitAndRefresh');
|
|
}).catch((err) => {
|
|
this.send('gotError', err);
|
|
}).finally(() => {
|
|
this.set('confirmDisable', false);
|
|
});
|
|
},
|
|
},
|
|
});
|