Files
ThreadNet-Web/src/Presence.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
3.0 KiB
TypeScript
Raw Normal View History

2015-09-18 18:39:16 +01:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2019 The Matrix.org Foundation C.I.C.
2024-09-09 14:57:16 +01:00
Copyright 2018 New Vector Ltd
Copyright 2015, 2016 OpenMarket Ltd
2015-09-18 18:39:16 +01:00
2024-09-09 14:57:16 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
2015-09-18 18:39:16 +01:00
*/
2021-10-22 17:23:32 -05:00
import { logger } from "matrix-js-sdk/src/logger";
import { SetPresence } from "matrix-js-sdk/src/matrix";
2021-10-22 17:23:32 -05:00
2021-06-29 13:11:58 +01:00
import { MatrixClientPeg } from "./MatrixClientPeg";
2020-05-13 20:41:41 -06:00
import dis from "./dispatcher/dispatcher";
import Timer from "./utils/Timer";
2021-06-29 13:11:58 +01:00
import { ActionPayload } from "./dispatcher/payloads";
2015-09-18 18:39:16 +01:00
2020-10-13 17:39:29 +01:00
// Time in ms after that a user is considered as unavailable/away
2017-10-11 17:56:17 +01:00
const UNAVAILABLE_TIME_MS = 3 * 60 * 1000; // 3 mins
2020-10-13 17:39:29 +01:00
class Presence {
private unavailableTimer: Timer | null = null;
private dispatcherRef: string | null = null;
private state: SetPresence | null = null;
2020-10-13 17:39:29 +01:00
2015-09-18 18:39:16 +01:00
/**
* Start listening the user activity to evaluate his presence state.
2019-01-31 18:52:39 -06:00
* Any state change will be sent to the homeserver.
2015-09-18 18:39:16 +01:00
*/
public async start(): Promise<void> {
2020-10-13 17:39:29 +01:00
this.unavailableTimer = new Timer(UNAVAILABLE_TIME_MS);
// the user_activity_start action starts the timer
2020-10-13 17:39:29 +01:00
this.dispatcherRef = dis.register(this.onAction);
while (this.unavailableTimer) {
try {
2020-10-13 17:39:29 +01:00
await this.unavailableTimer.finished();
this.setState(SetPresence.Unavailable);
2019-09-18 09:27:43 +01:00
} catch (e) {
/* aborted, stop got called */
}
2015-09-18 18:39:16 +01:00
}
}
2015-09-18 18:39:16 +01:00
/**
* Stop tracking user activity
*/
public stop(): void {
2020-10-13 17:39:29 +01:00
if (this.dispatcherRef) {
dis.unregister(this.dispatcherRef);
this.dispatcherRef = null;
}
2020-10-13 17:39:29 +01:00
if (this.unavailableTimer) {
this.unavailableTimer.abort();
this.unavailableTimer = null;
2015-09-18 18:39:16 +01:00
}
}
2015-09-18 18:39:16 +01:00
/**
* Get the current presence state.
* @returns {string} the presence state (see PRESENCE enum)
*/
public getState(): SetPresence | null {
return this.state;
}
2015-09-18 18:39:16 +01:00
private onAction = (payload: ActionPayload): void => {
if (payload.action === "user_activity") {
this.setState(SetPresence.Online);
this.unavailableTimer?.restart();
}
2021-06-29 13:11:58 +01:00
};
2015-09-18 18:39:16 +01:00
/**
* Set the presence state.
2019-01-31 18:52:39 -06:00
* If the state has changed, the homeserver will be notified.
2015-09-18 18:39:16 +01:00
* @param {string} newState the new presence state (see PRESENCE enum)
*/
private async setState(newState: SetPresence): Promise<void> {
2017-12-25 14:25:13 -07:00
if (newState === this.state) {
2015-09-18 18:39:16 +01:00
return;
}
2020-10-13 17:39:29 +01:00
2019-09-18 09:27:43 +01:00
const oldState = this.state;
this.state = newState;
2016-01-05 13:24:05 +00:00
if (MatrixClientPeg.safeGet().isGuest()) {
2016-01-05 13:24:05 +00: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);
2019-09-18 09:27:43 +01:00
} catch (err) {
2021-10-15 16:30:53 +02:00
logger.error("Failed to set presence:", err);
2019-09-18 09:27:43 +01:00
this.state = oldState;
}
}
}
export default new Presence();