|
|
|
@ -1,10 +1,10 @@
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
angular.module('dockerui.services', ['ngResource'])
|
|
|
|
|
.factory('Container', function($resource, DOCKER_ENDPOINT) {
|
|
|
|
|
.factory('Container', function($resource, Settings) {
|
|
|
|
|
// Resource for interacting with the docker containers
|
|
|
|
|
// http://docs.docker.io/en/latest/api/docker_remote_api.html#containers
|
|
|
|
|
return $resource(DOCKER_ENDPOINT + '/containers/:id/:action', {}, {
|
|
|
|
|
return $resource(Settings.url + '/containers/:id/:action', {}, {
|
|
|
|
|
query: {method: 'GET', params:{ all: 0, action: 'json'}, isArray: true},
|
|
|
|
|
get :{method: 'GET', params: { action:'json'}},
|
|
|
|
|
start: {method: 'POST', params: {id: '@id', action: 'start'}},
|
|
|
|
@ -16,10 +16,10 @@ angular.module('dockerui.services', ['ngResource'])
|
|
|
|
|
remove :{method: 'DELETE', params: {id: '@id', v:0}}
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.factory('Image', function($resource, DOCKER_ENDPOINT) {
|
|
|
|
|
.factory('Image', function($resource, Settings) {
|
|
|
|
|
// Resource for docker images
|
|
|
|
|
// http://docs.docker.io/en/latest/api/docker_remote_api.html#images
|
|
|
|
|
return $resource(DOCKER_ENDPOINT + '/images/:id/:action', {}, {
|
|
|
|
|
return $resource(Settings.url + '/images/:id/:action', {}, {
|
|
|
|
|
query: {method: 'GET', params:{ all: 0, action: 'json'}, isArray: true},
|
|
|
|
|
get :{method: 'GET', params: { action:'json'}},
|
|
|
|
|
search :{method: 'GET', params: { action:'search'}},
|
|
|
|
@ -31,31 +31,33 @@ angular.module('dockerui.services', ['ngResource'])
|
|
|
|
|
delete :{id: '@id', method: 'DELETE'}
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.factory('Docker', function($resource, DOCKER_ENDPOINT) {
|
|
|
|
|
.factory('Docker', function($resource, Settings) {
|
|
|
|
|
// Information for docker
|
|
|
|
|
// http://docs.docker.io/en/latest/api/docker_remote_api.html#display-system-wide-information
|
|
|
|
|
return $resource(DOCKER_ENDPOINT + '/version', {}, {
|
|
|
|
|
return $resource(Settings.url + '/version', {}, {
|
|
|
|
|
get: {method: 'GET'}
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.factory('Auth', function($resource, DOCKER_ENDPOINT) {
|
|
|
|
|
.factory('Auth', function($resource, Settings) {
|
|
|
|
|
// Auto Information for docker
|
|
|
|
|
// http://docs.docker.io/en/latest/api/docker_remote_api.html#set-auth-configuration
|
|
|
|
|
return $resource(DOCKER_ENDPOINT + '/auth', {}, {
|
|
|
|
|
return $resource(Settings.url + '/auth', {}, {
|
|
|
|
|
get: {method: 'GET'},
|
|
|
|
|
update: {method: 'POST'}
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.factory('System', function($resource, DOCKER_ENDPOINT) {
|
|
|
|
|
.factory('System', function($resource, Settings) {
|
|
|
|
|
// System for docker
|
|
|
|
|
// http://docs.docker.io/en/latest/api/docker_remote_api.html#display-system-wide-information
|
|
|
|
|
return $resource(DOCKER_ENDPOINT + '/info', {}, {
|
|
|
|
|
return $resource(Settings.url + '/info', {}, {
|
|
|
|
|
get: {method: 'GET'}
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.factory('Settings', function(DOCKER_ENDPOINT) {
|
|
|
|
|
.factory('Settings', function(DOCKER_ENDPOINT, DOCKER_API_VERSION) {
|
|
|
|
|
return {
|
|
|
|
|
displayAll: false,
|
|
|
|
|
endpoint: DOCKER_ENDPOINT
|
|
|
|
|
endpoint: DOCKER_ENDPOINT,
|
|
|
|
|
version: DOCKER_API_VERSION,
|
|
|
|
|
url: DOCKER_ENDPOINT + DOCKER_API_VERSION
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|