2022-01-04 12:16:09 +00:00
|
|
|
import angular from 'angular';
|
|
|
|
import {
|
|
|
|
killContainer,
|
|
|
|
pauseContainer,
|
|
|
|
removeContainer,
|
|
|
|
renameContainer,
|
|
|
|
restartContainer,
|
|
|
|
resumeContainer,
|
|
|
|
startContainer,
|
|
|
|
stopContainer,
|
2022-06-26 14:16:50 +00:00
|
|
|
} from '@/react/docker/containers/containers.service';
|
2020-07-05 23:21:03 +00:00
|
|
|
import { ContainerDetailsViewModel, ContainerStatsViewModel, ContainerViewModel } from '../models/container';
|
2022-10-20 14:33:54 +00:00
|
|
|
import { formatLogs } from '../helpers/logHelper';
|
2019-03-21 05:46:49 +00:00
|
|
|
|
2022-01-04 12:16:09 +00:00
|
|
|
angular.module('portainer.docker').factory('ContainerService', ContainerServiceFactory);
|
|
|
|
|
|
|
|
/* @ngInject */
|
2022-10-20 14:33:54 +00:00
|
|
|
function ContainerServiceFactory($q, Container, $timeout, EndpointProvider) {
|
2022-01-04 12:16:09 +00:00
|
|
|
const service = {
|
|
|
|
killContainer: withEndpointId(killContainer),
|
|
|
|
pauseContainer: withEndpointId(pauseContainer),
|
|
|
|
renameContainer: withEndpointId(renameContainer),
|
|
|
|
restartContainer: withEndpointId(restartContainer),
|
|
|
|
resumeContainer: withEndpointId(resumeContainer),
|
|
|
|
startContainer: withEndpointId(startContainer),
|
|
|
|
stopContainer: withEndpointId(stopContainer),
|
|
|
|
remove: withEndpointId(removeContainer),
|
|
|
|
updateRestartPolicy,
|
|
|
|
updateLimits,
|
|
|
|
};
|
|
|
|
|
|
|
|
service.container = function (id) {
|
|
|
|
var deferred = $q.defer();
|
|
|
|
|
|
|
|
Container.get({ id: id })
|
|
|
|
.$promise.then(function success(data) {
|
|
|
|
var container = new ContainerDetailsViewModel(data);
|
|
|
|
deferred.resolve(container);
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
deferred.reject({ msg: 'Unable to retrieve container information', err: err });
|
|
|
|
});
|
|
|
|
|
|
|
|
return deferred.promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.containers = function (all, filters) {
|
|
|
|
var deferred = $q.defer();
|
|
|
|
Container.query({ all: all, filters: filters })
|
|
|
|
.$promise.then(function success(data) {
|
|
|
|
var containers = data.map(function (item) {
|
|
|
|
return new ContainerViewModel(item);
|
2020-04-10 21:54:53 +00:00
|
|
|
});
|
2022-01-04 12:16:09 +00:00
|
|
|
deferred.resolve(containers);
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
deferred.reject({ msg: 'Unable to retrieve containers', err: err });
|
|
|
|
});
|
2020-04-10 21:54:53 +00:00
|
|
|
|
2022-01-04 12:16:09 +00:00
|
|
|
return deferred.promise;
|
|
|
|
};
|
2020-04-10 21:54:53 +00:00
|
|
|
|
2022-01-04 12:16:09 +00:00
|
|
|
service.resizeTTY = function (id, width, height, timeout) {
|
|
|
|
var deferred = $q.defer();
|
2020-04-10 21:54:53 +00:00
|
|
|
|
2022-01-04 12:16:09 +00:00
|
|
|
$timeout(function () {
|
|
|
|
Container.resize({}, { id: id, height: height, width: width })
|
2020-04-10 21:54:53 +00:00
|
|
|
.$promise.then(function success(data) {
|
|
|
|
if (data.message) {
|
2022-01-04 12:16:09 +00:00
|
|
|
deferred.reject({ msg: 'Unable to resize tty of container ' + id, err: data.message });
|
2020-04-10 21:54:53 +00:00
|
|
|
} else {
|
|
|
|
deferred.resolve(data);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
2022-01-04 12:16:09 +00:00
|
|
|
deferred.reject({ msg: 'Unable to resize tty of container ' + id, err: err });
|
2020-04-10 21:54:53 +00:00
|
|
|
});
|
2022-01-04 12:16:09 +00:00
|
|
|
}, timeout);
|
|
|
|
|
|
|
|
return deferred.promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
function updateRestartPolicy(id, restartPolicy, maximumRetryCounts) {
|
|
|
|
return Container.update({ id: id }, { RestartPolicy: { Name: restartPolicy, MaximumRetryCount: maximumRetryCounts } }).$promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateLimits(id, config) {
|
|
|
|
return Container.update(
|
|
|
|
{ id: id },
|
|
|
|
{
|
|
|
|
// MemorySwap: must be set
|
|
|
|
// -1: non limits, 0: treated as unset(cause update error).
|
|
|
|
MemoryReservation: config.HostConfig.MemoryReservation,
|
|
|
|
Memory: config.HostConfig.Memory,
|
|
|
|
MemorySwap: -1,
|
|
|
|
NanoCpus: config.HostConfig.NanoCpus,
|
|
|
|
}
|
|
|
|
).$promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
service.createContainer = function (configuration) {
|
|
|
|
var deferred = $q.defer();
|
|
|
|
Container.create(configuration)
|
|
|
|
.$promise.then(function success(data) {
|
|
|
|
deferred.resolve(data);
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
deferred.reject({ msg: 'Unable to create container', err: err });
|
|
|
|
});
|
|
|
|
return deferred.promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.createAndStartContainer = function (configuration) {
|
|
|
|
var deferred = $q.defer();
|
|
|
|
var container;
|
|
|
|
service
|
|
|
|
.createContainer(configuration)
|
|
|
|
.then(function success(data) {
|
|
|
|
container = data;
|
|
|
|
return service.startContainer(container.Id);
|
|
|
|
})
|
|
|
|
.then(function success() {
|
|
|
|
deferred.resolve(container);
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
deferred.reject(err);
|
|
|
|
});
|
|
|
|
return deferred.promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.createExec = function (execConfig) {
|
|
|
|
var deferred = $q.defer();
|
|
|
|
|
|
|
|
Container.exec({}, execConfig)
|
|
|
|
.$promise.then(function success(data) {
|
|
|
|
if (data.message) {
|
|
|
|
deferred.reject({ msg: data.message, err: data.message });
|
|
|
|
} else {
|
|
|
|
deferred.resolve(data);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
deferred.reject(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
return deferred.promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.logs = function (id, stdout, stderr, timestamps, since, tail, stripHeaders) {
|
|
|
|
var deferred = $q.defer();
|
|
|
|
|
|
|
|
var parameters = {
|
|
|
|
id: id,
|
|
|
|
stdout: stdout || 0,
|
|
|
|
stderr: stderr || 0,
|
|
|
|
timestamps: timestamps || 0,
|
|
|
|
since: since || 0,
|
|
|
|
tail: tail || 'all',
|
|
|
|
};
|
|
|
|
|
|
|
|
Container.logs(parameters)
|
|
|
|
.$promise.then(function success(data) {
|
2022-10-20 14:33:54 +00:00
|
|
|
var logs = formatLogs(data.logs, { stripHeaders, withTimestamps: !!timestamps });
|
2022-01-04 12:16:09 +00:00
|
|
|
deferred.resolve(logs);
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
deferred.reject(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
return deferred.promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.containerStats = function (id) {
|
|
|
|
var deferred = $q.defer();
|
|
|
|
|
|
|
|
Container.stats({ id: id })
|
|
|
|
.$promise.then(function success(data) {
|
|
|
|
var containerStats = new ContainerStatsViewModel(data);
|
|
|
|
deferred.resolve(containerStats);
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
deferred.reject(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
return deferred.promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.containerTop = function (id) {
|
|
|
|
return Container.top({ id: id }).$promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.inspect = function (id) {
|
|
|
|
return Container.inspect({ id: id }).$promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.prune = function (filters) {
|
|
|
|
return Container.prune({ filters: filters }).$promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
return service;
|
|
|
|
|
|
|
|
function withEndpointId(func) {
|
2022-02-01 07:37:12 +00:00
|
|
|
return function (...args) {
|
|
|
|
const endpointId = EndpointProvider.endpointID();
|
2022-01-04 12:16:09 +00:00
|
|
|
|
2022-02-01 07:37:12 +00:00
|
|
|
return func(endpointId, ...args);
|
|
|
|
};
|
2022-01-04 12:16:09 +00:00
|
|
|
}
|
|
|
|
}
|