2020-04-10 21:54:53 +00:00
|
|
|
angular.module('portainer.docker').factory('ExecService', [
|
|
|
|
'$q',
|
|
|
|
'$timeout',
|
|
|
|
'Exec',
|
|
|
|
function ExecServiceFactory($q, $timeout, Exec) {
|
|
|
|
'use strict';
|
|
|
|
var service = {};
|
2017-07-13 16:04:58 +00:00
|
|
|
|
2020-04-10 21:54:53 +00:00
|
|
|
service.resizeTTY = function (execId, width, height, timeout) {
|
|
|
|
var deferred = $q.defer();
|
2017-07-13 16:04:58 +00:00
|
|
|
|
2020-04-10 21:54:53 +00:00
|
|
|
$timeout(function () {
|
|
|
|
Exec.resize({}, { id: execId, height: height, width: width })
|
|
|
|
.$promise.then(function success(data) {
|
|
|
|
if (data.message) {
|
|
|
|
deferred.reject({ msg: 'Unable to resize tty of exec', err: data.message });
|
|
|
|
} else {
|
|
|
|
deferred.resolve(data);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
deferred.reject({ msg: 'Unable to resize tty of exec', err: err });
|
|
|
|
});
|
|
|
|
}, timeout);
|
2017-07-13 16:04:58 +00:00
|
|
|
|
2020-04-10 21:54:53 +00:00
|
|
|
return deferred.promise;
|
|
|
|
};
|
2017-07-13 16:04:58 +00:00
|
|
|
|
2020-04-10 21:54:53 +00:00
|
|
|
return service;
|
|
|
|
},
|
|
|
|
]);
|