mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 08:21:01 +00:00
40 lines
885 B
JavaScript
40 lines
885 B
JavaScript
'use strict';
|
|
|
|
(function () {
|
|
|
|
function FeedService($http, $window) {
|
|
|
|
var callback,
|
|
websocket,
|
|
token = localStorage.getItem('access_token');
|
|
|
|
this.subscribe = function(_callback) {
|
|
callback = _callback;
|
|
|
|
var proto = ($window.location.protocol === 'https:' ? 'wss' : 'ws'),
|
|
route = [proto, "://", $window.location.host, '/api/stream/user?access_token=', token].join('');
|
|
|
|
websocket = new WebSocket(route);
|
|
websocket.onmessage = function (event) {
|
|
if (callback !== undefined) {
|
|
callback(angular.fromJson(event.data));
|
|
}
|
|
};
|
|
websocket.onclose = function (event) {
|
|
console.log('user websocket closed');
|
|
};
|
|
};
|
|
|
|
this.unsubscribe = function() {
|
|
callback = undefined;
|
|
if (websocket !== undefined) {
|
|
websocket.close();
|
|
websocket = undefined;
|
|
}
|
|
};
|
|
}
|
|
|
|
angular
|
|
.module('drone')
|
|
.service('feed', FeedService);
|
|
})();
|