This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Allow server admins to define implementations of extra rules for allowing or denying incoming events #5440
Merged
Merged
Allow server admins to define implementations of extra rules for allowing or denying incoming events #5440
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Allow server admins to define implementations of extra rules for allowing or denying incoming events. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright 2019 The Matrix.org Foundation C.I.C. | ||
# | ||
# 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. | ||
|
||
from synapse.util.module_loader import load_module | ||
|
||
from ._base import Config | ||
|
||
|
||
class ThirdPartyRulesConfig(Config): | ||
def read_config(self, config): | ||
self.third_party_event_rules = None | ||
|
||
provider = config.get("third_party_event_rules", None) | ||
if provider is not None: | ||
self.third_party_event_rules = load_module(provider) | ||
|
||
def default_config(self, **kwargs): | ||
return """\ | ||
# Server admins can define a Python module that implements extra rules for | ||
# allowing or denying incoming events. In order to work, this module needs to | ||
# override the methods defined in synapse/events/third_party_rules.py. | ||
# | ||
# This feature is designed to be used in closed federations only, where each | ||
# participating server enforces the same rules. | ||
# | ||
#third_party_event_rules: | ||
# module: "my_custom_project.SuperRulesSet" | ||
# config: | ||
# example_option: 'things' | ||
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright 2019 The Matrix.org Foundation C.I.C. | ||
# | ||
# 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. | ||
|
||
from twisted.internet import defer | ||
|
||
|
||
class ThirdPartyEventRules(object): | ||
babolivier marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"""Allows server admins to provide a Python module implementing an extra set of rules | ||
to apply when processing events. | ||
|
||
This is designed to help admins of closed federations with enforcing custom | ||
behaviours. | ||
""" | ||
|
||
def __init__(self, hs): | ||
self.third_party_rules = None | ||
|
||
self.store = hs.get_datastore() | ||
|
||
module = None | ||
config = None | ||
if hs.config.third_party_event_rules: | ||
module, config = hs.config.third_party_event_rules | ||
|
||
if module is not None: | ||
self.third_party_rules = module(config=config) | ||
|
||
@defer.inlineCallbacks | ||
def check_event_allowed(self, event, context): | ||
"""Check if a provided event should be allowed in the given context. | ||
|
||
Args: | ||
event (synapse.events.EventBase): The event to be checked. | ||
context (synapse.events.snapshot.EventContext): The context of the event. | ||
|
||
Returns: | ||
defer.Deferred(bool), True if the event should be allowed, False if not. | ||
""" | ||
if self.third_party_rules is None: | ||
defer.returnValue(True) | ||
|
||
prev_state_ids = yield context.get_prev_state_ids(self.store) | ||
|
||
# Retrieve the state events from the database. | ||
state_events = {} | ||
for key, event_id in prev_state_ids.items(): | ||
state_events[key] = yield self.store.get_event(event_id, allow_none=True) | ||
|
||
ret = yield self.third_party_rules.check_event_allowed(event, state_events) | ||
defer.returnValue(ret) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.