2015-12-22 16:19:34 +01:00
|
|
|
# Copyright 2015 OpenMarket Ltd
|
2017-10-10 12:47:10 +02:00
|
|
|
# Copyright 2017 New Vector Ltd
|
2015-12-22 16:19:34 +01: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 logging
|
2022-08-16 13:22:17 +02:00
|
|
|
from typing import (
|
|
|
|
TYPE_CHECKING,
|
2022-09-29 17:12:09 +02:00
|
|
|
Any,
|
2022-08-16 13:22:17 +02:00
|
|
|
Collection,
|
|
|
|
Dict,
|
|
|
|
List,
|
|
|
|
Mapping,
|
|
|
|
Optional,
|
2023-02-11 00:29:00 +01:00
|
|
|
Sequence,
|
2022-08-16 13:22:17 +02:00
|
|
|
Tuple,
|
|
|
|
Union,
|
|
|
|
)
|
2015-12-22 16:19:34 +01:00
|
|
|
|
2018-07-09 08:09:20 +02:00
|
|
|
from prometheus_client import Counter
|
|
|
|
|
2023-01-27 16:16:21 +01:00
|
|
|
from synapse.api.constants import (
|
|
|
|
MAIN_TIMELINE,
|
|
|
|
EventContentFields,
|
|
|
|
EventTypes,
|
|
|
|
Membership,
|
|
|
|
RelationTypes,
|
|
|
|
)
|
2023-02-07 12:56:09 +01:00
|
|
|
from synapse.api.room_versions import PushRuleRoomFlag
|
2022-05-20 10:54:12 +02:00
|
|
|
from synapse.event_auth import auth_types_for_event, get_user_power_level
|
2022-05-16 14:42:45 +02:00
|
|
|
from synapse.events import EventBase, relation_from_event
|
2020-09-02 18:19:37 +02:00
|
|
|
from synapse.events.snapshot import EventContext
|
2018-07-09 08:09:20 +02:00
|
|
|
from synapse.state import POWER_KEY
|
2022-03-25 15:58:56 +01:00
|
|
|
from synapse.storage.databases.main.roommember import EventIdMembership
|
2022-10-12 12:26:39 +02:00
|
|
|
from synapse.synapse_rust.push import FilteredPushRules, PushRuleEvaluator
|
2023-02-14 20:02:19 +01:00
|
|
|
from synapse.types import JsonValue
|
2022-12-12 17:19:30 +01:00
|
|
|
from synapse.types.state import StateFilter
|
2022-07-11 22:08:39 +02:00
|
|
|
from synapse.util.caches import register_cache
|
2022-05-11 13:15:21 +02:00
|
|
|
from synapse.util.metrics import measure_func
|
2022-07-11 22:08:39 +02:00
|
|
|
from synapse.visibility import filter_event_for_clients_with_state
|
2015-12-22 16:19:34 +01:00
|
|
|
|
2020-12-11 17:43:53 +01:00
|
|
|
if TYPE_CHECKING:
|
2021-03-23 12:12:48 +01:00
|
|
|
from synapse.server import HomeServer
|
2015-12-22 16:19:34 +01:00
|
|
|
|
2020-12-11 17:43:53 +01:00
|
|
|
logger = logging.getLogger(__name__)
|
2015-12-22 16:19:34 +01:00
|
|
|
|
2018-05-23 00:32:57 +02:00
|
|
|
push_rules_invalidation_counter = Counter(
|
2019-06-20 11:32:02 +02:00
|
|
|
"synapse_push_bulk_push_rule_evaluator_push_rules_invalidation_counter", ""
|
|
|
|
)
|
2018-05-23 00:32:57 +02:00
|
|
|
push_rules_state_size_counter = Counter(
|
2019-06-20 11:32:02 +02:00
|
|
|
"synapse_push_bulk_push_rule_evaluator_push_rules_state_size_counter", ""
|
|
|
|
)
|
2017-07-13 12:37:09 +02:00
|
|
|
|
2015-12-22 16:19:34 +01:00
|
|
|
|
2020-09-02 18:19:37 +02:00
|
|
|
STATE_EVENT_TYPES_TO_MARK_UNREAD = {
|
|
|
|
EventTypes.Topic,
|
|
|
|
EventTypes.Name,
|
|
|
|
EventTypes.RoomAvatar,
|
|
|
|
EventTypes.Tombstone,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-30 22:29:30 +01:00
|
|
|
SENTINEL = object()
|
|
|
|
|
|
|
|
|
2020-09-02 18:19:37 +02:00
|
|
|
def _should_count_as_unread(event: EventBase, context: EventContext) -> bool:
|
|
|
|
# Exclude rejected and soft-failed events.
|
|
|
|
if context.rejected or event.internal_metadata.is_soft_failed():
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Exclude notices.
|
|
|
|
if (
|
|
|
|
not event.is_state()
|
|
|
|
and event.type == EventTypes.Message
|
|
|
|
and event.content.get("msgtype") == "m.notice"
|
|
|
|
):
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Exclude edits.
|
2022-05-16 14:42:45 +02:00
|
|
|
relates_to = relation_from_event(event)
|
|
|
|
if relates_to and relates_to.rel_type == RelationTypes.REPLACE:
|
2020-09-02 18:19:37 +02:00
|
|
|
return False
|
|
|
|
|
|
|
|
# Mark events that have a non-empty string body as unread.
|
|
|
|
body = event.content.get("body")
|
|
|
|
if isinstance(body, str) and body:
|
|
|
|
return True
|
|
|
|
|
|
|
|
# Mark some state events as unread.
|
|
|
|
if event.is_state() and event.type in STATE_EVENT_TYPES_TO_MARK_UNREAD:
|
|
|
|
return True
|
|
|
|
|
|
|
|
# Mark encrypted events as unread.
|
|
|
|
if not event.is_state() and event.type == EventTypes.Encrypted:
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2020-09-04 12:54:56 +02:00
|
|
|
class BulkPushRuleEvaluator:
|
2017-05-02 11:46:01 +02:00
|
|
|
"""Calculates the outcome of push rules for an event for all users in the
|
|
|
|
room at once.
|
2015-12-22 18:19:22 +01:00
|
|
|
"""
|
2017-05-02 11:46:01 +02:00
|
|
|
|
2020-12-11 17:43:53 +01:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2017-05-02 11:46:01 +02:00
|
|
|
self.hs = hs
|
2022-02-23 12:04:02 +01:00
|
|
|
self.store = hs.get_datastores().main
|
2022-05-11 13:15:21 +02:00
|
|
|
self.clock = hs.get_clock()
|
2021-07-01 20:25:37 +02:00
|
|
|
self._event_auth_handler = hs.get_event_auth_handler()
|
2022-12-01 14:46:24 +01:00
|
|
|
self.should_calculate_push_rules = self.hs.config.push.enable_push
|
2017-05-02 11:46:01 +02:00
|
|
|
|
2022-10-25 15:38:01 +02:00
|
|
|
self._related_event_match_enabled = self.hs.config.experimental.msc3664_enabled
|
|
|
|
|
2018-05-22 02:48:57 +02:00
|
|
|
self.room_push_rule_cache_metrics = register_cache(
|
2017-07-13 12:37:09 +02:00
|
|
|
"cache",
|
2018-05-22 02:48:57 +02:00
|
|
|
"room_push_rule_cache",
|
2020-05-11 19:45:23 +02:00
|
|
|
cache=[], # Meaningless size, as this isn't a cache that stores values,
|
|
|
|
resizable=False,
|
2017-07-13 12:37:09 +02:00
|
|
|
)
|
|
|
|
|
2020-12-11 17:43:53 +01:00
|
|
|
async def _get_rules_for_event(
|
2022-07-11 22:08:39 +02:00
|
|
|
self,
|
|
|
|
event: EventBase,
|
2022-08-16 13:22:17 +02:00
|
|
|
) -> Dict[str, FilteredPushRules]:
|
2022-07-11 22:08:39 +02:00
|
|
|
"""Get the push rules for all users who may need to be notified about
|
|
|
|
the event.
|
|
|
|
|
|
|
|
Note: this does not check if the user is allowed to see the event.
|
2017-05-02 11:46:01 +02:00
|
|
|
|
|
|
|
Returns:
|
2022-07-11 22:08:39 +02:00
|
|
|
Mapping of user ID to their push rules.
|
2017-05-02 11:46:01 +02:00
|
|
|
"""
|
2023-02-06 12:29:51 +01:00
|
|
|
# If this is a membership event, only calculate push rules for the target.
|
|
|
|
# While it's possible for users to configure push rules to respond to such an
|
|
|
|
# event, in practise nobody does this. At the cost of violating the spec a
|
|
|
|
# little, we can skip fetching a huge number of push rules in large rooms.
|
|
|
|
# This helps make joins and leaves faster.
|
|
|
|
if event.type == EventTypes.Member:
|
2023-02-11 00:29:00 +01:00
|
|
|
local_users: Sequence[str] = []
|
2023-02-06 12:29:51 +01:00
|
|
|
# We never notify a user about their own actions. This is enforced in
|
|
|
|
# `_action_for_event_by_user` in the loop over `rules_by_user`, but we
|
|
|
|
# do the same check here to avoid unnecessary DB queries.
|
|
|
|
if event.sender != event.state_key and self.hs.is_mine_id(event.state_key):
|
|
|
|
# Check the target is in the room, to avoid notifying them of
|
|
|
|
# e.g. a pre-emptive ban.
|
|
|
|
target_already_in_room = await self.store.check_local_user_in_room(
|
|
|
|
event.state_key, event.room_id
|
|
|
|
)
|
|
|
|
if target_already_in_room:
|
|
|
|
local_users = [event.state_key]
|
|
|
|
else:
|
|
|
|
# We get the users who may need to be notified by first fetching the
|
|
|
|
# local users currently in the room, finding those that have push rules,
|
|
|
|
# and *then* checking which users are actually allowed to see the event.
|
|
|
|
#
|
|
|
|
# The alternative is to first fetch all users that were joined at the
|
|
|
|
# event, but that requires fetching the full state at the event, which
|
|
|
|
# may be expensive for large rooms with few local users.
|
|
|
|
|
|
|
|
local_users = await self.store.get_local_users_in_room(event.room_id)
|
2017-05-02 11:46:01 +02:00
|
|
|
|
2022-07-20 13:06:13 +02:00
|
|
|
# Filter out appservice users.
|
|
|
|
local_users = [
|
|
|
|
u
|
|
|
|
for u in local_users
|
|
|
|
if not self.store.get_if_app_services_interested_in_user(u)
|
|
|
|
]
|
|
|
|
|
2017-05-02 11:46:01 +02:00
|
|
|
# if this event is an invite event, we may need to run rules for the user
|
|
|
|
# who's been invited, otherwise they won't get told they've been invited
|
2022-07-11 22:08:39 +02:00
|
|
|
if event.type == EventTypes.Member and event.membership == Membership.INVITE:
|
2017-05-02 11:46:01 +02:00
|
|
|
invited = event.state_key
|
2022-07-11 22:08:39 +02:00
|
|
|
if invited and self.hs.is_mine_id(invited) and invited not in local_users:
|
|
|
|
local_users.append(invited)
|
2017-05-02 11:46:01 +02:00
|
|
|
|
2023-02-06 12:29:51 +01:00
|
|
|
if not local_users:
|
|
|
|
return {}
|
|
|
|
|
2022-07-11 22:08:39 +02:00
|
|
|
rules_by_user = await self.store.bulk_get_push_rules(local_users)
|
2017-05-02 11:46:01 +02:00
|
|
|
|
2022-07-11 22:08:39 +02:00
|
|
|
logger.debug("Users in room: %s", local_users)
|
|
|
|
|
|
|
|
if logger.isEnabledFor(logging.DEBUG):
|
|
|
|
logger.debug(
|
|
|
|
"Returning push rules for %r %r",
|
|
|
|
event.room_id,
|
|
|
|
list(rules_by_user.keys()),
|
|
|
|
)
|
|
|
|
|
|
|
|
return rules_by_user
|
2015-12-22 16:19:34 +01:00
|
|
|
|
2020-12-11 17:43:53 +01:00
|
|
|
async def _get_power_levels_and_sender_level(
|
2022-10-21 19:46:22 +02:00
|
|
|
self,
|
|
|
|
event: EventBase,
|
|
|
|
context: EventContext,
|
|
|
|
event_id_to_event: Mapping[str, EventBase],
|
2022-09-28 14:31:53 +02:00
|
|
|
) -> Tuple[dict, Optional[int]]:
|
2022-10-21 19:46:22 +02:00
|
|
|
"""
|
|
|
|
Given an event and an event context, get the power level event relevant to the event
|
|
|
|
and the power level of the sender of the event.
|
|
|
|
Args:
|
|
|
|
event: event to check
|
|
|
|
context: context of event to check
|
|
|
|
event_id_to_event: a mapping of event_id to event for a set of events being
|
|
|
|
batch persisted. This is needed as the sought-after power level event may
|
|
|
|
be in this batch rather than the DB
|
|
|
|
"""
|
2022-09-28 14:31:53 +02:00
|
|
|
# There are no power levels and sender levels possible to get from outlier
|
|
|
|
if event.internal_metadata.is_outlier():
|
|
|
|
return {}, None
|
|
|
|
|
2022-05-20 10:54:12 +02:00
|
|
|
event_types = auth_types_for_event(event.room_version, event)
|
|
|
|
prev_state_ids = await context.get_prev_state_ids(
|
|
|
|
StateFilter.from_types(event_types)
|
|
|
|
)
|
2018-07-23 14:00:22 +02:00
|
|
|
pl_event_id = prev_state_ids.get(POWER_KEY)
|
2022-05-20 10:54:12 +02:00
|
|
|
|
2022-10-21 19:46:22 +02:00
|
|
|
# fastpath: if there's a power level event, that's all we need, and
|
|
|
|
# not having a power level event is an extreme edge case
|
2017-10-05 14:27:12 +02:00
|
|
|
if pl_event_id:
|
2022-10-21 19:46:22 +02:00
|
|
|
# Get the power level event from the batch, or fall back to the database.
|
|
|
|
pl_event = event_id_to_event.get(pl_event_id)
|
|
|
|
if pl_event:
|
|
|
|
auth_events = {POWER_KEY: pl_event}
|
|
|
|
else:
|
|
|
|
auth_events = {POWER_KEY: await self.store.get_event(pl_event_id)}
|
2017-10-05 14:20:22 +02:00
|
|
|
else:
|
2021-07-01 20:25:37 +02:00
|
|
|
auth_events_ids = self._event_auth_handler.compute_auth_events(
|
2019-06-20 11:32:02 +02:00
|
|
|
event, prev_state_ids, for_verification=False
|
2017-10-05 14:20:22 +02:00
|
|
|
)
|
2020-12-11 17:43:53 +01:00
|
|
|
auth_events_dict = await self.store.get_events(auth_events_ids)
|
2022-10-21 19:46:22 +02:00
|
|
|
# Some needed auth events might be in the batch, combine them with those
|
|
|
|
# fetched from the database.
|
|
|
|
for auth_event_id in auth_events_ids:
|
|
|
|
auth_event = event_id_to_event.get(auth_event_id)
|
|
|
|
if auth_event:
|
|
|
|
auth_events_dict[auth_event_id] = auth_event
|
2020-12-11 17:43:53 +01:00
|
|
|
auth_events = {(e.type, e.state_key): e for e in auth_events_dict.values()}
|
2017-10-10 12:38:31 +02:00
|
|
|
|
2017-10-10 16:23:00 +02:00
|
|
|
sender_level = get_user_power_level(event.sender, auth_events)
|
|
|
|
|
2017-10-10 16:34:05 +02:00
|
|
|
pl_event = auth_events.get(POWER_KEY)
|
|
|
|
|
2019-08-30 17:28:26 +02:00
|
|
|
return pl_event.content if pl_event else {}, sender_level
|
2017-10-05 13:39:18 +02:00
|
|
|
|
2023-02-10 18:37:07 +01:00
|
|
|
async def _related_events(
|
|
|
|
self, event: EventBase
|
2023-02-14 20:02:19 +01:00
|
|
|
) -> Dict[str, Dict[str, JsonValue]]:
|
2022-10-25 15:38:01 +02:00
|
|
|
"""Fetches the related events for 'event'. Sets the im.vector.is_falling_back key if the event is from a fallback relation
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Mapping of relation type to flattened events.
|
|
|
|
"""
|
2023-02-14 20:02:19 +01:00
|
|
|
related_events: Dict[str, Dict[str, JsonValue]] = {}
|
2022-10-25 15:38:01 +02:00
|
|
|
if self._related_event_match_enabled:
|
|
|
|
related_event_id = event.content.get("m.relates_to", {}).get("event_id")
|
|
|
|
relation_type = event.content.get("m.relates_to", {}).get("rel_type")
|
|
|
|
if related_event_id is not None and relation_type is not None:
|
|
|
|
related_event = await self.store.get_event(
|
|
|
|
related_event_id, allow_none=True
|
|
|
|
)
|
|
|
|
if related_event is not None:
|
2023-03-07 17:27:57 +01:00
|
|
|
related_events[relation_type] = _flatten_dict(related_event)
|
2022-10-25 15:38:01 +02:00
|
|
|
|
|
|
|
reply_event_id = (
|
|
|
|
event.content.get("m.relates_to", {})
|
|
|
|
.get("m.in_reply_to", {})
|
|
|
|
.get("event_id")
|
|
|
|
)
|
|
|
|
|
|
|
|
# convert replies to pseudo relations
|
|
|
|
if reply_event_id is not None:
|
|
|
|
related_event = await self.store.get_event(
|
|
|
|
reply_event_id, allow_none=True
|
|
|
|
)
|
|
|
|
|
|
|
|
if related_event is not None:
|
2023-03-07 17:27:57 +01:00
|
|
|
related_events["m.in_reply_to"] = _flatten_dict(related_event)
|
2022-10-25 15:38:01 +02:00
|
|
|
|
|
|
|
# indicate that this is from a fallback relation.
|
|
|
|
if relation_type == "m.thread" and event.content.get(
|
|
|
|
"m.relates_to", {}
|
|
|
|
).get("is_falling_back", False):
|
|
|
|
related_events["m.in_reply_to"][
|
|
|
|
"im.vector.is_falling_back"
|
|
|
|
] = ""
|
|
|
|
|
|
|
|
return related_events
|
|
|
|
|
2022-10-21 19:46:22 +02:00
|
|
|
async def action_for_events_by_user(
|
|
|
|
self, events_and_context: List[Tuple[EventBase, EventContext]]
|
2020-12-11 17:43:53 +01:00
|
|
|
) -> None:
|
2022-10-21 19:46:22 +02:00
|
|
|
"""Given a list of events and their associated contexts, evaluate the push rules
|
|
|
|
for each event, check if the message should increment the unread count, and
|
|
|
|
insert the results into the event_push_actions_staging table.
|
2017-05-02 11:46:01 +02:00
|
|
|
"""
|
2022-12-01 14:46:24 +01:00
|
|
|
if not self.should_calculate_push_rules:
|
|
|
|
return
|
2022-10-21 19:46:22 +02:00
|
|
|
# For batched events the power level events may not have been persisted yet,
|
|
|
|
# so we pass in the batched events. Thus if the event cannot be found in the
|
|
|
|
# database we can check in the batch.
|
|
|
|
event_id_to_event = {e.event_id: e for e, _ in events_and_context}
|
|
|
|
for event, context in events_and_context:
|
|
|
|
await self._action_for_event_by_user(event, context, event_id_to_event)
|
|
|
|
|
|
|
|
@measure_func("action_for_event_by_user")
|
|
|
|
async def _action_for_event_by_user(
|
|
|
|
self,
|
|
|
|
event: EventBase,
|
|
|
|
context: EventContext,
|
|
|
|
event_id_to_event: Mapping[str, EventBase],
|
|
|
|
) -> None:
|
|
|
|
if (
|
|
|
|
not event.internal_metadata.is_notifiable()
|
2023-04-27 12:32:02 +02:00
|
|
|
or event.room_id in self.hs.config.server.rooms_to_exclude_from_sync
|
2022-10-21 19:46:22 +02:00
|
|
|
):
|
|
|
|
# Push rules for events that aren't notifiable can't be processed by this and
|
|
|
|
# we want to skip push notification actions for historical messages
|
|
|
|
# because we don't want to notify people about old history back in time.
|
|
|
|
# The historical messages also do not have the proper `context.current_state_ids`
|
|
|
|
# and `state_groups` because they have `prev_events` that aren't persisted yet
|
|
|
|
# (historical messages persisted in reverse-chronological order).
|
2022-05-11 13:15:21 +02:00
|
|
|
return
|
|
|
|
|
2022-09-01 18:52:03 +02:00
|
|
|
# Disable counting as unread unless the experimental configuration is
|
|
|
|
# enabled, as it can cause additional (unwanted) rows to be added to the
|
|
|
|
# event_push_actions table.
|
|
|
|
count_as_unread = False
|
|
|
|
if self.hs.config.experimental.msc2654_enabled:
|
|
|
|
count_as_unread = _should_count_as_unread(event, context)
|
2020-09-02 18:19:37 +02:00
|
|
|
|
2022-07-11 22:08:39 +02:00
|
|
|
rules_by_user = await self._get_rules_for_event(event)
|
2022-08-16 13:22:17 +02:00
|
|
|
actions_by_user: Dict[str, Collection[Union[Mapping, str]]] = {}
|
2015-12-22 16:19:34 +01:00
|
|
|
|
2022-07-11 22:08:39 +02:00
|
|
|
room_member_count = await self.store.get_number_joined_users_in_room(
|
|
|
|
event.room_id
|
|
|
|
)
|
2016-03-22 14:52:45 +01:00
|
|
|
|
2019-10-31 16:43:24 +01:00
|
|
|
(
|
|
|
|
power_levels,
|
|
|
|
sender_power_level,
|
2022-10-21 19:46:22 +02:00
|
|
|
) = await self._get_power_levels_and_sender_level(
|
|
|
|
event, context, event_id_to_event
|
|
|
|
)
|
2017-10-05 13:39:18 +02:00
|
|
|
|
2022-10-12 12:26:39 +02:00
|
|
|
# Find the event's thread ID.
|
2022-09-14 19:11:16 +02:00
|
|
|
relation = relation_from_event(event)
|
2022-10-12 12:26:39 +02:00
|
|
|
# If the event does not have a relation, then it cannot have a thread ID.
|
2022-10-04 15:47:04 +02:00
|
|
|
thread_id = MAIN_TIMELINE
|
2022-09-14 19:11:16 +02:00
|
|
|
if relation:
|
2022-10-04 17:36:16 +02:00
|
|
|
# Recursively attempt to find the thread this event relates to.
|
2022-09-14 19:11:16 +02:00
|
|
|
if relation.rel_type == RelationTypes.THREAD:
|
|
|
|
thread_id = relation.parent_id
|
2022-10-04 17:36:16 +02:00
|
|
|
else:
|
|
|
|
# Since the event has not yet been persisted we check whether
|
|
|
|
# the parent is part of a thread.
|
2022-10-12 18:15:52 +02:00
|
|
|
thread_id = await self.store.get_thread_id(relation.parent_id)
|
2022-05-24 15:23:23 +02:00
|
|
|
|
2022-10-25 15:38:01 +02:00
|
|
|
related_events = await self._related_events(event)
|
|
|
|
|
2022-10-06 15:00:03 +02:00
|
|
|
# It's possible that old room versions have non-integer power levels (floats or
|
2023-01-30 22:29:30 +01:00
|
|
|
# strings; even the occasional `null`). For old rooms, we interpret these as if
|
|
|
|
# they were integers. Do this here for the `@room` power level threshold.
|
|
|
|
# Note that this is done automatically for the sender's power level by
|
|
|
|
# _get_power_levels_and_sender_level in its call to get_user_power_level
|
|
|
|
# (even for room V10.)
|
2022-10-06 15:00:03 +02:00
|
|
|
notification_levels = power_levels.get("notifications", {})
|
2023-07-18 14:44:59 +02:00
|
|
|
if not event.room_version.enforce_int_power_levels:
|
2023-01-30 22:29:30 +01:00
|
|
|
keys = list(notification_levels.keys())
|
|
|
|
for key in keys:
|
|
|
|
level = notification_levels.get(key, SENTINEL)
|
2023-08-29 15:41:43 +02:00
|
|
|
if level is not SENTINEL and type(level) is not int: # noqa: E721
|
2023-01-30 22:29:30 +01:00
|
|
|
try:
|
|
|
|
notification_levels[key] = int(level)
|
|
|
|
except (TypeError, ValueError):
|
|
|
|
del notification_levels[key]
|
2022-10-06 15:00:03 +02:00
|
|
|
|
2023-01-27 16:16:21 +01:00
|
|
|
# Pull out any user and room mentions.
|
2023-06-06 10:11:07 +02:00
|
|
|
has_mentions = EventContentFields.MENTIONS in event.content
|
2023-01-27 16:16:21 +01:00
|
|
|
|
2022-09-29 17:12:09 +02:00
|
|
|
evaluator = PushRuleEvaluator(
|
2023-03-07 17:27:57 +01:00
|
|
|
_flatten_dict(event),
|
2023-02-03 17:28:20 +01:00
|
|
|
has_mentions,
|
2022-07-11 22:08:39 +02:00
|
|
|
room_member_count,
|
2022-05-24 15:23:23 +02:00
|
|
|
sender_power_level,
|
2022-10-06 15:00:03 +02:00
|
|
|
notification_levels,
|
2022-10-25 15:38:01 +02:00
|
|
|
related_events,
|
|
|
|
self._related_event_match_enabled,
|
2022-12-13 14:19:19 +01:00
|
|
|
event.room_version.msc3931_push_features,
|
2022-11-29 00:29:53 +01:00
|
|
|
self.hs.config.experimental.msc1767_enabled, # MSC3931 flag
|
2017-10-05 13:39:18 +02:00
|
|
|
)
|
2016-01-18 15:09:47 +01:00
|
|
|
|
2022-07-11 22:08:39 +02:00
|
|
|
users = rules_by_user.keys()
|
|
|
|
profiles = await self.store.get_subset_users_in_room_with_profiles(
|
|
|
|
event.room_id, users
|
|
|
|
)
|
|
|
|
|
2020-06-15 13:03:36 +02:00
|
|
|
for uid, rules in rules_by_user.items():
|
2017-07-07 15:04:40 +02:00
|
|
|
if event.sender == uid:
|
|
|
|
continue
|
|
|
|
|
2017-04-25 15:38:51 +02:00
|
|
|
display_name = None
|
2022-07-11 22:08:39 +02:00
|
|
|
profile = profiles.get(uid)
|
|
|
|
if profile:
|
|
|
|
display_name = profile.display_name
|
2017-04-25 16:39:19 +02:00
|
|
|
|
|
|
|
if not display_name:
|
2016-12-08 14:32:05 +01:00
|
|
|
# Handle the case where we are pushing a membership event to
|
|
|
|
# that user, as they might not be already joined.
|
|
|
|
if event.type == EventTypes.Member and event.state_key == uid:
|
|
|
|
display_name = event.content.get("displayname", None)
|
2021-11-02 14:55:52 +01:00
|
|
|
if not isinstance(display_name, str):
|
|
|
|
display_name = None
|
2016-01-18 15:09:47 +01:00
|
|
|
|
2020-09-07 17:56:27 +02:00
|
|
|
if count_as_unread:
|
|
|
|
# Add an element for the current user if the event needs to be marked as
|
|
|
|
# unread, so that add_push_actions_to_staging iterates over it.
|
|
|
|
# If the event shouldn't be marked as unread but should notify the
|
|
|
|
# current user, it'll be added to the dict later.
|
|
|
|
actions_by_user[uid] = []
|
2020-09-02 18:19:37 +02:00
|
|
|
|
2022-09-29 17:12:09 +02:00
|
|
|
actions = evaluator.run(rules, uid, display_name)
|
|
|
|
if "notify" in actions:
|
|
|
|
# Push rules say we should notify the user of this event
|
|
|
|
actions_by_user[uid] = actions
|
2015-12-22 16:19:34 +01:00
|
|
|
|
2022-09-30 18:40:33 +02:00
|
|
|
# If there aren't any actions then we can skip the rest of the
|
|
|
|
# processing.
|
|
|
|
if not actions_by_user:
|
|
|
|
return
|
|
|
|
|
2022-09-30 15:27:00 +02:00
|
|
|
# This is a check for the case where user joins a room without being
|
|
|
|
# allowed to see history, and then the server receives a delayed event
|
|
|
|
# from before the user joined, which they should not be pushed for
|
|
|
|
#
|
|
|
|
# We do this *after* calculating the push actions as a) its unlikely
|
|
|
|
# that we'll filter anyone out and b) for large rooms its likely that
|
|
|
|
# most users will have push disabled and so the set of users to check is
|
|
|
|
# much smaller.
|
|
|
|
uids_with_visibility = await filter_event_for_clients_with_state(
|
|
|
|
self.store, actions_by_user.keys(), event, context
|
|
|
|
)
|
|
|
|
|
|
|
|
for user_id in set(actions_by_user).difference(uids_with_visibility):
|
|
|
|
actions_by_user.pop(user_id, None)
|
|
|
|
|
2018-02-21 12:29:49 +01:00
|
|
|
# Mark in the DB staging area the push actions for users who should be
|
|
|
|
# notified for this event. (This will then get handled when we persist
|
|
|
|
# the event)
|
2020-09-02 18:19:37 +02:00
|
|
|
await self.store.add_push_actions_to_staging(
|
2021-02-16 23:32:34 +01:00
|
|
|
event.event_id,
|
|
|
|
actions_by_user,
|
|
|
|
count_as_unread,
|
2022-09-14 19:11:16 +02:00
|
|
|
thread_id,
|
2020-09-02 18:19:37 +02:00
|
|
|
)
|
2018-02-20 12:30:54 +01:00
|
|
|
|
2016-01-18 15:09:47 +01:00
|
|
|
|
2022-03-25 15:58:56 +01:00
|
|
|
MemberMap = Dict[str, Optional[EventIdMembership]]
|
2021-10-11 18:42:10 +02:00
|
|
|
Rule = Dict[str, dict]
|
|
|
|
RulesByUser = Dict[str, List[Rule]]
|
|
|
|
StateGroup = Union[object, int]
|
2022-09-29 17:12:09 +02:00
|
|
|
|
|
|
|
|
2023-02-14 20:02:19 +01:00
|
|
|
def _is_simple_value(value: Any) -> bool:
|
2023-08-29 15:41:43 +02:00
|
|
|
return (
|
|
|
|
isinstance(value, (bool, str))
|
|
|
|
or type(value) is int # noqa: E721
|
|
|
|
or value is None
|
|
|
|
)
|
2023-02-14 20:02:19 +01:00
|
|
|
|
|
|
|
|
2022-09-29 17:12:09 +02:00
|
|
|
def _flatten_dict(
|
|
|
|
d: Union[EventBase, Mapping[str, Any]],
|
|
|
|
prefix: Optional[List[str]] = None,
|
2023-02-14 20:02:19 +01:00
|
|
|
result: Optional[Dict[str, JsonValue]] = None,
|
|
|
|
) -> Dict[str, JsonValue]:
|
2023-02-03 17:48:13 +01:00
|
|
|
"""
|
|
|
|
Given a JSON dictionary (or event) which might contain sub dictionaries,
|
|
|
|
flatten it into a single layer dictionary by combining the keys & sub-keys.
|
|
|
|
|
2023-02-14 20:02:19 +01:00
|
|
|
String, integer, boolean, null or lists of those values are kept. All others are dropped.
|
2023-02-03 17:48:13 +01:00
|
|
|
|
|
|
|
Transforms:
|
|
|
|
|
|
|
|
{"foo": {"bar": "test"}}
|
|
|
|
|
|
|
|
To:
|
|
|
|
|
|
|
|
{"foo.bar": "test"}
|
|
|
|
|
|
|
|
Args:
|
|
|
|
d: The event or content to continue flattening.
|
|
|
|
prefix: The key prefix (from outer dictionaries).
|
|
|
|
result: The result to mutate.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The resulting dictionary.
|
|
|
|
"""
|
2022-09-29 17:12:09 +02:00
|
|
|
if prefix is None:
|
|
|
|
prefix = []
|
|
|
|
if result is None:
|
|
|
|
result = {}
|
|
|
|
for key, value in d.items():
|
2023-03-07 17:27:57 +01:00
|
|
|
# Escape periods in the key with a backslash (and backslashes with an
|
|
|
|
# extra backslash). This is since a period is used as a separator between
|
|
|
|
# nested fields.
|
|
|
|
key = key.replace("\\", "\\\\").replace(".", "\\.")
|
2023-02-08 19:09:41 +01:00
|
|
|
|
2023-02-14 20:02:19 +01:00
|
|
|
if _is_simple_value(value):
|
2023-02-10 18:37:07 +01:00
|
|
|
result[".".join(prefix + [key])] = value
|
2023-02-14 20:02:19 +01:00
|
|
|
elif isinstance(value, (list, tuple)):
|
|
|
|
result[".".join(prefix + [key])] = [v for v in value if _is_simple_value(v)]
|
2022-09-29 17:12:09 +02:00
|
|
|
elif isinstance(value, Mapping):
|
2022-11-29 02:02:41 +01:00
|
|
|
# do not set `room_version` due to recursion considerations below
|
2023-03-07 17:27:57 +01:00
|
|
|
_flatten_dict(value, prefix=(prefix + [key]), result=result)
|
2022-09-29 17:12:09 +02:00
|
|
|
|
2022-11-29 02:02:41 +01:00
|
|
|
# `room_version` should only ever be set when looking at the top level of an event
|
|
|
|
if (
|
2023-02-07 12:56:09 +01:00
|
|
|
isinstance(d, EventBase)
|
|
|
|
and PushRuleRoomFlag.EXTENSIBLE_EVENTS in d.room_version.msc3931_push_features
|
2022-11-29 02:02:41 +01:00
|
|
|
):
|
|
|
|
# Room supports extensible events: replace `content.body` with the plain text
|
|
|
|
# representation from `m.markup`, as per MSC1767.
|
|
|
|
markup = d.get("content").get("m.markup")
|
2023-02-07 12:56:09 +01:00
|
|
|
if d.room_version.identifier.startswith("org.matrix.msc1767."):
|
2022-11-29 02:02:41 +01:00
|
|
|
markup = d.get("content").get("org.matrix.msc1767.markup")
|
|
|
|
if markup is not None and isinstance(markup, list):
|
|
|
|
text = ""
|
|
|
|
for rep in markup:
|
|
|
|
if not isinstance(rep, dict):
|
|
|
|
# invalid markup - skip all processing
|
|
|
|
break
|
|
|
|
if rep.get("mimetype", "text/plain") == "text/plain":
|
|
|
|
rep_text = rep.get("body")
|
|
|
|
if rep_text is not None and isinstance(rep_text, str):
|
|
|
|
text = rep_text.lower()
|
|
|
|
break
|
|
|
|
result["content.body"] = text
|
|
|
|
|
2022-09-29 17:12:09 +02:00
|
|
|
return result
|