2014-11-12 12:11:36 -06:00
|
|
|
angular.module('image', [])
|
2017-03-20 11:45:04 +01:00
|
|
|
.filter('onlylabel', function(){
|
|
|
|
return function(tag){
|
|
|
|
return tag.substr(tag.indexOf(":")+1);
|
|
|
|
};
|
|
|
|
})
|
|
|
|
.controller('ImageController', ['$scope', '$stateParams', '$state', 'Image', 'ImageService', 'ImageHelper', 'Messages',
|
|
|
|
function ($scope, $stateParams, $state, Image, ImageService, ImageHelper, Messages) {
|
2016-08-10 15:14:10 +12:00
|
|
|
$scope.RepoTags = [];
|
2016-08-17 18:05:17 +12:00
|
|
|
$scope.config = {
|
|
|
|
Image: '',
|
|
|
|
Registry: ''
|
|
|
|
};
|
|
|
|
|
2016-08-10 15:14:10 +12:00
|
|
|
// Get RepoTags from the /images/query endpoint instead of /image/json,
|
|
|
|
// for backwards compatibility with Docker API versions older than 1.21
|
2016-06-02 17:34:03 +12:00
|
|
|
function getRepoTags(imageId) {
|
|
|
|
Image.query({}, function (d) {
|
|
|
|
d.forEach(function(image) {
|
|
|
|
if (image.Id === imageId && image.RepoTags[0] !== '<none>:<none>') {
|
|
|
|
$scope.RepoTags = image.RepoTags;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-08-17 18:05:17 +12:00
|
|
|
$scope.tagImage = function() {
|
|
|
|
$('#loadingViewSpinner').show();
|
2016-12-31 13:25:42 +13:00
|
|
|
var image = $scope.config.Image;
|
|
|
|
var registry = $scope.config.Registry;
|
2016-12-14 09:33:24 +13:00
|
|
|
var imageConfig = ImageHelper.createImageConfigForCommit(image, registry);
|
2016-08-17 18:05:17 +12:00
|
|
|
Image.tag({id: $stateParams.id, tag: imageConfig.tag, repo: imageConfig.repo}, function (d) {
|
|
|
|
Messages.send('Image successfully tagged');
|
|
|
|
$('#loadingViewSpinner').hide();
|
|
|
|
$state.go('image', {id: $stateParams.id}, {reload: true});
|
|
|
|
}, function(e) {
|
|
|
|
$('#loadingViewSpinner').hide();
|
2016-09-02 17:40:03 +12:00
|
|
|
Messages.error("Failure", e, "Unable to tag image");
|
2016-08-17 18:05:17 +12:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-08-17 12:27:54 +12:00
|
|
|
$scope.pushImage = function(tag) {
|
|
|
|
$('#loadingViewSpinner').show();
|
|
|
|
Image.push({tag: tag}, function (d) {
|
|
|
|
if (d[d.length-1].error) {
|
2016-09-02 17:40:03 +12:00
|
|
|
Messages.error("Unable to push image", {}, d[d.length-1].error);
|
2016-08-17 12:27:54 +12:00
|
|
|
} else {
|
|
|
|
Messages.send('Image successfully pushed');
|
|
|
|
}
|
|
|
|
$('#loadingViewSpinner').hide();
|
|
|
|
}, function (e) {
|
|
|
|
$('#loadingViewSpinner').hide();
|
2016-09-02 17:40:03 +12:00
|
|
|
Messages.error("Failure", e, "Unable to push image");
|
2016-08-17 12:27:54 +12:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-03-20 11:45:04 +01:00
|
|
|
$scope.pullImage = function(tag) {
|
|
|
|
var items = tag.split(":");
|
|
|
|
var image = items[0];
|
|
|
|
tag = items[1];
|
|
|
|
$('#loadingViewSpinner').show();
|
|
|
|
ImageService.pullImage({fromImage: image, tag: tag})
|
|
|
|
.then(function success(data) {
|
|
|
|
Messages.send('Image successfully pulled');
|
|
|
|
})
|
|
|
|
.catch(function error(error){
|
|
|
|
Messages.error("Failure", error, "Unable to pull image");
|
|
|
|
})
|
|
|
|
.finally(function final() {
|
|
|
|
$('#loadingViewSpinner').hide();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-08-10 15:14:10 +12:00
|
|
|
$scope.removeImage = function (id) {
|
|
|
|
$('#loadingViewSpinner').show();
|
|
|
|
Image.remove({id: id}, function (d) {
|
|
|
|
if (d[0].message) {
|
|
|
|
$('#loadingViewSpinner').hide();
|
2016-09-02 17:40:03 +12:00
|
|
|
Messages.error("Unable to remove image", {}, d[0].message);
|
2016-08-10 15:14:10 +12:00
|
|
|
} else {
|
|
|
|
// If last message key is 'Deleted' or if it's 'Untagged' and there is only one tag associated to the image
|
|
|
|
// then assume the image is gone and send to images page
|
|
|
|
if (d[d.length-1].Deleted || (d[d.length-1].Untagged && $scope.RepoTags.length === 1)) {
|
|
|
|
Messages.send('Image successfully deleted');
|
|
|
|
$state.go('images', {}, {reload: true});
|
|
|
|
} else {
|
|
|
|
Messages.send('Tag successfully deleted');
|
|
|
|
$state.go('image', {id: $stateParams.id}, {reload: true});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, function (e) {
|
|
|
|
$('#loadingViewSpinner').hide();
|
2016-09-02 17:40:03 +12:00
|
|
|
Messages.error("Failure", e, 'Unable to remove image');
|
2016-08-10 15:14:10 +12:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$('#loadingViewSpinner').show();
|
2016-06-02 17:34:03 +12:00
|
|
|
Image.get({id: $stateParams.id}, function (d) {
|
|
|
|
$scope.image = d;
|
|
|
|
if (d.RepoTags) {
|
|
|
|
$scope.RepoTags = d.RepoTags;
|
|
|
|
} else {
|
2016-08-10 15:14:10 +12:00
|
|
|
getRepoTags(d.Id);
|
2016-06-02 17:34:03 +12:00
|
|
|
}
|
2016-08-10 15:14:10 +12:00
|
|
|
$('#loadingViewSpinner').hide();
|
|
|
|
$scope.exposedPorts = d.ContainerConfig.ExposedPorts ? Object.keys(d.ContainerConfig.ExposedPorts) : [];
|
|
|
|
$scope.volumes = d.ContainerConfig.Volumes ? Object.keys(d.ContainerConfig.Volumes) : [];
|
2016-06-02 17:34:03 +12:00
|
|
|
}, function (e) {
|
2016-09-02 17:40:03 +12:00
|
|
|
Messages.error("Failure", e, "Unable to retrieve image info");
|
2016-06-02 17:34:03 +12:00
|
|
|
});
|
|
|
|
}]);
|