mirror of https://github.com/portainer/portainer
57 lines
2.4 KiB
JavaScript
57 lines
2.4 KiB
JavaScript
angular.module('portainer.services')
|
|
.factory('TemplateService', ['$q', 'Template', 'TemplateHelper', 'ImageHelper', 'ContainerHelper', function TemplateServiceFactory($q, Template, TemplateHelper, ImageHelper, ContainerHelper) {
|
|
'use strict';
|
|
var service = {};
|
|
|
|
service.getTemplates = function() {
|
|
var deferred = $q.defer();
|
|
Template.get().$promise
|
|
.then(function success(data) {
|
|
var templates = data.map(function (tpl, idx) {
|
|
var template = new TemplateViewModel(tpl);
|
|
template.index = idx;
|
|
return template;
|
|
});
|
|
deferred.resolve(templates);
|
|
})
|
|
.catch(function error(err) {
|
|
deferred.reject({ msg: 'Unable to retrieve templates', err: err });
|
|
});
|
|
return deferred.promise;
|
|
};
|
|
|
|
service.createTemplateConfiguration = function(template, containerName, network, containerMapping) {
|
|
var imageConfiguration = ImageHelper.createImageConfigForContainer(template.Image, template.Registry);
|
|
var containerConfiguration = service.createContainerConfiguration(template, containerName, network, containerMapping);
|
|
containerConfiguration.Image = imageConfiguration.fromImage + ':' + imageConfiguration.tag;
|
|
return containerConfiguration;
|
|
};
|
|
|
|
service.createContainerConfiguration = function(template, containerName, network, containerMapping) {
|
|
var configuration = TemplateHelper.getDefaultContainerConfiguration();
|
|
configuration.HostConfig.NetworkMode = network.Name;
|
|
configuration.HostConfig.Privileged = template.Privileged;
|
|
configuration.name = containerName;
|
|
configuration.Image = template.Image;
|
|
configuration.Env = TemplateHelper.EnvToStringArray(template.Env, containerMapping);
|
|
configuration.Cmd = ContainerHelper.commandStringToArray(template.Command);
|
|
var portConfiguration = TemplateHelper.portArrayToPortConfiguration(template.Ports);
|
|
configuration.HostConfig.PortBindings = portConfiguration.bindings;
|
|
configuration.ExposedPorts = portConfiguration.exposedPorts;
|
|
return configuration;
|
|
};
|
|
|
|
service.updateContainerConfigurationWithVolumes = function(configuration, template, generatedVolumesPile) {
|
|
var volumes = template.Volumes;
|
|
TemplateHelper.createVolumeBindings(volumes, generatedVolumesPile);
|
|
volumes.forEach(function (volume) {
|
|
if (volume.binding) {
|
|
configuration.Volumes[volume.containerPath] = {};
|
|
configuration.HostConfig.Binds.push(volume.binding);
|
|
}
|
|
});
|
|
};
|
|
|
|
return service;
|
|
}]);
|