mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-05 07:29:03 +01:00
64472d9aab
This PR - adds tests for `evaluatePushrules` - removes the need for the UserAPI on the `OutputStreamEventConsumer` (for easier testing) - adds a method to get the pushrules from the database - adds a new default pushrule for `m.reaction` events (and some other tweaks)
182 lines
3.7 KiB
Go
182 lines
3.7 KiB
Go
package pushrules
|
|
|
|
func defaultOverrideRules(userID string) []*Rule {
|
|
return []*Rule{
|
|
&mRuleMasterDefinition,
|
|
&mRuleSuppressNoticesDefinition,
|
|
mRuleInviteForMeDefinition(userID),
|
|
&mRuleMemberEventDefinition,
|
|
&mRuleContainsDisplayNameDefinition,
|
|
&mRuleRoomNotifDefinition,
|
|
&mRuleTombstoneDefinition,
|
|
&mRuleReactionDefinition,
|
|
}
|
|
}
|
|
|
|
const (
|
|
MRuleMaster = ".m.rule.master"
|
|
MRuleSuppressNotices = ".m.rule.suppress_notices"
|
|
MRuleInviteForMe = ".m.rule.invite_for_me"
|
|
MRuleMemberEvent = ".m.rule.member_event"
|
|
MRuleContainsDisplayName = ".m.rule.contains_display_name"
|
|
MRuleTombstone = ".m.rule.tombstone"
|
|
MRuleRoomNotif = ".m.rule.roomnotif"
|
|
MRuleReaction = ".m.rule.reaction"
|
|
)
|
|
|
|
var (
|
|
mRuleMasterDefinition = Rule{
|
|
RuleID: MRuleMaster,
|
|
Default: true,
|
|
Enabled: false,
|
|
Conditions: []*Condition{},
|
|
Actions: []*Action{{Kind: DontNotifyAction}},
|
|
}
|
|
mRuleSuppressNoticesDefinition = Rule{
|
|
RuleID: MRuleSuppressNotices,
|
|
Default: true,
|
|
Enabled: true,
|
|
Conditions: []*Condition{
|
|
{
|
|
Kind: EventMatchCondition,
|
|
Key: "content.msgtype",
|
|
Pattern: "m.notice",
|
|
},
|
|
},
|
|
Actions: []*Action{{Kind: DontNotifyAction}},
|
|
}
|
|
mRuleMemberEventDefinition = Rule{
|
|
RuleID: MRuleMemberEvent,
|
|
Default: true,
|
|
Enabled: true,
|
|
Conditions: []*Condition{
|
|
{
|
|
Kind: EventMatchCondition,
|
|
Key: "type",
|
|
Pattern: "m.room.member",
|
|
},
|
|
},
|
|
Actions: []*Action{{Kind: DontNotifyAction}},
|
|
}
|
|
mRuleContainsDisplayNameDefinition = Rule{
|
|
RuleID: MRuleContainsDisplayName,
|
|
Default: true,
|
|
Enabled: true,
|
|
Conditions: []*Condition{{Kind: ContainsDisplayNameCondition}},
|
|
Actions: []*Action{
|
|
{Kind: NotifyAction},
|
|
{
|
|
Kind: SetTweakAction,
|
|
Tweak: SoundTweak,
|
|
Value: "default",
|
|
},
|
|
{
|
|
Kind: SetTweakAction,
|
|
Tweak: HighlightTweak,
|
|
Value: true,
|
|
},
|
|
},
|
|
}
|
|
mRuleTombstoneDefinition = Rule{
|
|
RuleID: MRuleTombstone,
|
|
Default: true,
|
|
Enabled: true,
|
|
Conditions: []*Condition{
|
|
{
|
|
Kind: EventMatchCondition,
|
|
Key: "type",
|
|
Pattern: "m.room.tombstone",
|
|
},
|
|
{
|
|
Kind: EventMatchCondition,
|
|
Key: "state_key",
|
|
Pattern: "",
|
|
},
|
|
},
|
|
Actions: []*Action{
|
|
{Kind: NotifyAction},
|
|
{
|
|
Kind: SetTweakAction,
|
|
Tweak: HighlightTweak,
|
|
Value: true,
|
|
},
|
|
},
|
|
}
|
|
mRuleRoomNotifDefinition = Rule{
|
|
RuleID: MRuleRoomNotif,
|
|
Default: true,
|
|
Enabled: true,
|
|
Conditions: []*Condition{
|
|
{
|
|
Kind: EventMatchCondition,
|
|
Key: "content.body",
|
|
Pattern: "@room",
|
|
},
|
|
{
|
|
Kind: SenderNotificationPermissionCondition,
|
|
Key: "room",
|
|
},
|
|
},
|
|
Actions: []*Action{
|
|
{Kind: NotifyAction},
|
|
{
|
|
Kind: SetTweakAction,
|
|
Tweak: HighlightTweak,
|
|
Value: true,
|
|
},
|
|
},
|
|
}
|
|
mRuleReactionDefinition = Rule{
|
|
RuleID: MRuleReaction,
|
|
Default: true,
|
|
Enabled: true,
|
|
Conditions: []*Condition{
|
|
{
|
|
Kind: EventMatchCondition,
|
|
Key: "type",
|
|
Pattern: "m.reaction",
|
|
},
|
|
},
|
|
Actions: []*Action{
|
|
{Kind: DontNotifyAction},
|
|
},
|
|
}
|
|
)
|
|
|
|
func mRuleInviteForMeDefinition(userID string) *Rule {
|
|
return &Rule{
|
|
RuleID: MRuleInviteForMe,
|
|
Default: true,
|
|
Enabled: true,
|
|
Conditions: []*Condition{
|
|
{
|
|
Kind: EventMatchCondition,
|
|
Key: "type",
|
|
Pattern: "m.room.member",
|
|
},
|
|
{
|
|
Kind: EventMatchCondition,
|
|
Key: "content.membership",
|
|
Pattern: "invite",
|
|
},
|
|
{
|
|
Kind: EventMatchCondition,
|
|
Key: "state_key",
|
|
Pattern: userID,
|
|
},
|
|
},
|
|
Actions: []*Action{
|
|
{Kind: NotifyAction},
|
|
{
|
|
Kind: SetTweakAction,
|
|
Tweak: SoundTweak,
|
|
Value: "default",
|
|
},
|
|
{
|
|
Kind: SetTweakAction,
|
|
Tweak: HighlightTweak,
|
|
Value: false,
|
|
},
|
|
},
|
|
}
|
|
}
|