2014-11-12 18:11:36 +00:00
|
|
|
angular.module('image', [])
|
2016-08-10 03:14:10 +00:00
|
|
|
.controller('ImageController', ['$scope', '$stateParams', '$state', 'Image', 'Messages',
|
|
|
|
function ($scope, $stateParams, $state, Image, Messages) {
|
|
|
|
$scope.RepoTags = [];
|
2016-06-02 05:34:03 +00:00
|
|
|
|
2016-08-10 03:14:10 +00: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 05:34:03 +00: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 00:27:54 +00:00
|
|
|
$scope.pushImage = function(tag) {
|
|
|
|
$('#loadingViewSpinner').show();
|
|
|
|
Image.push({tag: tag}, function (d) {
|
|
|
|
if (d[d.length-1].error) {
|
|
|
|
Messages.error("Unable to push image", d[d.length-1].error);
|
|
|
|
} else {
|
|
|
|
Messages.send('Image successfully pushed');
|
|
|
|
}
|
|
|
|
$('#loadingViewSpinner').hide();
|
|
|
|
}, function (e) {
|
|
|
|
$('#loadingViewSpinner').hide();
|
|
|
|
Messages.error("Unable to push image", e.data);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-08-10 03:14:10 +00:00
|
|
|
$scope.removeImage = function (id) {
|
|
|
|
$('#loadingViewSpinner').show();
|
|
|
|
Image.remove({id: id}, function (d) {
|
|
|
|
if (d[0].message) {
|
|
|
|
$('#loadingViewSpinner').hide();
|
|
|
|
Messages.error("Unable to remove image", d[0].message);
|
|
|
|
} 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();
|
|
|
|
Messages.error("Unable to remove image", e.data);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$('#loadingViewSpinner').show();
|
2016-06-02 05:34:03 +00:00
|
|
|
Image.get({id: $stateParams.id}, function (d) {
|
|
|
|
$scope.image = d;
|
|
|
|
if (d.RepoTags) {
|
|
|
|
$scope.RepoTags = d.RepoTags;
|
|
|
|
} else {
|
2016-08-10 03:14:10 +00:00
|
|
|
getRepoTags(d.Id);
|
2016-06-02 05:34:03 +00:00
|
|
|
}
|
2016-08-10 03:14:10 +00: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 05:34:03 +00:00
|
|
|
}, function (e) {
|
|
|
|
if (e.status === 404) {
|
2016-08-10 03:14:10 +00:00
|
|
|
Messages.error("Unable to find image", $stateParams.id);
|
2016-06-02 05:34:03 +00:00
|
|
|
} else {
|
2016-08-10 03:14:10 +00:00
|
|
|
Messages.error("Unable to retrieve image info", e.data);
|
2016-06-02 05:34:03 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}]);
|