mirror of https://github.com/portainer/portainer
29 lines
1.2 KiB
JavaScript
29 lines
1.2 KiB
JavaScript
angular.module('portainer.rest')
|
|
.factory('Image', ['$resource', 'Settings', 'EndpointProvider', function ImageFactory($resource, Settings, EndpointProvider) {
|
|
'use strict';
|
|
return $resource(Settings.url + '/:endpointId/images/:id/:action', {
|
|
endpointId: EndpointProvider.endpointID
|
|
},
|
|
{
|
|
query: {method: 'GET', params: {all: 0, action: 'json'}, isArray: true},
|
|
get: {method: 'GET', params: {action: 'json'}},
|
|
search: {method: 'GET', params: {action: 'search'}},
|
|
history: {method: 'GET', params: {action: 'history'}, isArray: true},
|
|
insert: {method: 'POST', params: {id: '@id', action: 'insert'}},
|
|
tag: {method: 'POST', params: {id: '@id', action: 'tag', force: 0, repo: '@repo', tag: '@tag'}},
|
|
inspect: {method: 'GET', params: {id: '@id', action: 'json'}},
|
|
push: {
|
|
method: 'POST', params: {action: 'push', id: '@tag'},
|
|
isArray: true, transformResponse: jsonObjectsToArrayHandler
|
|
},
|
|
create: {
|
|
method: 'POST', params: {action: 'create', fromImage: '@fromImage', tag: '@tag'},
|
|
isArray: true, transformResponse: jsonObjectsToArrayHandler
|
|
},
|
|
remove: {
|
|
method: 'DELETE', params: {id: '@id', force: '@force'},
|
|
isArray: true, transformResponse: deleteImageHandler
|
|
}
|
|
});
|
|
}]);
|