2015-02-20 23:15:48 +00:00
|
|
|
(function() {
|
|
|
|
/**
|
2016-05-02 19:29:31 +00:00
|
|
|
* The superuser admin page provides a new management UI for Quay Enterprise.
|
2015-02-20 23:15:48 +00:00
|
|
|
*/
|
|
|
|
angular.module('quayPages').config(['pages', function(pages) {
|
|
|
|
pages.create('superuser', 'super-user.html', SuperuserCtrl,
|
|
|
|
{
|
2015-02-23 19:23:54 +00:00
|
|
|
'newLayout': true,
|
2016-02-05 10:16:23 +00:00
|
|
|
'title': 'Quay Enterprise Management'
|
2015-06-29 09:33:00 +00:00
|
|
|
})
|
2015-02-20 23:15:48 +00:00
|
|
|
}]);
|
|
|
|
|
2017-03-22 16:25:20 +00:00
|
|
|
function SuperuserCtrl($scope, $location, ApiService, Features, UserService, ContainerService, AngularPollChannel, CoreDialog, TableService) {
|
2015-02-20 23:15:48 +00:00
|
|
|
if (!Features.SUPER_USERS) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Monitor any user changes and place the current user into the scope.
|
|
|
|
UserService.updateUserIn($scope);
|
|
|
|
|
2017-05-24 18:34:29 +00:00
|
|
|
$scope.multipleInstances = false;
|
2015-02-20 23:15:48 +00:00
|
|
|
$scope.configStatus = null;
|
|
|
|
$scope.requiresRestart = null;
|
|
|
|
$scope.logsCounter = 0;
|
2015-06-28 05:27:39 +00:00
|
|
|
$scope.changeLog = null;
|
2017-05-24 18:34:29 +00:00
|
|
|
$scope.logsInstance = null;
|
2015-02-20 23:15:48 +00:00
|
|
|
$scope.debugServices = null;
|
|
|
|
$scope.debugLogs = null;
|
|
|
|
$scope.pollChannel = null;
|
|
|
|
$scope.logsScrolled = false;
|
|
|
|
$scope.csrf_token = encodeURIComponent(window.__token);
|
2015-09-02 21:21:38 +00:00
|
|
|
$scope.currentConfig = null;
|
2016-04-01 17:55:29 +00:00
|
|
|
$scope.serviceKeysActive = false;
|
2016-10-11 19:09:38 +00:00
|
|
|
$scope.globalMessagesActive = false;
|
2017-01-24 17:15:26 +00:00
|
|
|
$scope.superUserBuildLogsActive = false;
|
2016-10-13 13:04:59 +00:00
|
|
|
$scope.manageUsersActive = false;
|
2016-12-20 23:29:30 +00:00
|
|
|
$scope.orderedOrgs = [];
|
|
|
|
$scope.orgsPerPage = 10;
|
|
|
|
$scope.options = {
|
|
|
|
'predicate': 'name',
|
|
|
|
'reverse': false,
|
|
|
|
'filter': null,
|
|
|
|
'page': 0,
|
|
|
|
}
|
2015-02-20 23:15:48 +00:00
|
|
|
|
2016-10-11 19:09:38 +00:00
|
|
|
$scope.loadMessageOfTheDay = function () {
|
|
|
|
$scope.globalMessagesActive = true;
|
|
|
|
};
|
2017-01-24 17:15:26 +00:00
|
|
|
|
|
|
|
$scope.loadSuperUserBuildLogs = function () {
|
|
|
|
$scope.superUserBuildLogsActive = true;
|
|
|
|
};
|
|
|
|
|
2015-09-02 21:21:38 +00:00
|
|
|
$scope.configurationSaved = function(config) {
|
|
|
|
$scope.currentConfig = config;
|
2015-02-20 23:15:48 +00:00
|
|
|
$scope.requiresRestart = true;
|
|
|
|
};
|
|
|
|
|
2016-04-01 17:55:29 +00:00
|
|
|
$scope.loadServiceKeys = function() {
|
|
|
|
$scope.serviceKeysActive = true;
|
|
|
|
};
|
|
|
|
|
2015-02-20 23:15:48 +00:00
|
|
|
$scope.viewSystemLogs = function(service) {
|
|
|
|
if ($scope.pollChannel) {
|
|
|
|
$scope.pollChannel.stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.debugService = service;
|
|
|
|
$scope.debugLogs = null;
|
|
|
|
|
|
|
|
$scope.pollChannel = AngularPollChannel.create($scope, $scope.loadServiceLogs, 2 * 1000 /* 2s */);
|
|
|
|
$scope.pollChannel.start();
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.loadServiceLogs = function(callback) {
|
|
|
|
if (!$scope.debugService) { return; }
|
|
|
|
|
|
|
|
var params = {
|
|
|
|
'service': $scope.debugService
|
|
|
|
};
|
|
|
|
|
|
|
|
var errorHandler = ApiService.errorDisplay('Cannot load system logs. Please contact support.',
|
|
|
|
function() {
|
|
|
|
callback(false);
|
2016-10-11 19:09:38 +00:00
|
|
|
});
|
2015-02-20 23:15:48 +00:00
|
|
|
|
|
|
|
ApiService.getSystemLogs(null, params, /* background */true).then(function(resp) {
|
2017-05-24 18:34:29 +00:00
|
|
|
if ($scope.logsInstance != null && $scope.logsInstance != resp['instance']) {
|
|
|
|
$scope.multipleInstances = true;
|
|
|
|
callback(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.logsInstance = resp['instance'];
|
2015-02-20 23:15:48 +00:00
|
|
|
$scope.debugLogs = resp['logs'];
|
|
|
|
callback(true);
|
|
|
|
}, errorHandler);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.loadDebugServices = function() {
|
|
|
|
if ($scope.pollChannel) {
|
|
|
|
$scope.pollChannel.stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.debugService = null;
|
|
|
|
|
|
|
|
ApiService.listSystemLogServices().then(function(resp) {
|
2017-05-24 18:34:29 +00:00
|
|
|
if ($scope.logsInstance != null && $scope.logsInstance != resp['instance']) {
|
|
|
|
$scope.multipleInstances = true;
|
|
|
|
callback(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.logsInstance = resp['instance'];
|
2015-02-20 23:15:48 +00:00
|
|
|
$scope.debugServices = resp['services'];
|
|
|
|
}, ApiService.errorDisplay('Cannot load system logs. Please contact support.'))
|
|
|
|
};
|
|
|
|
|
2015-06-28 05:27:39 +00:00
|
|
|
$scope.getChangeLog = function() {
|
|
|
|
if ($scope.changeLog) { return; }
|
2015-02-20 23:15:48 +00:00
|
|
|
|
2015-06-28 05:27:39 +00:00
|
|
|
ApiService.getChangeLog().then(function(resp) {
|
|
|
|
$scope.changeLog = resp;
|
|
|
|
}, ApiService.errorDisplay('Cannot load change log. Please contact support.'))
|
2016-10-11 19:09:38 +00:00
|
|
|
};
|
2015-02-20 23:15:48 +00:00
|
|
|
|
|
|
|
$scope.loadUsageLogs = function() {
|
|
|
|
$scope.logsCounter++;
|
|
|
|
};
|
|
|
|
|
2015-05-11 22:03:25 +00:00
|
|
|
$scope.loadOrganizations = function() {
|
|
|
|
if ($scope.organizations) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.loadOrganizationsInternal();
|
|
|
|
};
|
|
|
|
|
2016-12-20 23:29:30 +00:00
|
|
|
var sortOrgs = function() {
|
|
|
|
if (!$scope.organizations) {return;}
|
|
|
|
$scope.orderedOrgs = TableService.buildOrderedItems($scope.organizations, $scope.options,
|
|
|
|
['name', 'email'], []);
|
|
|
|
};
|
|
|
|
|
2015-05-11 22:03:25 +00:00
|
|
|
$scope.loadOrganizationsInternal = function() {
|
|
|
|
$scope.organizationsResource = ApiService.listAllOrganizationsAsResource().get(function(resp) {
|
|
|
|
$scope.organizations = resp['organizations'];
|
2016-12-20 23:29:30 +00:00
|
|
|
sortOrgs();
|
2015-05-11 22:03:25 +00:00
|
|
|
return $scope.organizations;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2015-02-20 23:15:48 +00:00
|
|
|
$scope.loadUsers = function() {
|
2016-10-13 13:04:59 +00:00
|
|
|
$scope.manageUsersActive = true;
|
2015-05-11 18:38:10 +00:00
|
|
|
};
|
|
|
|
|
2016-12-20 23:29:30 +00:00
|
|
|
$scope.tablePredicateClass = function(name, predicate, reverse) {
|
|
|
|
if (name != predicate) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
return 'current ' + (reverse ? 'reversed' : '');
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.orderBy = function(predicate) {
|
|
|
|
if (predicate == $scope.options.predicate) {
|
|
|
|
$scope.options.reverse = !$scope.options.reverse;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$scope.options.reverse = false;
|
|
|
|
$scope.options.predicate = predicate;
|
|
|
|
};
|
2015-05-11 22:03:25 +00:00
|
|
|
$scope.askDeleteOrganization = function(org) {
|
|
|
|
bootbox.confirm('Are you sure you want to delete this organization? Its data will be deleted with it.',
|
|
|
|
function(result) {
|
|
|
|
if (!result) { return; }
|
|
|
|
|
|
|
|
var params = {
|
|
|
|
'name': org.name
|
|
|
|
};
|
|
|
|
|
|
|
|
ApiService.deleteOrganization(null, params).then(function(resp) {
|
|
|
|
$scope.loadOrganizationsInternal();
|
|
|
|
}, ApiService.errorDisplay('Could not delete organization'));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.askRenameOrganization = function(org) {
|
|
|
|
bootbox.prompt('Enter a new name for the organization:', function(newName) {
|
|
|
|
if (!newName) { return; }
|
|
|
|
|
|
|
|
var params = {
|
|
|
|
'name': org.name
|
|
|
|
};
|
|
|
|
|
|
|
|
var data = {
|
|
|
|
'name': newName
|
|
|
|
};
|
|
|
|
|
|
|
|
ApiService.changeOrganization(data, params).then(function(resp) {
|
|
|
|
$scope.loadOrganizationsInternal();
|
|
|
|
org.name = newName;
|
|
|
|
}, ApiService.errorDisplay('Could not rename organization'));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2015-02-20 23:15:48 +00:00
|
|
|
$scope.restartContainer = function() {
|
|
|
|
$('#restartingContainerModal').modal({
|
|
|
|
keyboard: false,
|
|
|
|
backdrop: 'static'
|
|
|
|
});
|
|
|
|
|
|
|
|
ContainerService.restartContainer(function() {
|
|
|
|
$scope.checkStatus()
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-03-22 16:25:20 +00:00
|
|
|
$scope.askTakeOwnership = function (entity) {
|
|
|
|
$scope.takeOwnershipInfo = {
|
|
|
|
'entity': entity
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.takeOwnership = function (info, callback) {
|
|
|
|
var errorDisplay = ApiService.errorDisplay('Could not take ownership of namespace', callback);
|
|
|
|
var params = {
|
|
|
|
'namespace': info.entity.username || info.entity.name
|
|
|
|
};
|
|
|
|
|
|
|
|
ApiService.takeOwnership(null, params).then(function () {
|
|
|
|
callback(true);
|
|
|
|
$location.path('/organization/' + params.namespace);
|
|
|
|
}, errorDisplay)
|
|
|
|
};
|
|
|
|
|
2015-02-20 23:15:48 +00:00
|
|
|
$scope.checkStatus = function() {
|
|
|
|
ContainerService.checkStatus(function(resp) {
|
|
|
|
$('#restartingContainerModal').modal('hide');
|
|
|
|
$scope.configStatus = resp['status'];
|
|
|
|
$scope.requiresRestart = resp['requires_restart'];
|
2017-01-13 20:50:50 +00:00
|
|
|
$scope.configProviderId = resp['provider_id'];
|
2015-02-20 23:15:48 +00:00
|
|
|
|
|
|
|
if ($scope.configStatus == 'ready') {
|
2015-09-02 21:21:38 +00:00
|
|
|
$scope.currentConfig = null;
|
2015-02-20 23:15:48 +00:00
|
|
|
$scope.loadUsers();
|
|
|
|
} else {
|
|
|
|
var message = "Installation of this product has not yet been completed." +
|
|
|
|
"<br><br>Please read the " +
|
|
|
|
"<a href='https://coreos.com/docs/enterprise-registry/initial-setup/'>" +
|
2016-10-13 13:04:59 +00:00
|
|
|
"Setup Guide</a>";
|
2015-02-20 23:15:48 +00:00
|
|
|
|
|
|
|
var title = "Installation Incomplete";
|
|
|
|
CoreDialog.fatal(title, message);
|
|
|
|
}
|
2015-09-02 21:21:38 +00:00
|
|
|
}, $scope.currentConfig);
|
2015-02-20 23:15:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Load the initial status.
|
|
|
|
$scope.checkStatus();
|
2016-12-20 23:29:30 +00:00
|
|
|
$scope.$watch('options.predicate', sortOrgs);
|
|
|
|
$scope.$watch('options.reverse', sortOrgs);
|
|
|
|
$scope.$watch('options.filter', sortOrgs);
|
|
|
|
|
2015-02-20 23:15:48 +00:00
|
|
|
}
|
2016-04-12 20:54:58 +00:00
|
|
|
}());
|