pass room id too

pull/2492/head
David Baker 2017-10-03 17:13:14 +01:00
parent c2c188b699
commit 1e375468de
3 changed files with 6 additions and 4 deletions

View File

@ -46,7 +46,7 @@ class SpamChecker(object):
return self.spam_checker.check_event_for_spam(event)
def user_may_invite(self, userid):
def user_may_invite(self, userid, roomid):
"""Checks if a given user may send an invite
If this method returns false, the invite will be rejected.
@ -60,4 +60,4 @@ class SpamChecker(object):
if self.spam_checker is None:
return True
return self.spam_checker.user_may_invite(userid)
return self.spam_checker.user_may_invite(userid, roomid)

View File

@ -1078,7 +1078,7 @@ class FederationHandler(BaseHandler):
if self.hs.config.block_non_admin_invites:
raise SynapseError(403, "This server does not accept room invites")
if not self.spam_checker.user_may_invite(event.sender):
if not self.spam_checker.user_may_invite(event.sender, event.room_id):
raise SynapseError(
403, "This user is not permitted to send invites to this server"
)

View File

@ -224,7 +224,9 @@ class RoomMemberHandler(BaseHandler):
)
block_invite = True
if not self.spam_checker.user_may_invite(requester.user.to_string()):
if not self.spam_checker.user_may_invite(
requester.user.to_string(), room_id,
):
logger.info("Blocking invite due to spam checker")
block_invite = True