summary refs log tree commit diff
path: root/synapse/events
diff options
context:
space:
mode:
authorDavid Baker <dbkr@users.noreply.github.com>2017-10-04 14:49:20 +0100
committerGitHub <noreply@github.com>2017-10-04 14:49:20 +0100
commit93b0cf7a991a94ca1ec009f8fe059758e79b648e (patch)
treedeecafe01324a4d683327020a52e05fb68a3dd1d /synapse/events
parentMerge pull request #2492 from matrix-org/dbkr/spam_check_invites (diff)
parentspam check room publishing (diff)
downloadsynapse-93b0cf7a991a94ca1ec009f8fe059758e79b648e.tar.xz
Merge pull request #2495 from matrix-org/dbkr/spam_check_room_creation
Add room creation checks to spam checker
Diffstat (limited to 'synapse/events')
-rw-r--r--synapse/events/spamcheck.py50
1 files changed, 50 insertions, 0 deletions
diff --git a/synapse/events/spamcheck.py b/synapse/events/spamcheck.py
index 8b01c091e9..595b1760f8 100644
--- a/synapse/events/spamcheck.py
+++ b/synapse/events/spamcheck.py
@@ -61,3 +61,53 @@ class SpamChecker(object):
             return True
 
         return self.spam_checker.user_may_invite(userid, room_id)
+
+    def user_may_create_room(self, userid):
+        """Checks if a given user may create a room
+
+        If this method returns false, the creation request will be rejected.
+
+        Args:
+            userid (string): The sender's user ID
+
+        Returns:
+            bool: True if the user may create a room, otherwise False
+        """
+        if self.spam_checker is None:
+            return True
+
+        return self.spam_checker.user_may_create_room(userid)
+
+    def user_may_create_room_alias(self, userid, room_alias):
+        """Checks if a given user may create a room alias
+
+        If this method returns false, the association request will be rejected.
+
+        Args:
+            userid (string): The sender's user ID
+            room_alias (string): The alias to be created
+
+        Returns:
+            bool: True if the user may create a room alias, otherwise False
+        """
+        if self.spam_checker is None:
+            return True
+
+        return self.spam_checker.user_may_create_room_alias(userid, room_alias)
+
+    def user_may_publish_room(self, userid, room_id):
+        """Checks if a given user may publish a room to the directory
+
+        If this method returns false, the publish request will be rejected.
+
+        Args:
+            userid (string): The sender's user ID
+            room_id (string): The ID of the room that would be published
+
+        Returns:
+            bool: True if the user may publish the room, otherwise False
+        """
+        if self.spam_checker is None:
+            return True
+
+        return self.spam_checker.user_may_publish_room(userid, room_id)