Newer
Older
Kegan Dougal
committed
/*
Matthew Hodgson
committed
Copyright 2014 OpenMarket Ltd
Kegan Dougal
committed
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
'use strict';
/*
Kegan Dougal
committed
This service manages where in the event stream the web client currently is,
repolling the event stream, and provides methods to resume/pause/stop the event
stream. This service is not responsible for parsing event data. For that, see
the eventHandlerService.
*/
Kegan Dougal
committed
angular.module('eventStreamService', [])
Kegan Dougal
committed
.factory('eventStreamService', ['$q', '$timeout', 'matrixService', 'eventHandlerService', function($q, $timeout, matrixService, eventHandlerService) {
var END = "END";
var SERVER_TIMEOUT_MS = 30000;
var CLIENT_TIMEOUT_MS = 40000;
Kegan Dougal
committed
var ERR_TIMEOUT_MS = 5000;
Kegan Dougal
committed
var settings = {
from: "END",
to: undefined,
limit: undefined,
Kegan Dougal
committed
shouldPoll: true,
isActive: false
Kegan Dougal
committed
};
// interrupts the stream. Only valid if there is a stream conneciton
// open.
var interrupt = function(shouldPoll) {
Kegan Dougal
committed
console.log("[EventStream] interrupt("+shouldPoll+") "+
Kegan Dougal
committed
JSON.stringify(settings));
Kegan Dougal
committed
settings.shouldPoll = shouldPoll;
settings.isActive = false;
Kegan Dougal
committed
};
var saveStreamSettings = function() {
localStorage.setItem("streamSettings", JSON.stringify(settings));
};
Erik Johnston
committed
var doEventStream = function(deferred) {
Kegan Dougal
committed
settings.shouldPoll = true;
settings.isActive = true;
Erik Johnston
committed
deferred = deferred || $q.defer();
Kegan Dougal
committed
// run the stream from the latest token
matrixService.getEventStream(settings.from, SERVER_TIMEOUT_MS, CLIENT_TIMEOUT_MS).then(
Kegan Dougal
committed
function(response) {
if (!settings.isActive) {
console.log("[EventStream] Got response but now inactive. Dropping data.");
return;
}
settings.from = response.data.end;
Erik Johnston
committed
console.log(
"[EventStream] Got response from "+settings.from+
" to "+response.data.end
);
Kegan Dougal
committed
eventHandlerService.handleEvents(response.data.chunk, true);
deferred.resolve(response);
if (settings.shouldPoll) {
Erik Johnston
committed
$timeout(doEventStream, 0);
Kegan Dougal
committed
}
else {
console.log("[EventStream] Stopping poll.");
}
},
function(error) {
if (error.status === 403) {
Kegan Dougal
committed
settings.shouldPoll = false;
}
deferred.reject(error);
if (settings.shouldPoll) {
Erik Johnston
committed
$timeout(doEventStream, ERR_TIMEOUT_MS);
Kegan Dougal
committed
}
else {
console.log("[EventStream] Stopping polling.");
}
}
);
Erik Johnston
committed
return deferred.promise;
Emmanuel ROHEE
committed
};
Erik Johnston
committed
var startEventStream = function() {
settings.shouldPoll = true;
settings.isActive = true;
var deferred = $q.defer();
// Initial sync: get all information and the last 30 messages of all rooms of the user
// 30 messages should be enough to display a full page of messages in a room
// without requiring to make an additional request
matrixService.initialSync(30, false).then(
Erik Johnston
committed
function(response) {
var rooms = response.data.rooms;
for (var i = 0; i < rooms.length; ++i) {
var room = rooms[i];
Emmanuel ROHEE
committed
if ("messages" in room) {
eventHandlerService.handleRoomMessages(room.room_id, room.messages, false);
Emmanuel ROHEE
committed
}
if ("state" in room) {
eventHandlerService.handleEvents(room.state, false, true);
}
}
Erik Johnston
committed
var presence = response.data.presence;
Emmanuel ROHEE
committed
eventHandlerService.handleEvents(presence, false);
Erik Johnston
committed
Emmanuel ROHEE
committed
// Initial sync is done
eventHandlerService.handleInitialSyncDone(response);
Emmanuel ROHEE
committed
Emmanuel ROHEE
committed
// Start event streaming from that point
Emmanuel ROHEE
committed
settings.from = response.data.end;
Erik Johnston
committed
doEventStream(deferred);
},
function(error) {
$scope.feedback = "Failure: " + error.data;
}
);
Kegan Dougal
committed
return deferred.promise;
};
Kegan Dougal
committed
return {
// resume the stream from whereever it last got up to. Typically used
// when the page is opened.
resume: function() {
Kegan Dougal
committed
if (settings.isActive) {
console.log("[EventStream] Already active, ignoring resume()");
return;
}
Kegan Dougal
committed
console.log("[EventStream] resume "+JSON.stringify(settings));
Kegan Dougal
committed
return startEventStream();
Kegan Dougal
committed
},
// pause the stream. Resuming it will continue from the current position
pause: function() {
console.log("[EventStream] pause "+JSON.stringify(settings));
// kill any running stream
interrupt(false);
// save the latest token
saveStreamSettings();
},
// stop the stream and wipe the position in the stream. Typically used
// when logging out / logged out.
Kegan Dougal
committed
stop: function() {
console.log("[EventStream] stop "+JSON.stringify(settings));
// kill any running stream
interrupt(false);
// clear the latest token
settings.from = END;
Kegan Dougal
committed
saveStreamSettings();
}
};
}]);