summary refs log tree commit diff
path: root/synapse/federation/pdu_codec.py
blob: 6d31286290158a291a98b5abe31ca7ec61a1c4ea (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
103
104
105
106
107
108
109
# -*- 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
from synapse.crypto.event_signing import (
    add_event_pdu_content_hash, sign_event_pdu
)
from synapse.types import EventID

import copy


class PduCodec(object):

    def __init__(self, hs):
        self.signing_key = hs.config.signing_key[0]
        self.server_name = hs.hostname
        self.event_factory = hs.get_event_factory()
        self.clock = hs.get_clock()
        self.hs = hs

    def encode_event_id(self, local, domain):
        return EventID.create(local, domain, self.hs).to_string()

    def decode_event_id(self, event_id):
        e_id = self.hs.parse_eventid(event_id)
        return e_id.localpart, e_id.domain

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

        kwargs["event_id"] = self.encode_event_id(pdu.pdu_id, pdu.origin)
        kwargs["room_id"] = pdu.context
        kwargs["etype"] = pdu.pdu_type
        kwargs["prev_events"] = [
            (self.encode_event_id(i, o), s)
            for i, o, s in pdu.prev_pdus
        ]

        if hasattr(pdu, "prev_state_id") and hasattr(pdu, "prev_state_origin"):
            kwargs["prev_state"] = self.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"] = self.decode_event_id(
            event.event_id
        )
        d["context"] = event.room_id
        d["pdu_type"] = event.type

        if hasattr(event, "prev_events"):
            def f(e, s):
                i, o = self.decode_event_id(e)
                return i, o, s
            d["prev_pdus"] = [
                f(e, s)
                for e, s in event.prev_events
            ]

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

        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 "origin_server_ts" not in kwargs:
            kwargs["origin_server_ts"] = int(self.clock.time_msec())

        pdu = Pdu(**kwargs)
        pdu = add_event_pdu_content_hash(pdu)
        return sign_event_pdu(pdu, self.server_name, self.signing_key)