2014-12-03 11:07:21 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-12-03 11:07:21 -05:00
|
|
|
#
|
|
|
|
# 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.
|
2020-07-20 13:33:04 -04:00
|
|
|
import collections.abc
|
2018-07-09 02:09:20 -04:00
|
|
|
import re
|
2020-05-14 13:24:01 -04:00
|
|
|
from typing import Any, Mapping, Union
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2016-11-21 12:52:45 -05:00
|
|
|
from frozendict import frozendict
|
|
|
|
|
2019-05-14 11:59:21 -04:00
|
|
|
from synapse.api.constants import EventTypes, RelationTypes
|
2020-05-14 13:24:01 -04:00
|
|
|
from synapse.api.errors import Codes, SynapseError
|
2020-03-09 08:58:25 -04:00
|
|
|
from synapse.api.room_versions import RoomVersion
|
2019-05-09 08:21:57 -04:00
|
|
|
from synapse.util.async_helpers import yieldable_gather_results
|
2016-11-21 12:42:16 -05:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from . import EventBase
|
2018-04-15 15:43:35 -04:00
|
|
|
|
2016-11-21 12:42:16 -05:00
|
|
|
# Split strings on "." but not "\." This uses a negative lookbehind assertion for '\'
|
|
|
|
# (?<!stuff) matches if the current position in the string is not preceded
|
|
|
|
# by a match for 'stuff'.
|
|
|
|
# TODO: This is fast, but fails to handle "foo\\.bar" which should be treated as
|
|
|
|
# the literal fields "foo\" and "bar" but will instead be treated as "foo\\.bar"
|
|
|
|
SPLIT_FIELD_REGEX = re.compile(r"(?<!\\)\.")
|
|
|
|
|
2014-12-03 11:07:21 -05:00
|
|
|
|
2020-03-05 10:46:44 -05:00
|
|
|
def prune_event(event: EventBase) -> EventBase:
|
2014-12-03 11:07:21 -05:00
|
|
|
"""Returns a pruned version of the given event, which removes all keys we
|
|
|
|
don't know about or think could potentially be dodgy.
|
|
|
|
|
|
|
|
This is used when we "redact" an event. We want to remove all fields that
|
|
|
|
the user has specified, but we do want to keep necessary information like
|
|
|
|
type, state_key etc.
|
2019-01-28 11:42:10 -05:00
|
|
|
"""
|
2020-03-09 08:58:25 -04:00
|
|
|
pruned_event_dict = prune_event_dict(event.room_version, event.get_dict())
|
2019-01-28 11:42:10 -05:00
|
|
|
|
2020-03-05 10:46:44 -05:00
|
|
|
from . import make_event_from_dict
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2020-03-05 10:46:44 -05:00
|
|
|
pruned_event = make_event_from_dict(
|
|
|
|
pruned_event_dict, event.room_version, event.internal_metadata.get_dict()
|
2019-01-28 11:42:10 -05:00
|
|
|
)
|
|
|
|
|
2020-10-05 09:43:14 -04:00
|
|
|
# copy the internal fields
|
|
|
|
pruned_event.internal_metadata.stream_ordering = (
|
|
|
|
event.internal_metadata.stream_ordering
|
|
|
|
)
|
|
|
|
|
2019-07-18 09:41:42 -04:00
|
|
|
# Mark the event as redacted
|
|
|
|
pruned_event.internal_metadata.redacted = True
|
|
|
|
|
|
|
|
return pruned_event
|
|
|
|
|
2019-01-28 11:42:10 -05:00
|
|
|
|
2020-03-09 08:58:25 -04:00
|
|
|
def prune_event_dict(room_version: RoomVersion, event_dict: dict) -> dict:
|
2019-01-28 11:42:10 -05:00
|
|
|
"""Redacts the event_dict in the same way as `prune_event`, except it
|
|
|
|
operates on dicts rather than event objects
|
|
|
|
|
|
|
|
Returns:
|
2020-03-09 08:58:25 -04:00
|
|
|
A copy of the pruned event dict
|
2014-12-03 11:07:21 -05:00
|
|
|
"""
|
|
|
|
|
|
|
|
allowed_keys = [
|
|
|
|
"event_id",
|
|
|
|
"sender",
|
|
|
|
"room_id",
|
|
|
|
"hashes",
|
|
|
|
"signatures",
|
|
|
|
"content",
|
|
|
|
"type",
|
|
|
|
"state_key",
|
|
|
|
"depth",
|
|
|
|
"prev_events",
|
|
|
|
"auth_events",
|
|
|
|
"origin",
|
|
|
|
"origin_server_ts",
|
|
|
|
]
|
|
|
|
|
2021-01-05 07:41:48 -05:00
|
|
|
# Room versions from before MSC2176 had additional allowed keys.
|
|
|
|
if not room_version.msc2176_redaction_rules:
|
|
|
|
allowed_keys.extend(["prev_state", "membership"])
|
|
|
|
|
2019-01-28 11:42:10 -05:00
|
|
|
event_type = event_dict["type"]
|
2015-01-29 11:50:23 -05:00
|
|
|
|
2014-12-03 11:07:21 -05:00
|
|
|
new_content = {}
|
|
|
|
|
|
|
|
def add_fields(*fields):
|
|
|
|
for field in fields:
|
2019-01-28 11:42:10 -05:00
|
|
|
if field in event_dict["content"]:
|
2015-01-29 11:50:23 -05:00
|
|
|
new_content[field] = event_dict["content"][field]
|
2014-12-03 11:07:21 -05:00
|
|
|
|
|
|
|
if event_type == EventTypes.Member:
|
|
|
|
add_fields("membership")
|
|
|
|
elif event_type == EventTypes.Create:
|
2021-01-05 07:41:48 -05:00
|
|
|
# MSC2176 rules state that create events cannot be redacted.
|
|
|
|
if room_version.msc2176_redaction_rules:
|
|
|
|
return event_dict
|
|
|
|
|
2014-12-03 11:07:21 -05:00
|
|
|
add_fields("creator")
|
|
|
|
elif event_type == EventTypes.JoinRules:
|
|
|
|
add_fields("join_rule")
|
|
|
|
elif event_type == EventTypes.PowerLevels:
|
|
|
|
add_fields(
|
|
|
|
"users",
|
|
|
|
"users_default",
|
|
|
|
"events",
|
|
|
|
"events_default",
|
|
|
|
"state_default",
|
|
|
|
"ban",
|
|
|
|
"kick",
|
|
|
|
"redact",
|
|
|
|
)
|
2021-01-05 07:41:48 -05:00
|
|
|
|
|
|
|
if room_version.msc2176_redaction_rules:
|
|
|
|
add_fields("invite")
|
|
|
|
|
2020-03-09 08:58:25 -04:00
|
|
|
elif event_type == EventTypes.Aliases and room_version.special_case_aliases_auth:
|
2014-12-03 11:07:21 -05:00
|
|
|
add_fields("aliases")
|
2015-07-03 05:31:17 -04:00
|
|
|
elif event_type == EventTypes.RoomHistoryVisibility:
|
2015-07-06 08:05:52 -04:00
|
|
|
add_fields("history_visibility")
|
2021-01-05 07:41:48 -05:00
|
|
|
elif event_type == EventTypes.Redaction and room_version.msc2176_redaction_rules:
|
|
|
|
add_fields("redacts")
|
2014-12-03 11:07:21 -05:00
|
|
|
|
2015-01-29 11:50:23 -05:00
|
|
|
allowed_fields = {k: v for k, v in event_dict.items() if k in allowed_keys}
|
2014-12-03 11:07:21 -05:00
|
|
|
|
|
|
|
allowed_fields["content"] = new_content
|
|
|
|
|
2019-01-28 11:42:10 -05:00
|
|
|
unsigned = {}
|
|
|
|
allowed_fields["unsigned"] = unsigned
|
2014-12-11 08:25:19 -05:00
|
|
|
|
2019-01-28 11:42:10 -05:00
|
|
|
event_unsigned = event_dict.get("unsigned", {})
|
2014-12-11 08:25:19 -05:00
|
|
|
|
2019-01-28 11:42:10 -05:00
|
|
|
if "age_ts" in event_unsigned:
|
|
|
|
unsigned["age_ts"] = event_unsigned["age_ts"]
|
|
|
|
if "replaces_state" in event_unsigned:
|
|
|
|
unsigned["replaces_state"] = event_unsigned["replaces_state"]
|
|
|
|
|
|
|
|
return allowed_fields
|
2014-12-05 11:20:48 -05:00
|
|
|
|
|
|
|
|
2016-11-21 12:42:16 -05:00
|
|
|
def _copy_field(src, dst, field):
|
|
|
|
"""Copy the field in 'src' to 'dst'.
|
|
|
|
|
|
|
|
For example, if src={"foo":{"bar":5}} and dst={}, and field=["foo","bar"]
|
|
|
|
then dst={"foo":{"bar":5}}.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
src(dict): The dict to read from.
|
|
|
|
dst(dict): The dict to modify.
|
|
|
|
field(list<str>): List of keys to drill down to in 'src'.
|
|
|
|
"""
|
|
|
|
if len(field) == 0: # this should be impossible
|
|
|
|
return
|
|
|
|
if len(field) == 1: # common case e.g. 'origin_server_ts'
|
|
|
|
if field[0] in src:
|
|
|
|
dst[field[0]] = src[field[0]]
|
|
|
|
return
|
|
|
|
|
|
|
|
# Else is a nested field e.g. 'content.body'
|
|
|
|
# Pop the last field as that's the key to move across and we need the
|
|
|
|
# parent dict in order to access the data. Drill down to the right dict.
|
|
|
|
key_to_move = field.pop(-1)
|
|
|
|
sub_dict = src
|
|
|
|
for sub_field in field: # e.g. sub_field => "content"
|
2016-11-22 05:39:41 -05:00
|
|
|
if sub_field in sub_dict and type(sub_dict[sub_field]) in [dict, frozendict]:
|
2016-11-21 12:42:16 -05:00
|
|
|
sub_dict = sub_dict[sub_field]
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
|
|
|
|
if key_to_move not in sub_dict:
|
|
|
|
return
|
|
|
|
|
|
|
|
# Insert the key into the output dictionary, creating nested objects
|
|
|
|
# as required. We couldn't do this any earlier or else we'd need to delete
|
|
|
|
# the empty objects if the key didn't exist.
|
|
|
|
sub_out_dict = dst
|
|
|
|
for sub_field in field:
|
2016-11-22 08:42:11 -05:00
|
|
|
sub_out_dict = sub_out_dict.setdefault(sub_field, {})
|
2016-11-21 12:42:16 -05:00
|
|
|
sub_out_dict[key_to_move] = sub_dict[key_to_move]
|
|
|
|
|
|
|
|
|
|
|
|
def only_fields(dictionary, fields):
|
|
|
|
"""Return a new dict with only the fields in 'dictionary' which are present
|
|
|
|
in 'fields'.
|
|
|
|
|
|
|
|
If there are no event fields specified then all fields are included.
|
2020-10-23 12:38:40 -04:00
|
|
|
The entries may include '.' characters to indicate sub-fields.
|
2016-11-21 12:42:16 -05:00
|
|
|
So ['content.body'] will include the 'body' field of the 'content' object.
|
|
|
|
A literal '.' character in a field name may be escaped using a '\'.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
dictionary(dict): The dictionary to read from.
|
|
|
|
fields(list<str>): A list of fields to copy over. Only shallow refs are
|
|
|
|
taken.
|
|
|
|
Returns:
|
|
|
|
dict: A new dictionary with only the given fields. If fields was empty,
|
|
|
|
the same dictionary is returned.
|
|
|
|
"""
|
|
|
|
if len(fields) == 0:
|
|
|
|
return dictionary
|
|
|
|
|
|
|
|
# for each field, convert it:
|
|
|
|
# ["content.body.thing\.with\.dots"] => [["content", "body", "thing\.with\.dots"]]
|
|
|
|
split_fields = [SPLIT_FIELD_REGEX.split(f) for f in fields]
|
|
|
|
|
|
|
|
# for each element of the output array of arrays:
|
2016-11-22 08:42:11 -05:00
|
|
|
# remove escaping so we can use the right key names.
|
|
|
|
split_fields[:] = [
|
|
|
|
[f.replace(r"\.", r".") for f in field_array] for field_array in split_fields
|
|
|
|
]
|
2016-11-21 12:42:16 -05:00
|
|
|
|
|
|
|
output = {}
|
|
|
|
for field_array in split_fields:
|
|
|
|
_copy_field(dictionary, output, field_array)
|
|
|
|
return output
|
|
|
|
|
|
|
|
|
2015-01-28 21:34:35 -05:00
|
|
|
def format_event_raw(d):
|
|
|
|
return d
|
|
|
|
|
|
|
|
|
|
|
|
def format_event_for_client_v1(d):
|
2015-11-30 12:46:35 -05:00
|
|
|
d = format_event_for_client_v2(d)
|
|
|
|
|
2015-12-01 06:14:48 -05:00
|
|
|
sender = d.get("sender")
|
|
|
|
if sender is not None:
|
|
|
|
d["user_id"] = sender
|
2015-01-28 21:34:35 -05:00
|
|
|
|
2015-11-30 12:46:35 -05:00
|
|
|
copy_keys = (
|
2015-09-10 09:25:54 -04:00
|
|
|
"age",
|
|
|
|
"redacted_because",
|
|
|
|
"replaces_state",
|
|
|
|
"prev_content",
|
|
|
|
"invite_room_state",
|
|
|
|
)
|
2015-11-30 12:46:35 -05:00
|
|
|
for key in copy_keys:
|
2015-01-28 21:34:35 -05:00
|
|
|
if key in d["unsigned"]:
|
|
|
|
d[key] = d["unsigned"][key]
|
|
|
|
|
|
|
|
return d
|
|
|
|
|
|
|
|
|
|
|
|
def format_event_for_client_v2(d):
|
|
|
|
drop_keys = (
|
2015-01-28 21:45:33 -05:00
|
|
|
"auth_events",
|
|
|
|
"prev_events",
|
|
|
|
"hashes",
|
|
|
|
"signatures",
|
|
|
|
"depth",
|
|
|
|
"origin",
|
|
|
|
"prev_state",
|
2015-01-28 21:34:35 -05:00
|
|
|
)
|
|
|
|
for key in drop_keys:
|
|
|
|
d.pop(key, None)
|
|
|
|
return d
|
|
|
|
|
|
|
|
|
2015-11-12 05:33:19 -05:00
|
|
|
def format_event_for_client_v2_without_room_id(d):
|
2015-01-28 21:34:35 -05:00
|
|
|
d = format_event_for_client_v2(d)
|
|
|
|
d.pop("room_id", None)
|
|
|
|
return d
|
|
|
|
|
|
|
|
|
|
|
|
def serialize_event(
|
|
|
|
e,
|
|
|
|
time_now_ms,
|
|
|
|
as_client_event=True,
|
|
|
|
event_format=format_event_for_client_v1,
|
2017-04-26 11:18:08 -04:00
|
|
|
token_id=None,
|
|
|
|
only_event_fields=None,
|
|
|
|
is_invite=False,
|
|
|
|
):
|
|
|
|
"""Serialize event for clients
|
|
|
|
|
|
|
|
Args:
|
|
|
|
e (EventBase)
|
|
|
|
time_now_ms (int)
|
|
|
|
as_client_event (bool)
|
|
|
|
event_format
|
|
|
|
token_id
|
|
|
|
only_event_fields
|
|
|
|
is_invite (bool): Whether this is an invite that is being sent to the
|
|
|
|
invitee
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
dict
|
|
|
|
"""
|
2019-01-29 12:26:24 -05:00
|
|
|
|
2014-12-05 11:20:48 -05:00
|
|
|
# FIXME(erikj): To handle the case of presence events and the like
|
|
|
|
if not isinstance(e, EventBase):
|
|
|
|
return e
|
|
|
|
|
2015-01-26 11:11:28 -05:00
|
|
|
time_now_ms = int(time_now_ms)
|
|
|
|
|
2014-12-05 11:20:48 -05:00
|
|
|
# Should this strip out None's?
|
|
|
|
d = {k: v for k, v in e.get_dict().items()}
|
2015-01-08 09:27:04 -05:00
|
|
|
|
2019-01-29 12:26:24 -05:00
|
|
|
d["event_id"] = e.event_id
|
|
|
|
|
2014-12-05 11:20:48 -05:00
|
|
|
if "age_ts" in d["unsigned"]:
|
2015-01-28 21:34:35 -05:00
|
|
|
d["unsigned"]["age"] = time_now_ms - d["unsigned"]["age_ts"]
|
2015-01-28 21:45:33 -05:00
|
|
|
del d["unsigned"]["age_ts"]
|
2014-12-08 04:08:26 -05:00
|
|
|
|
2014-12-11 08:25:19 -05:00
|
|
|
if "redacted_because" in e.unsigned:
|
2015-01-28 21:34:35 -05:00
|
|
|
d["unsigned"]["redacted_because"] = serialize_event(
|
2015-10-30 07:15:37 -04:00
|
|
|
e.unsigned["redacted_because"], time_now_ms, event_format=event_format
|
2014-12-11 08:25:19 -05:00
|
|
|
)
|
|
|
|
|
2015-01-28 21:34:35 -05:00
|
|
|
if token_id is not None:
|
2015-01-28 21:45:33 -05:00
|
|
|
if token_id == getattr(e.internal_metadata, "token_id", None):
|
|
|
|
txn_id = getattr(e.internal_metadata, "txn_id", None)
|
2015-01-28 21:34:35 -05:00
|
|
|
if txn_id is not None:
|
|
|
|
d["unsigned"]["transaction_id"] = txn_id
|
2014-12-11 08:25:19 -05:00
|
|
|
|
2017-04-27 12:25:44 -04:00
|
|
|
# If this is an invite for somebody else, then we don't care about the
|
|
|
|
# invite_room_state as that's meant solely for the invitee. Other clients
|
|
|
|
# will already have the state since they're in the room.
|
2017-04-26 11:23:30 -04:00
|
|
|
if not is_invite:
|
|
|
|
d["unsigned"].pop("invite_room_state", None)
|
|
|
|
|
2015-01-28 21:34:35 -05:00
|
|
|
if as_client_event:
|
2016-11-21 12:42:16 -05:00
|
|
|
d = event_format(d)
|
|
|
|
|
2016-11-22 08:42:11 -05:00
|
|
|
if only_event_fields:
|
|
|
|
if not isinstance(only_event_fields, list) or not all(
|
2020-06-16 08:51:47 -04:00
|
|
|
isinstance(f, str) for f in only_event_fields
|
2018-04-15 15:43:35 -04:00
|
|
|
):
|
2016-11-22 08:42:11 -05:00
|
|
|
raise TypeError("only_event_fields must be a list of strings")
|
2016-11-22 04:59:27 -05:00
|
|
|
d = only_fields(d, only_event_fields)
|
2016-11-21 12:42:16 -05:00
|
|
|
|
|
|
|
return d
|
2019-05-09 08:21:57 -04:00
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class EventClientSerializer:
|
2019-05-09 08:21:57 -04:00
|
|
|
"""Serializes events that are to be sent to clients.
|
|
|
|
|
|
|
|
This is used for bundling extra information with any events to be sent to
|
|
|
|
clients.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, hs):
|
2019-05-14 11:59:21 -04:00
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.experimental_msc1849_support_enabled = (
|
|
|
|
hs.config.experimental_msc1849_support_enabled
|
|
|
|
)
|
2019-05-09 08:21:57 -04:00
|
|
|
|
2020-07-27 13:40:22 -04:00
|
|
|
async def serialize_event(
|
|
|
|
self, event, time_now, bundle_aggregations=True, **kwargs
|
|
|
|
):
|
2019-05-09 08:21:57 -04:00
|
|
|
"""Serializes a single event.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event (EventBase)
|
|
|
|
time_now (int): The current time in milliseconds
|
2019-05-21 08:54:09 -04:00
|
|
|
bundle_aggregations (bool): Whether to bundle in related events
|
2019-05-09 08:21:57 -04:00
|
|
|
**kwargs: Arguments to pass to `serialize_event`
|
|
|
|
|
|
|
|
Returns:
|
2020-07-27 13:40:22 -04:00
|
|
|
dict: The serialized event
|
2019-05-09 08:21:57 -04:00
|
|
|
"""
|
2019-05-14 11:59:21 -04:00
|
|
|
# To handle the case of presence events and the like
|
|
|
|
if not isinstance(event, EventBase):
|
2019-07-23 09:00:55 -04:00
|
|
|
return event
|
2019-05-14 11:59:21 -04:00
|
|
|
|
|
|
|
event_id = event.event_id
|
2019-05-14 11:59:21 -04:00
|
|
|
serialized_event = serialize_event(event, time_now, **kwargs)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-07-18 09:41:42 -04:00
|
|
|
# If MSC1849 is enabled then we need to look if there are any relations
|
|
|
|
# we need to bundle in with the event.
|
|
|
|
# Do not bundle relations if the event has been redacted
|
|
|
|
if not event.internal_metadata.is_redacted() and (
|
|
|
|
self.experimental_msc1849_support_enabled and bundle_aggregations
|
|
|
|
):
|
2020-07-27 13:40:22 -04:00
|
|
|
annotations = await self.store.get_aggregation_groups_for_event(event_id)
|
|
|
|
references = await self.store.get_relations_for_event(
|
2019-05-20 09:31:19 -04:00
|
|
|
event_id, RelationTypes.REFERENCE, direction="f"
|
2019-05-14 11:59:21 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if annotations.chunk:
|
2019-05-14 11:59:21 -04:00
|
|
|
r = serialized_event["unsigned"].setdefault("m.relations", {})
|
2019-05-14 11:59:21 -04:00
|
|
|
r[RelationTypes.ANNOTATION] = annotations.to_dict()
|
|
|
|
|
|
|
|
if references.chunk:
|
2019-05-14 11:59:21 -04:00
|
|
|
r = serialized_event["unsigned"].setdefault("m.relations", {})
|
2019-05-20 09:31:19 -04:00
|
|
|
r[RelationTypes.REFERENCE] = references.to_dict()
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-05-14 11:59:21 -04:00
|
|
|
edit = None
|
|
|
|
if event.type == EventTypes.Message:
|
2020-07-27 13:40:22 -04:00
|
|
|
edit = await self.store.get_applicable_edit(event_id)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
|
|
|
if edit:
|
|
|
|
# If there is an edit replace the content, preserving existing
|
|
|
|
# relations.
|
|
|
|
|
|
|
|
relations = event.content.get("m.relates_to")
|
|
|
|
serialized_event["content"] = edit.content.get("m.new_content", {})
|
|
|
|
if relations:
|
|
|
|
serialized_event["content"]["m.relates_to"] = relations
|
|
|
|
else:
|
|
|
|
serialized_event["content"].pop("m.relates_to", None)
|
|
|
|
|
|
|
|
r = serialized_event["unsigned"].setdefault("m.relations", {})
|
2019-07-05 12:20:02 -04:00
|
|
|
r[RelationTypes.REPLACE] = {
|
|
|
|
"event_id": edit.event_id,
|
|
|
|
"origin_server_ts": edit.origin_server_ts,
|
|
|
|
"sender": edit.sender,
|
|
|
|
}
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return serialized_event
|
2019-05-09 08:21:57 -04:00
|
|
|
|
|
|
|
def serialize_events(self, events, time_now, **kwargs):
|
|
|
|
"""Serializes multiple events.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event (iter[EventBase])
|
|
|
|
time_now (int): The current time in milliseconds
|
|
|
|
**kwargs: Arguments to pass to `serialize_event`
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred[list[dict]]: The list of serialized events
|
|
|
|
"""
|
|
|
|
return yieldable_gather_results(
|
|
|
|
self.serialize_event, events, time_now=time_now, **kwargs
|
|
|
|
)
|
2020-01-28 06:02:55 -05:00
|
|
|
|
|
|
|
|
|
|
|
def copy_power_levels_contents(
|
|
|
|
old_power_levels: Mapping[str, Union[int, Mapping[str, int]]]
|
|
|
|
):
|
|
|
|
"""Copy the content of a power_levels event, unfreezing frozendicts along the way
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
TypeError if the input does not look like a valid power levels event content
|
|
|
|
"""
|
2020-07-20 13:33:04 -04:00
|
|
|
if not isinstance(old_power_levels, collections.abc.Mapping):
|
2020-01-28 06:02:55 -05:00
|
|
|
raise TypeError("Not a valid power-levels content: %r" % (old_power_levels,))
|
|
|
|
|
|
|
|
power_levels = {}
|
|
|
|
for k, v in old_power_levels.items():
|
|
|
|
|
|
|
|
if isinstance(v, int):
|
|
|
|
power_levels[k] = v
|
|
|
|
continue
|
|
|
|
|
2020-07-20 13:33:04 -04:00
|
|
|
if isinstance(v, collections.abc.Mapping):
|
2020-01-28 06:02:55 -05:00
|
|
|
power_levels[k] = h = {}
|
|
|
|
for k1, v1 in v.items():
|
|
|
|
# we should only have one level of nesting
|
|
|
|
if not isinstance(v1, int):
|
|
|
|
raise TypeError(
|
2020-01-28 06:08:38 -05:00
|
|
|
"Invalid power_levels value for %s.%s: %r" % (k, k1, v1)
|
2020-01-28 06:02:55 -05:00
|
|
|
)
|
|
|
|
h[k1] = v1
|
|
|
|
continue
|
|
|
|
|
|
|
|
raise TypeError("Invalid power_levels value for %s: %r" % (k, v))
|
|
|
|
|
|
|
|
return power_levels
|
2020-05-14 13:24:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
def validate_canonicaljson(value: Any):
|
|
|
|
"""
|
|
|
|
Ensure that the JSON object is valid according to the rules of canonical JSON.
|
|
|
|
|
|
|
|
See the appendix section 3.1: Canonical JSON.
|
|
|
|
|
|
|
|
This rejects JSON that has:
|
|
|
|
* An integer outside the range of [-2 ^ 53 + 1, 2 ^ 53 - 1]
|
|
|
|
* Floats
|
|
|
|
* NaN, Infinity, -Infinity
|
|
|
|
"""
|
|
|
|
if isinstance(value, int):
|
|
|
|
if value <= -(2 ** 53) or 2 ** 53 <= value:
|
|
|
|
raise SynapseError(400, "JSON integer out of range", Codes.BAD_JSON)
|
|
|
|
|
|
|
|
elif isinstance(value, float):
|
|
|
|
# Note that Infinity, -Infinity, and NaN are also considered floats.
|
|
|
|
raise SynapseError(400, "Bad JSON value: float", Codes.BAD_JSON)
|
|
|
|
|
|
|
|
elif isinstance(value, (dict, frozendict)):
|
|
|
|
for v in value.values():
|
|
|
|
validate_canonicaljson(v)
|
|
|
|
|
|
|
|
elif isinstance(value, (list, tuple)):
|
|
|
|
for i in value:
|
|
|
|
validate_canonicaljson(i)
|
|
|
|
|
|
|
|
elif not isinstance(value, (bool, str)) and value is not None:
|
|
|
|
# Other potential JSON values (bool, None, str) are safe.
|
|
|
|
raise SynapseError(400, "Unknown JSON value", Codes.BAD_JSON)
|