2016-05-11 08:42:37 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2014 - 2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# 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.
|
2018-06-22 11:35:10 -04:00
|
|
|
|
2018-06-07 06:37:10 -04:00
|
|
|
import logging
|
|
|
|
|
2016-05-11 08:42:37 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2018-06-22 11:35:10 -04:00
|
|
|
from synapse.api.constants import Membership, EventTypes
|
|
|
|
|
|
|
|
from synapse.util.logcontext import make_deferred_yieldable, preserve_fn
|
|
|
|
|
2016-05-11 08:42:37 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
VISIBILITY_PRIORITY = (
|
|
|
|
"world_readable",
|
|
|
|
"shared",
|
|
|
|
"invited",
|
|
|
|
"joined",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
MEMBERSHIP_PRIORITY = (
|
|
|
|
Membership.JOIN,
|
|
|
|
Membership.INVITE,
|
|
|
|
Membership.KNOCK,
|
|
|
|
Membership.LEAVE,
|
|
|
|
Membership.BAN,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2018-06-07 06:37:10 -04:00
|
|
|
def filter_events_for_client(store, user_id, events, is_peeking=False,
|
|
|
|
always_include_ids=frozenset()):
|
|
|
|
"""
|
|
|
|
Check which events a user is allowed to see
|
2016-05-11 08:42:37 -04:00
|
|
|
|
|
|
|
Args:
|
2018-06-07 06:37:10 -04:00
|
|
|
store (synapse.storage.DataStore): our datastore (can also be a worker
|
|
|
|
store)
|
|
|
|
user_id(str): user id to be checked
|
|
|
|
events(list[synapse.events.EventBase]): sequence of events to be checked
|
|
|
|
is_peeking(bool): should be True if:
|
|
|
|
* the user is not currently a member of the room, and:
|
|
|
|
* the user has not been a member of the room since the given
|
|
|
|
events
|
2017-09-18 12:13:03 -04:00
|
|
|
always_include_ids (set(event_id)): set of event ids to specifically
|
|
|
|
include (unless sender is ignored)
|
2018-06-07 06:37:10 -04:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred[list[synapse.events.EventBase]]
|
2016-05-11 08:42:37 -04:00
|
|
|
"""
|
2018-06-07 06:37:10 -04:00
|
|
|
types = (
|
|
|
|
(EventTypes.RoomHistoryVisibility, ""),
|
|
|
|
(EventTypes.Member, user_id),
|
|
|
|
)
|
|
|
|
event_id_to_state = yield store.get_state_for_events(
|
|
|
|
frozenset(e.event_id for e in events),
|
|
|
|
types=types,
|
|
|
|
)
|
|
|
|
|
2017-11-14 06:22:42 -05:00
|
|
|
forgotten = yield make_deferred_yieldable(defer.gatherResults([
|
2017-03-28 05:41:08 -04:00
|
|
|
defer.maybeDeferred(
|
|
|
|
preserve_fn(store.who_forgot_in_room),
|
2016-05-11 08:42:37 -04:00
|
|
|
room_id,
|
|
|
|
)
|
|
|
|
for room_id in frozenset(e.room_id for e in events)
|
2016-08-23 10:23:39 -04:00
|
|
|
], consumeErrors=True))
|
2016-05-11 08:42:37 -04:00
|
|
|
|
|
|
|
# Set of membership event_ids that have been forgotten
|
|
|
|
event_id_forgotten = frozenset(
|
|
|
|
row["event_id"] for rows in forgotten for row in rows
|
|
|
|
)
|
|
|
|
|
2018-06-07 06:37:10 -04:00
|
|
|
ignore_dict_content = yield store.get_global_account_data_by_type_for_user(
|
|
|
|
"m.ignored_user_list", user_id,
|
2016-05-11 08:42:37 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# FIXME: This will explode if people upload something incorrect.
|
2018-06-07 06:37:10 -04:00
|
|
|
ignore_list = frozenset(
|
|
|
|
ignore_dict_content.get("ignored_users", {}).keys()
|
|
|
|
if ignore_dict_content else []
|
|
|
|
)
|
2016-05-11 08:42:37 -04:00
|
|
|
|
2018-06-07 06:37:10 -04:00
|
|
|
def allowed(event):
|
2016-05-11 08:42:37 -04:00
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
event (synapse.events.EventBase): event to check
|
|
|
|
"""
|
|
|
|
if not event.is_state() and event.sender in ignore_list:
|
2018-06-22 11:35:10 -04:00
|
|
|
return False
|
2016-05-11 08:42:37 -04:00
|
|
|
|
2017-09-18 12:13:03 -04:00
|
|
|
if event.event_id in always_include_ids:
|
2018-06-22 11:35:10 -04:00
|
|
|
return True
|
2017-09-18 12:13:03 -04:00
|
|
|
|
2016-05-11 08:42:37 -04:00
|
|
|
state = event_id_to_state[event.event_id]
|
|
|
|
|
|
|
|
# get the room_visibility at the time of the event.
|
|
|
|
visibility_event = state.get((EventTypes.RoomHistoryVisibility, ""), None)
|
|
|
|
if visibility_event:
|
|
|
|
visibility = visibility_event.content.get("history_visibility", "shared")
|
|
|
|
else:
|
|
|
|
visibility = "shared"
|
|
|
|
|
|
|
|
if visibility not in VISIBILITY_PRIORITY:
|
|
|
|
visibility = "shared"
|
|
|
|
|
2018-06-22 11:35:10 -04:00
|
|
|
# if it was world_readable, it's easy: everyone can read it
|
|
|
|
if visibility == "world_readable":
|
|
|
|
return True
|
|
|
|
|
2016-05-11 08:42:37 -04:00
|
|
|
# Always allow history visibility events on boundaries. This is done
|
|
|
|
# by setting the effective visibility to the least restrictive
|
|
|
|
# of the old vs new.
|
|
|
|
if event.type == EventTypes.RoomHistoryVisibility:
|
|
|
|
prev_content = event.unsigned.get("prev_content", {})
|
|
|
|
prev_visibility = prev_content.get("history_visibility", None)
|
|
|
|
|
|
|
|
if prev_visibility not in VISIBILITY_PRIORITY:
|
|
|
|
prev_visibility = "shared"
|
|
|
|
|
|
|
|
new_priority = VISIBILITY_PRIORITY.index(visibility)
|
|
|
|
old_priority = VISIBILITY_PRIORITY.index(prev_visibility)
|
|
|
|
if old_priority < new_priority:
|
|
|
|
visibility = prev_visibility
|
|
|
|
|
|
|
|
# likewise, if the event is the user's own membership event, use
|
|
|
|
# the 'most joined' membership
|
|
|
|
membership = None
|
|
|
|
if event.type == EventTypes.Member and event.state_key == user_id:
|
|
|
|
membership = event.content.get("membership", None)
|
|
|
|
if membership not in MEMBERSHIP_PRIORITY:
|
|
|
|
membership = "leave"
|
|
|
|
|
|
|
|
prev_content = event.unsigned.get("prev_content", {})
|
|
|
|
prev_membership = prev_content.get("membership", None)
|
|
|
|
if prev_membership not in MEMBERSHIP_PRIORITY:
|
|
|
|
prev_membership = "leave"
|
|
|
|
|
2017-03-23 14:50:31 -04:00
|
|
|
# Always allow the user to see their own leave events, otherwise
|
|
|
|
# they won't see the room disappear if they reject the invite
|
|
|
|
if membership == "leave" and (
|
|
|
|
prev_membership == "join" or prev_membership == "invite"
|
|
|
|
):
|
2018-06-22 11:35:10 -04:00
|
|
|
return True
|
2017-03-23 14:50:31 -04:00
|
|
|
|
2016-05-11 08:42:37 -04:00
|
|
|
new_priority = MEMBERSHIP_PRIORITY.index(membership)
|
|
|
|
old_priority = MEMBERSHIP_PRIORITY.index(prev_membership)
|
|
|
|
if old_priority < new_priority:
|
|
|
|
membership = prev_membership
|
|
|
|
|
|
|
|
# otherwise, get the user's membership at the time of the event.
|
|
|
|
if membership is None:
|
|
|
|
membership_event = state.get((EventTypes.Member, user_id), None)
|
|
|
|
if membership_event:
|
|
|
|
if membership_event.event_id not in event_id_forgotten:
|
|
|
|
membership = membership_event.membership
|
|
|
|
|
|
|
|
# if the user was a member of the room at the time of the event,
|
|
|
|
# they can see it.
|
|
|
|
if membership == Membership.JOIN:
|
2018-06-22 11:35:10 -04:00
|
|
|
return True
|
2016-05-11 08:42:37 -04:00
|
|
|
|
|
|
|
if visibility == "joined":
|
|
|
|
# we weren't a member at the time of the event, so we can't
|
|
|
|
# see this event.
|
2018-06-22 11:35:10 -04:00
|
|
|
return False
|
2016-05-11 08:42:37 -04:00
|
|
|
|
|
|
|
elif visibility == "invited":
|
|
|
|
# user can also see the event if they were *invited* at the time
|
|
|
|
# of the event.
|
2018-06-22 11:35:10 -04:00
|
|
|
return membership == Membership.INVITE
|
|
|
|
|
|
|
|
else:
|
|
|
|
# visibility is shared: user can also see the event if they have
|
|
|
|
# become a member since the event
|
2016-05-11 08:42:37 -04:00
|
|
|
#
|
|
|
|
# XXX: if the user has subsequently joined and then left again,
|
|
|
|
# ideally we would share history up to the point they left. But
|
2018-06-22 11:35:10 -04:00
|
|
|
# we don't know when they left.
|
|
|
|
return not is_peeking
|
2016-05-11 08:42:37 -04:00
|
|
|
|
2018-06-22 11:35:10 -04:00
|
|
|
defer.returnValue(list(filter(allowed, events)))
|