summary refs log tree commit diff
path: root/synapse/federation/pdu_codec.py
blob: cef61108dd77922440b19737ebe50037b99cebb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# -*- coding: utf-8 -*-
# Copyright 2014 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.

from .units import Pdu

import copy


def decode_event_id(event_id, server_name):
    parts = event_id.split("@")
    if len(parts) < 2:
        return (event_id, server_name)
    else:
        return (parts[0], "".join(parts[1:]))


def encode_event_id(pdu_id, origin):
    return "%s@%s" % (pdu_id, origin)


class PduCodec(object):

    def __init__(self, hs):
        self.server_name = hs.hostname
        self.event_factory = hs.get_event_factory()
        self.clock = hs.get_clock()

    def event_from_pdu(self, pdu):
        kwargs = {}

        kwargs["event_id"] = encode_event_id(pdu.pdu_id, pdu.origin)
        kwargs["room_id"] = pdu.context
        kwargs["etype"] = pdu.pdu_type
        kwargs["prev_events"] = [
            encode_event_id(p[0], p[1]) for p in pdu.prev_pdus
        ]

        if hasattr(pdu, "prev_state_id") and hasattr(pdu, "prev_state_origin"):
            kwargs["prev_state"] = encode_event_id(
                pdu.prev_state_id, pdu.prev_state_origin
            )

        kwargs.update({
            k: v
            for k, v in pdu.get_full_dict().items()
            if k not in [
                "pdu_id",
                "context",
                "pdu_type",
                "prev_pdus",
                "prev_state_id",
                "prev_state_origin",
            ]
        })

        return self.event_factory.create_event(**kwargs)

    def pdu_from_event(self, event):
        d = event.get_full_dict()

        d["pdu_id"], d["origin"] = decode_event_id(
            event.event_id, self.server_name
        )
        d["context"] = event.room_id
        d["pdu_type"] = event.type

        if hasattr(event, "prev_events"):
            d["prev_pdus"] = [
                decode_event_id(e, self.server_name)
                for e in event.prev_events
            ]

        if hasattr(event, "prev_state"):
            d["prev_state_id"], d["prev_state_origin"] = (
                decode_event_id(event.prev_state, self.server_name)
            )

        if hasattr(event, "state_key"):
            d["is_state"] = True

        kwargs = copy.deepcopy(event.unrecognized_keys)
        kwargs.update({
            k: v for k, v in d.items()
            if k not in ["event_id", "room_id", "type", "prev_events"]
        })

        if "ts" not in kwargs:
            kwargs["ts"] = int(self.clock.time_msec())

        return Pdu(**kwargs)