* Add commercial licence and update config files
* Update license in headers
* Revert "Update license in headers"
This reverts commit 7ed7949485.
* Update only spdx id
* Remove LicenseRef- from package.json
LicenseRef- no longer allowed in npm v3 package.json
This fixes the warning in the logs and failing build check.
85 lines
2.6 KiB
TypeScript
85 lines
2.6 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2016-2021 The Matrix.org Foundation C.I.C.
|
|
|
|
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.
|
|
*/
|
|
|
|
import { IPushRule, PushRuleAction } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { StandardActions } from "./StandardActions";
|
|
import { NotificationUtils } from "./NotificationUtils";
|
|
|
|
export enum VectorState {
|
|
/** The push rule is disabled */
|
|
Off = "off",
|
|
/** The user will receive push notification for this rule */
|
|
On = "on",
|
|
/** The user will receive push notification for this rule with sound and
|
|
highlight if this is legitimate */
|
|
Loud = "loud",
|
|
}
|
|
|
|
export class PushRuleVectorState {
|
|
// Backwards compatibility (things should probably be using the enum above instead)
|
|
public static OFF = VectorState.Off;
|
|
public static ON = VectorState.On;
|
|
public static LOUD = VectorState.Loud;
|
|
|
|
/**
|
|
* Enum for state of a push rule as defined by the Vector UI.
|
|
* @readonly
|
|
* @enum {string}
|
|
*/
|
|
public static states = VectorState;
|
|
|
|
/**
|
|
* Convert a PushRuleVectorState to a list of actions
|
|
*
|
|
* @return [object] list of push-rule actions
|
|
*/
|
|
public static actionsFor(pushRuleVectorState?: VectorState): PushRuleAction[] {
|
|
if (pushRuleVectorState === VectorState.On) {
|
|
return StandardActions.ACTION_NOTIFY;
|
|
} else if (pushRuleVectorState === VectorState.Loud) {
|
|
return StandardActions.ACTION_HIGHLIGHT_DEFAULT_SOUND;
|
|
}
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* Convert a pushrule's actions to a PushRuleVectorState.
|
|
*
|
|
* Determines whether a content rule is in the PushRuleVectorState.ON
|
|
* category or in PushRuleVectorState.LOUD, regardless of its enabled
|
|
* state. Returns null if it does not match these categories.
|
|
*/
|
|
public static contentRuleVectorStateKind(rule: IPushRule): VectorState | null {
|
|
const decoded = NotificationUtils.decodeActions(rule.actions);
|
|
|
|
if (!decoded) {
|
|
return null;
|
|
}
|
|
|
|
// Count tweaks to determine if it is a ON or LOUD rule
|
|
let tweaks = 0;
|
|
if (decoded.sound) {
|
|
tweaks++;
|
|
}
|
|
if (decoded.highlight) {
|
|
tweaks++;
|
|
}
|
|
let stateKind: VectorState | null = null;
|
|
switch (tweaks) {
|
|
case 0:
|
|
stateKind = VectorState.On;
|
|
break;
|
|
case 2:
|
|
stateKind = VectorState.Loud;
|
|
break;
|
|
}
|
|
return stateKind;
|
|
}
|
|
}
|