woodpecker/server/app/scripts/services/stdout.js

28 lines
643 B
JavaScript
Raw Normal View History

'use strict';
angular.module('app').service('stdout', ['$window', function($window) {
var callback = undefined;
var websocket = undefined;
this.subscribe = function(path, _callback) {
callback = _callback;
var proto = ($window.location.protocol == 'https:' ? 'wss' : 'ws');
var route = [proto, "://", $window.location.host, '/ws/stdout/', path].join('');
websocket = new WebSocket(route);
websocket.onmessage = function(event) {
if (callback != undefined) {
callback(event.data);
}
};
};
this.unsubscribe = function() {
callback = undefined;
if (webscoket != undefined) {
websocket.close();
}
};
}]);