2019-06-12 05:31:37 -04:00
|
|
|
# -*- 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):
|
2019-06-17 10:48:57 -04:00
|
|
|
"""Allows server admins to provide a Python module implementing an extra
|
|
|
|
set of rules to apply when processing events.
|
2019-06-12 05:31:37 -04:00
|
|
|
|
|
|
|
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:
|
2019-06-17 11:27:47 -04:00
|
|
|
self.third_party_rules = module(
|
2019-06-20 05:32:02 -04:00
|
|
|
config=config, http_client=hs.get_simple_http_client()
|
2019-06-17 11:27:47 -04:00
|
|
|
)
|
2019-06-12 05:31:37 -04:00
|
|
|
|
|
|
|
@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:
|
2019-06-17 10:48:57 -04:00
|
|
|
defer.Deferred[bool]: True if the event should be allowed, False if not.
|
2019-06-12 05:31:37 -04:00
|
|
|
"""
|
|
|
|
if self.third_party_rules is None:
|
2019-07-23 09:00:55 -04:00
|
|
|
return True
|
2019-06-12 05:31:37 -04:00
|
|
|
|
2019-12-20 05:32:02 -05:00
|
|
|
prev_state_ids = yield context.get_prev_state_ids()
|
2019-06-12 05:31:37 -04:00
|
|
|
|
|
|
|
# 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)
|
2019-07-23 09:00:55 -04:00
|
|
|
return ret
|
2019-06-17 10:48:57 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def on_create_room(self, requester, config, is_requester_admin):
|
|
|
|
"""Intercept requests to create room to allow, deny or update the
|
|
|
|
request config.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
requester (Requester)
|
|
|
|
config (dict): The creation config from the client.
|
|
|
|
is_requester_admin (bool): If the requester is an admin
|
|
|
|
|
|
|
|
Returns:
|
2020-02-06 09:15:29 -05:00
|
|
|
defer.Deferred[bool]: Whether room creation is allowed or denied.
|
2019-06-17 10:48:57 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
if self.third_party_rules is None:
|
2020-02-06 09:15:29 -05:00
|
|
|
return True
|
2019-06-17 10:48:57 -04:00
|
|
|
|
2020-02-06 09:15:29 -05:00
|
|
|
ret = yield self.third_party_rules.on_create_room(
|
2019-06-17 10:48:57 -04:00
|
|
|
requester, config, is_requester_admin
|
|
|
|
)
|
2020-02-06 09:15:29 -05:00
|
|
|
return ret
|
2019-06-17 11:27:47 -04:00
|
|
|
|
2019-06-17 12:39:38 -04:00
|
|
|
@defer.inlineCallbacks
|
2019-06-17 11:27:47 -04:00
|
|
|
def check_threepid_can_be_invited(self, medium, address, room_id):
|
|
|
|
"""Check if a provided 3PID can be invited in the given room.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
medium (str): The 3PID's medium.
|
|
|
|
address (str): The 3PID's address.
|
|
|
|
room_id (str): The room we want to invite the threepid to.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
defer.Deferred[bool], True if the 3PID can be invited, False if not.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if self.third_party_rules is None:
|
2019-07-23 09:00:55 -04:00
|
|
|
return True
|
2019-06-17 11:27:47 -04:00
|
|
|
|
|
|
|
state_ids = yield self.store.get_filtered_current_state_ids(room_id)
|
|
|
|
room_state_events = yield self.store.get_events(state_ids.values())
|
|
|
|
|
|
|
|
state_events = {}
|
|
|
|
for key, event_id in state_ids.items():
|
|
|
|
state_events[key] = room_state_events[event_id]
|
|
|
|
|
|
|
|
ret = yield self.third_party_rules.check_threepid_can_be_invited(
|
2019-06-20 05:32:02 -04:00
|
|
|
medium, address, state_events
|
2019-06-17 11:27:47 -04:00
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return ret
|