2020-07-05 23:21:03 +00:00
|
|
|
import { ContainerDetailsViewModel, ContainerStatsViewModel, ContainerViewModel } from '../models/container';
|
2019-03-21 05:46:49 +00:00
|
|
|
|
2020-04-10 21:54:53 +00:00
|
|
|
angular.module('portainer.docker').factory('ContainerService', [
|
|
|
|
'$q',
|
|
|
|
'Container',
|
|
|
|
'ResourceControlService',
|
|
|
|
'LogHelper',
|
|
|
|
'$timeout',
|
|
|
|
function ContainerServiceFactory($q, Container, ResourceControlService, LogHelper, $timeout) {
|
|
|
|
'use strict';
|
|
|
|
var service = {};
|
|
|
|
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
deferred.resolve(containers);
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
deferred.reject({ msg: 'Unable to retrieve containers', err: err });
|
|
|
|
});
|
|
|
|
|
|
|
|
return deferred.promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.resizeTTY = function (id, width, height, timeout) {
|
|
|
|
var deferred = $q.defer();
|
|
|
|
|
|
|
|
$timeout(function () {
|
|
|
|
Container.resize({}, { id: id, height: height, width: width })
|
|
|
|
.$promise.then(function success(data) {
|
2019-05-09 02:04:40 +00:00
|
|
|
if (data.message) {
|
2020-04-10 21:54:53 +00:00
|
|
|
deferred.reject({ msg: 'Unable to resize tty of container ' + id, err: data.message });
|
2019-05-09 02:04:40 +00:00
|
|
|
} else {
|
|
|
|
deferred.resolve(data);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
2020-04-10 21:54:53 +00:00
|
|
|
deferred.reject({ msg: 'Unable to resize tty of container ' + id, err: err });
|
2019-05-09 02:04:40 +00:00
|
|
|
});
|
2020-04-10 21:54:53 +00:00
|
|
|
}, timeout);
|
|
|
|
|
|
|
|
return deferred.promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.startContainer = function (id) {
|
|
|
|
return Container.start({ id: id }, {}).$promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.stopContainer = function (id) {
|
|
|
|
return Container.stop({ id: id }, {}).$promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.restartContainer = function (id) {
|
|
|
|
return Container.restart({ id: id }, {}).$promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.killContainer = function (id) {
|
|
|
|
return Container.kill({ id: id }, {}).$promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.pauseContainer = function (id) {
|
|
|
|
return Container.pause({ id: id }, {}).$promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.resumeContainer = function (id) {
|
|
|
|
return Container.unpause({ id: id }, {}).$promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.renameContainer = function (id, newContainerName) {
|
|
|
|
return Container.rename({ id: id, name: newContainerName }, {}).$promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
service.updateRestartPolicy = updateRestartPolicy;
|
2021-11-29 22:01:09 +00:00
|
|
|
service.updateLimits = updateLimits;
|
2020-04-10 21:54:53 +00:00
|
|
|
|
|
|
|
function updateRestartPolicy(id, restartPolicy, maximumRetryCounts) {
|
|
|
|
return Container.update({ id: id }, { RestartPolicy: { Name: restartPolicy, MaximumRetryCount: maximumRetryCounts } }).$promise;
|
|
|
|
}
|
|
|
|
|
2021-11-29 22:01:09 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2020-04-10 21:54:53 +00:00
|
|
|
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.remove = function (container, removeVolumes) {
|
|
|
|
var deferred = $q.defer();
|
|
|
|
|
|
|
|
Container.remove({ id: container.Id, v: removeVolumes ? 1 : 0, force: true })
|
|
|
|
.$promise.then(function success(data) {
|
|
|
|
if (data.message) {
|
|
|
|
deferred.reject({ msg: data.message, err: data.message });
|
|
|
|
} else {
|
|
|
|
deferred.resolve();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
deferred.reject({ msg: 'Unable to remove container', err: 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) {
|
|
|
|
var logs = LogHelper.formatLogs(data.logs, stripHeaders);
|
|
|
|
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;
|
|
|
|
},
|
|
|
|
]);
|