0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-04 18:28:48 +02:00

Only run pushers for users on this hs!

This commit is contained in:
David Baker 2015-12-21 15:28:54 +00:00
parent 091c545c4f
commit f73f154ec2
3 changed files with 9 additions and 3 deletions

View file

@ -267,7 +267,7 @@ class BaseHandler(object):
event, context=context
)
action_generator = ActionGenerator(self.store)
action_generator = ActionGenerator(self.hs, self.store)
yield action_generator.handle_event(serialize_event(
event, self.clock.time_msec()
))

View file

@ -245,7 +245,7 @@ class FederationHandler(BaseHandler):
yield user_joined_room(self.distributor, user, event.room_id)
if not backfilled and not event.internal_metadata.is_outlier():
action_generator = ActionGenerator(self.store)
action_generator = ActionGenerator(self.hs, self.store)
yield action_generator.handle_event(serialize_event(
event, self.clock.time_msec())
)

View file

@ -15,6 +15,8 @@
from twisted.internet import defer
from synapse.types import UserID
import push_rule_evaluator
import logging
@ -23,7 +25,8 @@ logger = logging.getLogger(__name__)
class ActionGenerator:
def __init__(self, store):
def __init__(self, hs, store):
self.hs = hs
self.store = store
# 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
@ -37,6 +40,9 @@ class ActionGenerator:
users = yield self.store.get_users_in_room(event['room_id'])
for uid in users:
if not self.hs.is_mine(UserID.from_string(uid)):
continue
evaluator = yield push_rule_evaluator.\
evaluator_for_user_name_and_profile_tag(
uid, None, event['room_id'], self.store