2021-09-08 13:14:54 -04:00
|
|
|
# Spam checker callbacks
|
|
|
|
|
|
|
|
Spam checker callbacks allow module developers to implement spam mitigation actions for
|
|
|
|
Synapse instances. Spam checker callbacks can be registered using the module API's
|
|
|
|
`register_spam_checker_callbacks` method.
|
|
|
|
|
|
|
|
## Callbacks
|
|
|
|
|
|
|
|
The available spam checker callbacks are:
|
|
|
|
|
|
|
|
### `check_event_for_spam`
|
|
|
|
|
2021-10-20 07:04:27 -04:00
|
|
|
_First introduced in Synapse v1.37.0_
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
```python
|
|
|
|
async def check_event_for_spam(event: "synapse.events.EventBase") -> Union[bool, str]
|
|
|
|
```
|
|
|
|
|
2022-02-16 07:25:43 -05:00
|
|
|
Called when receiving an event from a client or via federation. The callback must return
|
|
|
|
either:
|
|
|
|
- an error message string, to indicate the event must be rejected because of spam and
|
|
|
|
give a rejection reason to forward to clients;
|
|
|
|
- the boolean `True`, to indicate that the event is spammy, but not provide further details; or
|
|
|
|
- the booelan `False`, to indicate that the event is not considered spammy.
|
2021-09-08 13:14:54 -04:00
|
|
|
|
2021-10-18 12:26:52 -04:00
|
|
|
If multiple modules implement this callback, they will be considered in order. If a
|
|
|
|
callback returns `False`, Synapse falls through to the next one. The value of the first
|
|
|
|
callback that does not return `False` will be used. If this happens, Synapse will not call
|
|
|
|
any of the subsequent implementations of this callback.
|
|
|
|
|
2021-10-06 10:32:16 -04:00
|
|
|
### `user_may_join_room`
|
|
|
|
|
2021-10-20 07:04:27 -04:00
|
|
|
_First introduced in Synapse v1.37.0_
|
|
|
|
|
2021-10-06 10:32:16 -04:00
|
|
|
```python
|
|
|
|
async def user_may_join_room(user: str, room: str, is_invited: bool) -> bool
|
|
|
|
```
|
|
|
|
|
|
|
|
Called when a user is trying to join a room. The module must return a `bool` to indicate
|
2022-02-16 07:25:43 -05:00
|
|
|
whether the user can join the room. Return `False` to prevent the user from joining the
|
|
|
|
room; otherwise return `True` to permit the joining.
|
|
|
|
|
|
|
|
The user is represented by their Matrix user ID (e.g.
|
2021-10-06 10:32:16 -04:00
|
|
|
`@alice:example.com`) and the room is represented by its Matrix ID (e.g.
|
|
|
|
`!room:example.com`). The module is also given a boolean to indicate whether the user
|
|
|
|
currently has a pending invite in the room.
|
|
|
|
|
|
|
|
This callback isn't called if the join is performed by a server administrator, or in the
|
|
|
|
context of a room creation.
|
|
|
|
|
2021-10-18 12:26:52 -04:00
|
|
|
If multiple modules implement this callback, they will be considered in order. If a
|
|
|
|
callback returns `True`, Synapse falls through to the next one. The value of the first
|
|
|
|
callback that does not return `True` will be used. If this happens, Synapse will not call
|
|
|
|
any of the subsequent implementations of this callback.
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
### `user_may_invite`
|
|
|
|
|
2021-10-20 07:04:27 -04:00
|
|
|
_First introduced in Synapse v1.37.0_
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
```python
|
|
|
|
async def user_may_invite(inviter: str, invitee: str, room_id: str) -> bool
|
|
|
|
```
|
|
|
|
|
|
|
|
Called when processing an invitation. The module must return a `bool` indicating whether
|
|
|
|
the inviter can invite the invitee to the given room. Both inviter and invitee are
|
2022-02-16 07:25:43 -05:00
|
|
|
represented by their Matrix user ID (e.g. `@alice:example.com`). Return `False` to prevent
|
|
|
|
the invitation; otherwise return `True` to permit it.
|
2021-09-08 13:14:54 -04:00
|
|
|
|
2021-10-18 12:26:52 -04:00
|
|
|
If multiple modules implement this callback, they will be considered in order. If a
|
|
|
|
callback returns `True`, Synapse falls through to the next one. The value of the first
|
|
|
|
callback that does not return `True` will be used. If this happens, Synapse will not call
|
|
|
|
any of the subsequent implementations of this callback.
|
|
|
|
|
2021-10-06 11:18:13 -04:00
|
|
|
### `user_may_send_3pid_invite`
|
|
|
|
|
2021-10-20 07:04:27 -04:00
|
|
|
_First introduced in Synapse v1.45.0_
|
|
|
|
|
2021-10-06 11:18:13 -04:00
|
|
|
```python
|
|
|
|
async def user_may_send_3pid_invite(
|
|
|
|
inviter: str,
|
|
|
|
medium: str,
|
|
|
|
address: str,
|
|
|
|
room_id: str,
|
|
|
|
) -> bool
|
|
|
|
```
|
|
|
|
|
|
|
|
Called when processing an invitation using a third-party identifier (also called a 3PID,
|
|
|
|
e.g. an email address or a phone number). The module must return a `bool` indicating
|
2022-02-16 07:25:43 -05:00
|
|
|
whether the inviter can invite the invitee to the given room. Return `False` to prevent
|
|
|
|
the invitation; otherwise return `True` to permit it.
|
2021-10-06 11:18:13 -04:00
|
|
|
|
|
|
|
The inviter is represented by their Matrix user ID (e.g. `@alice:example.com`), and the
|
|
|
|
invitee is represented by its medium (e.g. "email") and its address
|
|
|
|
(e.g. `alice@example.com`). See [the Matrix specification](https://matrix.org/docs/spec/appendices#pid-types)
|
|
|
|
for more information regarding third-party identifiers.
|
|
|
|
|
|
|
|
For example, a call to this callback to send an invitation to the email address
|
|
|
|
`alice@example.com` would look like this:
|
|
|
|
|
|
|
|
```python
|
|
|
|
await user_may_send_3pid_invite(
|
|
|
|
"@bob:example.com", # The inviter's user ID
|
|
|
|
"email", # The medium of the 3PID to invite
|
|
|
|
"alice@example.com", # The address of the 3PID to invite
|
|
|
|
"!some_room:example.com", # The ID of the room to send the invite into
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
|
|
|
**Note**: If the third-party identifier is already associated with a matrix user ID,
|
|
|
|
[`user_may_invite`](#user_may_invite) will be used instead.
|
|
|
|
|
2021-10-18 12:26:52 -04:00
|
|
|
If multiple modules implement this callback, they will be considered in order. If a
|
|
|
|
callback returns `True`, Synapse falls through to the next one. The value of the first
|
|
|
|
callback that does not return `True` will be used. If this happens, Synapse will not call
|
|
|
|
any of the subsequent implementations of this callback.
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
### `user_may_create_room`
|
|
|
|
|
2021-10-20 07:04:27 -04:00
|
|
|
_First introduced in Synapse v1.37.0_
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
```python
|
|
|
|
async def user_may_create_room(user: str) -> bool
|
|
|
|
```
|
|
|
|
|
|
|
|
Called when processing a room creation request. The module must return a `bool` indicating
|
|
|
|
whether the given user (represented by their Matrix user ID) is allowed to create a room.
|
2022-02-16 07:25:43 -05:00
|
|
|
Return `False` to prevent room creation; otherwise return `True` to permit it.
|
2021-09-08 13:14:54 -04:00
|
|
|
|
2021-10-18 12:26:52 -04:00
|
|
|
If multiple modules implement this callback, they will be considered in order. If a
|
|
|
|
callback returns `True`, Synapse falls through to the next one. The value of the first
|
|
|
|
callback that does not return `True` will be used. If this happens, Synapse will not call
|
|
|
|
any of the subsequent implementations of this callback.
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
### `user_may_create_room_alias`
|
|
|
|
|
2021-10-20 07:04:27 -04:00
|
|
|
_First introduced in Synapse v1.37.0_
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
```python
|
|
|
|
async def user_may_create_room_alias(user: str, room_alias: "synapse.types.RoomAlias") -> bool
|
|
|
|
```
|
|
|
|
|
|
|
|
Called when trying to associate an alias with an existing room. The module must return a
|
|
|
|
`bool` indicating whether the given user (represented by their Matrix user ID) is allowed
|
2022-02-16 07:25:43 -05:00
|
|
|
to set the given alias. Return `False` to prevent the alias creation; otherwise return
|
|
|
|
`True` to permit it.
|
2021-09-08 13:14:54 -04:00
|
|
|
|
2021-10-18 12:26:52 -04:00
|
|
|
If multiple modules implement this callback, they will be considered in order. If a
|
|
|
|
callback returns `True`, Synapse falls through to the next one. The value of the first
|
|
|
|
callback that does not return `True` will be used. If this happens, Synapse will not call
|
|
|
|
any of the subsequent implementations of this callback.
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
### `user_may_publish_room`
|
|
|
|
|
2021-10-20 07:04:27 -04:00
|
|
|
_First introduced in Synapse v1.37.0_
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
```python
|
|
|
|
async def user_may_publish_room(user: str, room_id: str) -> bool
|
|
|
|
```
|
|
|
|
|
|
|
|
Called when trying to publish a room to the homeserver's public rooms directory. The
|
|
|
|
module must return a `bool` indicating whether the given user (represented by their
|
2022-02-16 07:25:43 -05:00
|
|
|
Matrix user ID) is allowed to publish the given room. Return `False` to prevent the
|
|
|
|
room from being published; otherwise return `True` to permit its publication.
|
2021-09-08 13:14:54 -04:00
|
|
|
|
2021-10-18 12:26:52 -04:00
|
|
|
If multiple modules implement this callback, they will be considered in order. If a
|
|
|
|
callback returns `True`, Synapse falls through to the next one. The value of the first
|
|
|
|
callback that does not return `True` will be used. If this happens, Synapse will not call
|
|
|
|
any of the subsequent implementations of this callback.
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
### `check_username_for_spam`
|
|
|
|
|
2021-10-20 07:04:27 -04:00
|
|
|
_First introduced in Synapse v1.37.0_
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
```python
|
2022-03-18 09:51:41 -04:00
|
|
|
async def check_username_for_spam(user_profile: synapse.module_api.UserProfile) -> bool
|
2021-09-08 13:14:54 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Called when computing search results in the user directory. The module must return a
|
2022-02-16 07:25:43 -05:00
|
|
|
`bool` indicating whether the given user should be excluded from user directory
|
|
|
|
searches. Return `True` to indicate that the user is spammy and exclude them from
|
|
|
|
search results; otherwise return `False`.
|
|
|
|
|
|
|
|
The profile is represented as a dictionary with the following keys:
|
2021-09-08 13:14:54 -04:00
|
|
|
|
2022-03-18 09:51:41 -04:00
|
|
|
* `user_id: str`. The Matrix ID for this user.
|
|
|
|
* `display_name: Optional[str]`. The user's display name, or `None` if this user
|
|
|
|
has not set a display name.
|
|
|
|
* `avatar_url: Optional[str]`. The `mxc://` URL to the user's avatar, or `None`
|
|
|
|
if this user has not set an avatar.
|
2021-09-08 13:14:54 -04:00
|
|
|
|
|
|
|
The module is given a copy of the original dictionary, so modifying it from within the
|
|
|
|
module cannot modify a user's profile when included in user directory search results.
|
|
|
|
|
2021-10-18 12:26:52 -04:00
|
|
|
If multiple modules implement this callback, they will be considered in order. If a
|
|
|
|
callback returns `False`, Synapse falls through to the next one. The value of the first
|
|
|
|
callback that does not return `False` will be used. If this happens, Synapse will not call
|
|
|
|
any of the subsequent implementations of this callback.
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
### `check_registration_for_spam`
|
|
|
|
|
2021-10-20 07:04:27 -04:00
|
|
|
_First introduced in Synapse v1.37.0_
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
```python
|
|
|
|
async def check_registration_for_spam(
|
|
|
|
email_threepid: Optional[dict],
|
|
|
|
username: Optional[str],
|
|
|
|
request_info: Collection[Tuple[str, str]],
|
|
|
|
auth_provider_id: Optional[str] = None,
|
|
|
|
) -> "synapse.spam_checker_api.RegistrationBehaviour"
|
|
|
|
```
|
|
|
|
|
|
|
|
Called when registering a new user. The module must return a `RegistrationBehaviour`
|
|
|
|
indicating whether the registration can go through or must be denied, or whether the user
|
|
|
|
may be allowed to register but will be shadow banned.
|
|
|
|
|
|
|
|
The arguments passed to this callback are:
|
|
|
|
|
|
|
|
* `email_threepid`: The email address used for registering, if any.
|
|
|
|
* `username`: The username the user would like to register. Can be `None`, meaning that
|
|
|
|
Synapse will generate one later.
|
|
|
|
* `request_info`: A collection of tuples, which first item is a user agent, and which
|
|
|
|
second item is an IP address. These user agents and IP addresses are the ones that were
|
|
|
|
used during the registration process.
|
|
|
|
* `auth_provider_id`: The identifier of the SSO authentication provider, if any.
|
|
|
|
|
2021-10-18 12:26:52 -04:00
|
|
|
If multiple modules implement this callback, they will be considered in order. If a
|
|
|
|
callback returns `RegistrationBehaviour.ALLOW`, Synapse falls through to the next one.
|
|
|
|
The value of the first callback that does not return `RegistrationBehaviour.ALLOW` will
|
|
|
|
be used. If this happens, Synapse will not call any of the subsequent implementations of
|
|
|
|
this callback.
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
### `check_media_file_for_spam`
|
|
|
|
|
2021-10-20 07:04:27 -04:00
|
|
|
_First introduced in Synapse v1.37.0_
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
```python
|
|
|
|
async def check_media_file_for_spam(
|
|
|
|
file_wrapper: "synapse.rest.media.v1.media_storage.ReadableFileWrapper",
|
|
|
|
file_info: "synapse.rest.media.v1._base.FileInfo",
|
|
|
|
) -> bool
|
|
|
|
```
|
|
|
|
|
2022-02-16 07:25:43 -05:00
|
|
|
Called when storing a local or remote file. The module must return a `bool` indicating
|
|
|
|
whether the given file should be excluded from the homeserver's media store. Return
|
|
|
|
`True` to prevent this file from being stored; otherwise return `False`.
|
2021-09-08 13:14:54 -04:00
|
|
|
|
2021-10-18 12:26:52 -04:00
|
|
|
If multiple modules implement this callback, they will be considered in order. If a
|
|
|
|
callback returns `False`, Synapse falls through to the next one. The value of the first
|
|
|
|
callback that does not return `False` will be used. If this happens, Synapse will not call
|
|
|
|
any of the subsequent implementations of this callback.
|
|
|
|
|
2021-09-08 13:14:54 -04:00
|
|
|
## Example
|
|
|
|
|
|
|
|
The example below is a module that implements the spam checker callback
|
|
|
|
`check_event_for_spam` to deny any message sent by users whose Matrix user IDs are
|
|
|
|
mentioned in a configured list, and registers a web resource to the path
|
|
|
|
`/_synapse/client/list_spam_checker/is_evil` that returns a JSON object indicating
|
|
|
|
whether the provided user appears in that list.
|
|
|
|
|
|
|
|
```python
|
|
|
|
import json
|
|
|
|
from typing import Union
|
|
|
|
|
|
|
|
from twisted.web.resource import Resource
|
|
|
|
from twisted.web.server import Request
|
|
|
|
|
|
|
|
from synapse.module_api import ModuleApi
|
|
|
|
|
|
|
|
|
|
|
|
class IsUserEvilResource(Resource):
|
|
|
|
def __init__(self, config):
|
|
|
|
super(IsUserEvilResource, self).__init__()
|
|
|
|
self.evil_users = config.get("evil_users") or []
|
|
|
|
|
|
|
|
def render_GET(self, request: Request):
|
2021-09-17 13:04:37 -04:00
|
|
|
user = request.args.get(b"user")[0].decode()
|
2021-09-08 13:14:54 -04:00
|
|
|
request.setHeader(b"Content-Type", b"application/json")
|
2021-09-17 13:04:37 -04:00
|
|
|
return json.dumps({"evil": user in self.evil_users}).encode()
|
2021-09-08 13:14:54 -04:00
|
|
|
|
|
|
|
|
|
|
|
class ListSpamChecker:
|
|
|
|
def __init__(self, config: dict, api: ModuleApi):
|
|
|
|
self.api = api
|
|
|
|
self.evil_users = config.get("evil_users") or []
|
|
|
|
|
|
|
|
self.api.register_spam_checker_callbacks(
|
|
|
|
check_event_for_spam=self.check_event_for_spam,
|
|
|
|
)
|
|
|
|
|
|
|
|
self.api.register_web_resource(
|
|
|
|
path="/_synapse/client/list_spam_checker/is_evil",
|
|
|
|
resource=IsUserEvilResource(config),
|
|
|
|
)
|
|
|
|
|
|
|
|
async def check_event_for_spam(self, event: "synapse.events.EventBase") -> Union[bool, str]:
|
|
|
|
return event.sender not in self.evil_users
|
|
|
|
```
|