element-web/src/Presence.ts

98 lines
2.9 KiB
TypeScript
Raw Normal View History

2015-09-18 19:39:16 +02:00
/*
Copyright 2024 New Vector Ltd.
Copyright 2019 The Matrix.org Foundation C.I.C.
Copyright 2018 New Vector Ltd
Copyright 2015, 2016 OpenMarket Ltd
2015-09-18 19:39:16 +02:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
2015-09-18 19:39:16 +02:00
*/
import { logger } from "matrix-js-sdk/src/logger";
import { SetPresence } from "matrix-js-sdk/src/matrix";
2021-06-29 14:11:58 +02:00
import { MatrixClientPeg } from "./MatrixClientPeg";
import dis from "./dispatcher/dispatcher";
2022-12-12 12:24:14 +01:00
import Timer from "./utils/Timer";
2021-06-29 14:11:58 +02:00
import { ActionPayload } from "./dispatcher/payloads";
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
class Presence {
private unavailableTimer?: Timer;
private dispatcherRef?: string;
private state?: SetPresence;
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
*/
public async start(): Promise<void> {
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(SetPresence.Unavailable);
} catch {
2022-12-12 12:24:14 +01:00
/* aborted, stop got called */
}
2015-09-18 19:39:16 +02:00
}
}
2015-09-18 19:39:16 +02:00
/**
* Stop tracking user activity
*/
public stop(): void {
dis.unregister(this.dispatcherRef);
this.dispatcherRef = undefined;
this.unavailableTimer?.abort();
this.unavailableTimer = undefined;
}
2015-09-18 19:39:16 +02:00
/**
* Get the current presence state.
* @returns {string} the presence state (see PRESENCE enum)
*/
public getState(): SetPresence | null {
return this.state ?? null;
}
2015-09-18 19:39:16 +02:00
private onAction = (payload: ActionPayload): void => {
2022-12-12 12:24:14 +01:00
if (payload.action === "user_activity") {
this.setState(SetPresence.Online);
this.unavailableTimer?.restart();
}
2021-06-29 14:11:58 +02:00
};
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)
*/
private async setState(newState: SetPresence): Promise<void> {
if (newState === this.state) {
2015-09-18 19:39:16 +02:00
return;
}
const oldState = this.state;
this.state = newState;
2016-01-05 14:24:05 +01:00
if (MatrixClientPeg.safeGet().isGuest()) {
2016-01-05 14:24:05 +01:00
return; // don't try to set presence when a guest; it won't work.
}
try {
await MatrixClientPeg.safeGet().setSyncPresence(this.state);
logger.debug("Presence:", newState);
} catch (err) {
logger.error("Failed to set presence:", err);
this.state = oldState;
}
}
}
export default new Presence();