element-web/src/Presence.js

108 lines
3.2 KiB
JavaScript
Raw Normal View History

2015-09-18 19:39:16 +02:00
/*
2016-01-07 05:06:39 +01:00
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2018 New Vector Ltd
2015-09-18 19:39:16 +02:00
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.
*/
import MatrixClientPeg from "./MatrixClientPeg";
import dis from "./dispatcher";
import Timer from './utils/Timer';
2015-09-18 19:39:16 +02:00
// Time in ms after that a user is considered as unavailable/away
const UNAVAILABLE_TIME_MS = 3 * 60 * 1000; // 3 mins
const PRESENCE_STATES = ["online", "offline", "unavailable"];
2015-09-18 19:39:16 +02:00
class Presence {
constructor() {
this._activitySignal = null;
this._unavailableTimer = null;
this._onAction = this._onAction.bind(this);
this._dispatcherRef = null;
}
2015-09-18 19:39:16 +02:00
/**
* Start listening the user activity to evaluate his presence state.
2019-02-01 01:52:39 +01:00
* Any state change will be sent to the homeserver.
2015-09-18 19:39:16 +02:00
*/
async start() {
this._unavailableTimer = new Timer(UNAVAILABLE_TIME_MS);
// the user_activity_start action starts the timer
this._dispatcherRef = dis.register(this._onAction);
while (this._unavailableTimer) {
try {
await this._unavailableTimer.finished();
this.setState("unavailable");
} catch (e) { /* aborted, stop got called */ }
2015-09-18 19:39:16 +02:00
}
}
2015-09-18 19:39:16 +02:00
/**
* Stop tracking user activity
*/
stop() {
if (this._dispatcherRef) {
dis.unregister(this._dispatcherRef);
this._dispatcherRef = null;
}
if (this._unavailableTimer) {
this._unavailableTimer.abort();
this._unavailableTimer = null;
2015-09-18 19:39:16 +02:00
}
}
2015-09-18 19:39:16 +02:00
/**
* Get the current presence state.
* @returns {string} the presence state (see PRESENCE enum)
*/
getState() {
return this.state;
}
2015-09-18 19:39:16 +02:00
_onAction(payload) {
if (payload.action === 'user_activity') {
this.setState("online");
this._unavailableTimer.restart();
}
}
2015-09-18 19:39:16 +02:00
/**
* Set the presence state.
2019-02-01 01:52:39 +01:00
* If the state has changed, the homeserver will be notified.
2015-09-18 19:39:16 +02:00
* @param {string} newState the new presence state (see PRESENCE enum)
*/
async setState(newState) {
if (newState === this.state) {
2015-09-18 19:39:16 +02:00
return;
}
if (PRESENCE_STATES.indexOf(newState) === -1) {
throw new Error("Bad presence state: " + newState);
}
const oldState = this.state;
this.state = newState;
2016-01-05 14:24:05 +01:00
if (MatrixClientPeg.get().isGuest()) {
return; // don't try to set presence when a guest; it won't work.
}
try {
await MatrixClientPeg.get().setPresence(this.state);
console.info("Presence: %s", newState);
} catch (err) {
2015-09-18 19:39:16 +02:00
console.error("Failed to set presence: %s", err);
this.state = oldState;
}
}
}
module.exports = new Presence();