mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
* #592 feat(container-details): split websocket backend code into more files and add attach handler
* #592 feat(container-details): rename console to exec and add attach console
* Revert "#592 feat(container-details): rename console to exec and add attach console"
This reverts commit f2deaee1
* #592 feat(container-details): add attach to containerconsole
* #592 feat(container-details): catch more errors
* #592 feat(container-details): use less vars
* #592 feat(container-details): error message is more verbose
* #592 feat(container-details): go fmt
* #592 feat(container-details): unpack netdial
* #592 feat(container-details): reformat service
* #592 feat(container-details): fix go compiler bugs
* #592 feat(container-details): refactor services
* #592 feat(container-details): fix windows dial
* #592 feat(container-details): gofmt dial_windows.go
* #592 feat(container-details): split console into two views and fix breadcrumbs
* #592 feat(container-details): swap exec and attach action
* #592 feat(container-details): add some warnings
* #592 feat(container-details): refresh view more
* #592 feat(container-details): use less functions for connecting/disconnecting
* #592 feat(container-details): move link replacements into initTerm
* #592 feat(container-details): disable attach/exec button if container is not running
* #592 feat(container-details): fix typo
* #592 feat(container-details): autoconnect attach view
* #592 feat(container-details): fix first draw after attach + reformat code
* #592 feat(container-details): remove init-helper-div
* #592 feat(container-details): console resize code and remove padding
* #592 feat(container-details): swap height and width arguments in container tty resize restcall
* #592 feat(container-details): swap height and width arguments in exec tty resize restcall
* #592 feat(container-details): remove css unit
* #592 feat(container-details): remove loaded state from states object
* #592 feat(container-details): reword Disattach to Detach
* #592 feat(container-details): remove unloaded state from states object
* #592 feat(container-details): remove useless code
* #592 feat(container-details): clearer state-check
* #592 feat(container-details): fixed resize bugs by using xterms col attribute
82 lines
2.6 KiB
JavaScript
82 lines
2.6 KiB
JavaScript
import { logsHandler, genericHandler } from "./response/handlers";
|
|
|
|
angular.module('portainer.docker')
|
|
.factory('Container', ['$resource', 'API_ENDPOINT_ENDPOINTS', 'EndpointProvider', 'ContainersInterceptor',
|
|
function ContainerFactory($resource, API_ENDPOINT_ENDPOINTS, EndpointProvider, ContainersInterceptor) {
|
|
'use strict';
|
|
return $resource(API_ENDPOINT_ENDPOINTS + '/:endpointId/docker/containers/:id/:action', {
|
|
name: '@name',
|
|
endpointId: EndpointProvider.endpointID
|
|
},
|
|
{
|
|
query: {
|
|
method: 'GET', params: { all: 0, action: 'json', filters: '@filters' },
|
|
isArray: true, interceptor: ContainersInterceptor, timeout: 10000
|
|
},
|
|
get: {
|
|
method: 'GET', params: { action: 'json' }
|
|
},
|
|
stop: {
|
|
method: 'POST', params: { id: '@id', action: 'stop' }
|
|
},
|
|
restart: {
|
|
method: 'POST', params: { id: '@id', action: 'restart' }
|
|
},
|
|
kill: {
|
|
method: 'POST', params: { id: '@id', action: 'kill' }
|
|
},
|
|
pause: {
|
|
method: 'POST', params: { id: '@id', action: 'pause' }
|
|
},
|
|
unpause: {
|
|
method: 'POST', params: { id: '@id', action: 'unpause' }
|
|
},
|
|
logs: {
|
|
method: 'GET', params: { id: '@id', action: 'logs' },
|
|
timeout: 4500, ignoreLoadingBar: true,
|
|
transformResponse: logsHandler
|
|
},
|
|
stats: {
|
|
method: 'GET', params: { id: '@id', stream: false, action: 'stats' },
|
|
timeout: 4500, ignoreLoadingBar: true
|
|
},
|
|
top: {
|
|
method: 'GET', params: { id: '@id', action: 'top' },
|
|
timeout: 4500, ignoreLoadingBar: true
|
|
},
|
|
start: {
|
|
method: 'POST', params: {id: '@id', action: 'start'},
|
|
transformResponse: genericHandler
|
|
},
|
|
create: {
|
|
method: 'POST', params: {action: 'create'},
|
|
transformResponse: genericHandler,
|
|
ignoreLoadingBar: true
|
|
},
|
|
remove: {
|
|
method: 'DELETE', params: {id: '@id', v: '@v', force: '@force'},
|
|
transformResponse: genericHandler
|
|
},
|
|
rename: {
|
|
method: 'POST', params: { id: '@id', action: 'rename', name: '@name' },
|
|
transformResponse: genericHandler
|
|
},
|
|
exec: {
|
|
method: 'POST', params: {id: '@id', action: 'exec'},
|
|
transformResponse: genericHandler, ignoreLoadingBar: true
|
|
},
|
|
inspect: {
|
|
method: 'GET', params: { id: '@id', action: 'json' }
|
|
},
|
|
update: {
|
|
method: 'POST', params: { id: '@id', action: 'update'}
|
|
},
|
|
prune: {
|
|
method: 'POST', params: { action: 'prune', filters: '@filters' }
|
|
},
|
|
resize: {
|
|
method: 'POST', params: {id: '@id', action: 'resize', h: '@height', w: '@width'},
|
|
transformResponse: genericHandler, ignoreLoadingBar: true
|
|
}
|
|
});
|
|
}]);
|