2016-09-23 04:54:58 +00:00
|
|
|
angular.module('createService', [])
|
|
|
|
.controller('CreateServiceController', ['$scope', '$state', 'Service', 'Volume', 'Network', 'ImageHelper', 'Messages',
|
|
|
|
function ($scope, $state, Service, Volume, Network, ImageHelper, Messages) {
|
|
|
|
|
|
|
|
$scope.formValues = {
|
|
|
|
Name: '',
|
|
|
|
Image: '',
|
|
|
|
Registry: '',
|
|
|
|
Mode: 'replicated',
|
|
|
|
Replicas: 1,
|
|
|
|
Command: '',
|
2016-12-25 09:14:26 +00:00
|
|
|
EntryPoint: '',
|
2016-09-23 04:54:58 +00:00
|
|
|
WorkingDir: '',
|
|
|
|
User: '',
|
|
|
|
Env: [],
|
2016-11-07 04:57:33 +00:00
|
|
|
Labels: [],
|
2016-11-25 06:21:06 +00:00
|
|
|
ContainerLabels: [],
|
2016-09-23 04:54:58 +00:00
|
|
|
Volumes: [],
|
|
|
|
Network: '',
|
|
|
|
ExtraNetworks: [],
|
|
|
|
Ports: []
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.addPortBinding = function() {
|
|
|
|
$scope.formValues.Ports.push({ PublishedPort: '', TargetPort: '', Protocol: 'tcp' });
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.removePortBinding = function(index) {
|
|
|
|
$scope.formValues.Ports.splice(index, 1);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.addExtraNetwork = function() {
|
|
|
|
$scope.formValues.ExtraNetworks.push({ Name: '' });
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.removeExtraNetwork = function(index) {
|
|
|
|
$scope.formValues.ExtraNetworks.splice(index, 1);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.addVolume = function() {
|
|
|
|
$scope.formValues.Volumes.push({ name: '', containerPath: '' });
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.removeVolume = function(index) {
|
|
|
|
$scope.formValues.Volumes.splice(index, 1);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.addEnvironmentVariable = function() {
|
|
|
|
$scope.formValues.Env.push({ name: '', value: ''});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.removeEnvironmentVariable = function(index) {
|
|
|
|
$scope.formValues.Env.splice(index, 1);
|
|
|
|
};
|
|
|
|
|
2016-11-07 04:57:33 +00:00
|
|
|
$scope.addLabel = function() {
|
|
|
|
$scope.formValues.Labels.push({ name: '', value: ''});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.removeLabel = function(index) {
|
|
|
|
$scope.formValues.Labels.splice(index, 1);
|
|
|
|
};
|
|
|
|
|
2016-11-25 06:21:06 +00:00
|
|
|
$scope.addContainerLabel = function() {
|
|
|
|
$scope.formValues.ContainerLabels.push({ name: '', value: ''});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.removeContainerLabel = function(index) {
|
|
|
|
$scope.formValues.ContainerLabels.splice(index, 1);
|
|
|
|
};
|
|
|
|
|
2016-09-23 04:54:58 +00:00
|
|
|
function prepareImageConfig(config, input) {
|
2016-12-13 20:33:24 +00:00
|
|
|
var imageConfig = ImageHelper.createImageConfigForContainer(input.Image, input.Registry);
|
|
|
|
config.TaskTemplate.ContainerSpec.Image = imageConfig.fromImage + ':' + imageConfig.tag;
|
2016-09-23 04:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function preparePortsConfig(config, input) {
|
|
|
|
var ports = [];
|
|
|
|
input.Ports.forEach(function (binding) {
|
|
|
|
if (binding.PublishedPort && binding.TargetPort) {
|
|
|
|
ports.push({ PublishedPort: +binding.PublishedPort, TargetPort: +binding.TargetPort, Protocol: binding.Protocol });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
config.EndpointSpec.Ports = ports;
|
|
|
|
}
|
|
|
|
|
|
|
|
function prepareSchedulingConfig(config, input) {
|
|
|
|
if (input.Mode === 'replicated') {
|
|
|
|
config.Mode.Replicated = {
|
|
|
|
Replicas: input.Replicas
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
config.Mode.Global = {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-25 09:14:26 +00:00
|
|
|
function commandToArray(cmd) {
|
|
|
|
var tokens = [].concat.apply([], cmd.split('"').map(function(v,i) {
|
|
|
|
return i%2 ? v : v.split(' ');
|
|
|
|
})).filter(Boolean);
|
|
|
|
return tokens;
|
|
|
|
}
|
|
|
|
|
2016-09-23 04:54:58 +00:00
|
|
|
function prepareCommandConfig(config, input) {
|
2016-12-25 09:14:26 +00:00
|
|
|
if (input.EntryPoint) {
|
|
|
|
config.TaskTemplate.ContainerSpec.Command = commandToArray(input.EntryPoint);
|
|
|
|
}
|
2016-09-23 04:54:58 +00:00
|
|
|
if (input.Command) {
|
2016-12-25 09:14:26 +00:00
|
|
|
config.TaskTemplate.ContainerSpec.Args = commandToArray(input.Command);
|
2016-09-23 04:54:58 +00:00
|
|
|
}
|
|
|
|
if (input.User) {
|
|
|
|
config.TaskTemplate.ContainerSpec.User = input.User;
|
|
|
|
}
|
|
|
|
if (input.WorkingDir) {
|
|
|
|
config.TaskTemplate.ContainerSpec.Dir = input.WorkingDir;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function prepareEnvConfig(config, input) {
|
|
|
|
var env = [];
|
|
|
|
input.Env.forEach(function (v) {
|
|
|
|
if (v.name && v.value) {
|
|
|
|
env.push(v.name + "=" + v.value);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
config.TaskTemplate.ContainerSpec.Env = env;
|
|
|
|
}
|
|
|
|
|
2016-11-07 04:57:33 +00:00
|
|
|
function prepareLabelsConfig(config, input) {
|
|
|
|
var labels = {};
|
|
|
|
input.Labels.forEach(function (label) {
|
|
|
|
if (label.name && label.value) {
|
|
|
|
labels[label.name] = label.value;
|
|
|
|
}
|
|
|
|
});
|
2016-11-25 06:21:06 +00:00
|
|
|
config.Labels = labels;
|
|
|
|
|
|
|
|
var containerLabels = {};
|
|
|
|
input.ContainerLabels.forEach(function (label) {
|
|
|
|
if (label.name && label.value) {
|
|
|
|
containerLabels[label.name] = label.value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
config.TaskTemplate.ContainerSpec.Labels = containerLabels;
|
2016-11-07 04:57:33 +00:00
|
|
|
}
|
|
|
|
|
2016-09-23 04:54:58 +00:00
|
|
|
function prepareVolumes(config, input) {
|
|
|
|
input.Volumes.forEach(function (volume) {
|
|
|
|
if (volume.Source && volume.Target) {
|
|
|
|
var mount = {};
|
|
|
|
mount.Type = volume.Bind ? 'bind' : 'volume';
|
|
|
|
mount.ReadOnly = volume.ReadOnly ? true : false;
|
|
|
|
mount.Source = volume.Source;
|
|
|
|
mount.Target = volume.Target;
|
|
|
|
config.TaskTemplate.ContainerSpec.Mounts.push(mount);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function prepareNetworks(config, input) {
|
|
|
|
var networks = [];
|
|
|
|
if (input.Network) {
|
|
|
|
networks.push({ Target: input.Network });
|
|
|
|
}
|
|
|
|
input.ExtraNetworks.forEach(function (network) {
|
|
|
|
networks.push({ Target: network.Name });
|
|
|
|
});
|
|
|
|
config.Networks = _.uniqWith(networks, _.isEqual);
|
|
|
|
}
|
|
|
|
|
|
|
|
function prepareConfiguration() {
|
|
|
|
var input = $scope.formValues;
|
|
|
|
var config = {
|
|
|
|
Name: input.Name,
|
|
|
|
TaskTemplate: {
|
|
|
|
ContainerSpec: {
|
|
|
|
Mounts: []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Mode: {},
|
|
|
|
EndpointSpec: {}
|
|
|
|
};
|
|
|
|
prepareSchedulingConfig(config, input);
|
|
|
|
prepareImageConfig(config, input);
|
|
|
|
preparePortsConfig(config, input);
|
|
|
|
prepareCommandConfig(config, input);
|
|
|
|
prepareEnvConfig(config, input);
|
2016-11-07 04:57:33 +00:00
|
|
|
prepareLabelsConfig(config, input);
|
2016-09-23 04:54:58 +00:00
|
|
|
prepareVolumes(config, input);
|
|
|
|
prepareNetworks(config, input);
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
|
|
|
function createNewService(config) {
|
|
|
|
Service.create(config, function (d) {
|
|
|
|
$('#createServiceSpinner').hide();
|
|
|
|
Messages.send('Service created', d.ID);
|
|
|
|
$state.go('services', {}, {reload: true});
|
|
|
|
}, function (e) {
|
|
|
|
$('#createServiceSpinner').hide();
|
|
|
|
Messages.error("Failure", e, 'Unable to create service');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.create = function createService() {
|
|
|
|
$('#createServiceSpinner').show();
|
|
|
|
var config = prepareConfiguration();
|
|
|
|
createNewService(config);
|
|
|
|
};
|
|
|
|
|
|
|
|
Volume.query({}, function (d) {
|
|
|
|
$scope.availableVolumes = d.Volumes;
|
|
|
|
}, function (e) {
|
|
|
|
Messages.error("Failure", e, "Unable to retrieve volumes");
|
|
|
|
});
|
|
|
|
|
|
|
|
Network.query({}, function (d) {
|
|
|
|
$scope.availableNetworks = d.filter(function (network) {
|
|
|
|
if (network.Scope === 'swarm') {
|
|
|
|
return network;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}, function (e) {
|
|
|
|
Messages.error("Failure", e, "Unable to retrieve networks");
|
|
|
|
});
|
|
|
|
}]);
|