2015-12-10 11:26:08 -05:00
|
|
|
# Copyright 2015 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
2020-12-11 11:43:53 -05:00
|
|
|
from typing import TYPE_CHECKING
|
2015-12-10 11:26:08 -05:00
|
|
|
|
2020-12-11 11:43:53 -05:00
|
|
|
from synapse.events import EventBase
|
|
|
|
from synapse.events.snapshot import EventContext
|
|
|
|
from synapse.push.bulk_push_rule_evaluator import BulkPushRuleEvaluator
|
2016-04-14 08:42:22 -04:00
|
|
|
from synapse.util.metrics import Measure
|
|
|
|
|
2020-12-11 11:43:53 -05:00
|
|
|
if TYPE_CHECKING:
|
2021-03-23 07:12:48 -04:00
|
|
|
from synapse.server import HomeServer
|
2015-12-10 11:26:08 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class ActionGenerator:
|
2020-12-11 11:43:53 -05:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2016-04-14 08:42:22 -04:00
|
|
|
self.clock = hs.get_clock()
|
2017-05-02 05:46:01 -04:00
|
|
|
self.bulk_evaluator = BulkPushRuleEvaluator(hs)
|
2015-12-10 11:26:08 -05:00
|
|
|
# really we want to get all user ids and all profile tags too,
|
|
|
|
# since we want the actions for each profile tag for every user and
|
|
|
|
# also actions for a client with no profile tag for each user.
|
|
|
|
# Currently the event stream doesn't support profile tags on an
|
|
|
|
# event stream, so we just run the rules for a client with no profile
|
|
|
|
# tag (ie. we just need all the users).
|
|
|
|
|
2020-12-11 11:43:53 -05:00
|
|
|
async def handle_push_actions_for_event(
|
|
|
|
self, event: EventBase, context: EventContext
|
|
|
|
) -> None:
|
2016-08-17 13:00:04 -04:00
|
|
|
with Measure(self.clock, "action_for_event_by_user"):
|
2020-07-27 12:21:34 -04:00
|
|
|
await self.bulk_evaluator.action_for_event_by_user(event, context)
|