2018-02-01 12:27:52 +00:00
|
|
|
angular.module('portainer.docker')
|
2018-02-27 07:19:21 +00:00
|
|
|
.controller('CreateConfigController', ['$scope', '$state', 'Notifications', 'ConfigService', 'Authentication', 'FormValidator', 'ResourceControlService',
|
|
|
|
function ($scope, $state, Notifications, ConfigService, Authentication, FormValidator, ResourceControlService) {
|
2017-11-06 08:47:31 +00:00
|
|
|
|
|
|
|
$scope.formValues = {
|
|
|
|
Name: '',
|
|
|
|
Labels: [],
|
2018-02-27 07:19:21 +00:00
|
|
|
AccessControlData: new AccessControlFormData(),
|
|
|
|
ConfigContent: ''
|
2017-11-06 08:47:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.state = {
|
|
|
|
formValidationError: ''
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.addLabel = function() {
|
|
|
|
$scope.formValues.Labels.push({ name: '', value: ''});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.removeLabel = function(index) {
|
|
|
|
$scope.formValues.Labels.splice(index, 1);
|
|
|
|
};
|
|
|
|
|
|
|
|
function prepareLabelsConfig(config) {
|
|
|
|
var labels = {};
|
|
|
|
$scope.formValues.Labels.forEach(function (label) {
|
|
|
|
if (label.name && label.value) {
|
|
|
|
labels[label.name] = label.value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
config.Labels = labels;
|
|
|
|
}
|
|
|
|
|
|
|
|
function prepareConfigData(config) {
|
2018-02-27 07:19:21 +00:00
|
|
|
var configData = $scope.formValues.ConfigContent;
|
2017-11-06 08:47:31 +00:00
|
|
|
config.Data = btoa(unescape(encodeURIComponent(configData)));
|
|
|
|
}
|
|
|
|
|
|
|
|
function prepareConfiguration() {
|
|
|
|
var config = {};
|
|
|
|
config.Name = $scope.formValues.Name;
|
|
|
|
prepareConfigData(config);
|
|
|
|
prepareLabelsConfig(config);
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
|
|
|
function validateForm(accessControlData, isAdmin) {
|
|
|
|
$scope.state.formValidationError = '';
|
|
|
|
var error = '';
|
|
|
|
error = FormValidator.validateAccessControl(accessControlData, isAdmin);
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
$scope.state.formValidationError = error;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.create = function () {
|
|
|
|
var accessControlData = $scope.formValues.AccessControlData;
|
|
|
|
var userDetails = Authentication.getUserDetails();
|
2017-11-14 07:54:35 +00:00
|
|
|
var isAdmin = userDetails.role === 1;
|
2017-11-06 08:47:31 +00:00
|
|
|
|
2018-02-27 07:19:21 +00:00
|
|
|
if ($scope.formValues.ConfigContent === '') {
|
|
|
|
$scope.state.formValidationError = 'Config content must not be empty';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-06 08:47:31 +00:00
|
|
|
if (!validateForm(accessControlData, isAdmin)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var config = prepareConfiguration();
|
|
|
|
|
|
|
|
ConfigService.create(config)
|
|
|
|
.then(function success(data) {
|
|
|
|
var configIdentifier = data.ID;
|
|
|
|
var userId = userDetails.ID;
|
|
|
|
return ResourceControlService.applyResourceControl('config', configIdentifier, userId, accessControlData, []);
|
|
|
|
})
|
|
|
|
.then(function success() {
|
|
|
|
Notifications.success('Config successfully created');
|
2018-02-01 12:27:52 +00:00
|
|
|
$state.go('docker.configs', {}, {reload: true});
|
2017-11-06 08:47:31 +00:00
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
Notifications.error('Failure', err, 'Unable to create config');
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-02-27 07:19:21 +00:00
|
|
|
$scope.editorUpdate = function(cm) {
|
|
|
|
$scope.formValues.ConfigContent = cm.getValue();
|
|
|
|
};
|
2017-11-06 08:47:31 +00:00
|
|
|
}]);
|