2018-02-01 12:27:52 +00:00
|
|
|
angular.module('portainer.docker')
|
2017-07-13 16:04:58 +00:00
|
|
|
.factory('ExecService', ['$q', '$timeout', 'Exec', function ExecServiceFactory($q, $timeout, Exec) {
|
|
|
|
'use strict';
|
|
|
|
var service = {};
|
|
|
|
|
|
|
|
service.resizeTTY = function(execId, height, width, timeout) {
|
|
|
|
var deferred = $q.defer();
|
|
|
|
|
|
|
|
$timeout(function() {
|
2018-05-06 07:15:57 +00:00
|
|
|
Exec.resize({}, { id: execId, height: height, width: width }).$promise
|
2017-07-13 16:04:58 +00:00
|
|
|
.then(function success(data) {
|
|
|
|
if (data.message) {
|
|
|
|
deferred.reject({ msg: 'Unable to exec into container', err: data.message });
|
|
|
|
} else {
|
|
|
|
deferred.resolve(data);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
deferred.reject({ msg: 'Unable to exec into container', err: err });
|
|
|
|
});
|
|
|
|
}, timeout);
|
|
|
|
|
|
|
|
return deferred.promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
return service;
|
|
|
|
}]);
|