2015-03-20 09:52:56 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2014, 2015 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 _base import SQLBaseStore, _RollbackButIsFineException
|
|
|
|
|
|
|
|
from twisted.internet import defer
|
|
|
|
|
|
|
|
from synapse.util.logutils import log_function
|
|
|
|
from synapse.api.constants import EventTypes
|
|
|
|
from synapse.crypto.event_signing import compute_event_reference_hash
|
|
|
|
|
|
|
|
from syutil.base64util import decode_base64
|
|
|
|
from syutil.jsonutil import encode_canonical_json
|
2015-05-12 06:20:40 -04:00
|
|
|
from contextlib import contextmanager
|
2015-03-20 09:52:56 -04:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class EventsStore(SQLBaseStore):
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
@log_function
|
|
|
|
def persist_event(self, event, context, backfilled=False,
|
|
|
|
is_new_state=True, current_state=None):
|
|
|
|
stream_ordering = None
|
|
|
|
if backfilled:
|
|
|
|
if not self.min_token_deferred.called:
|
|
|
|
yield self.min_token_deferred
|
|
|
|
self.min_token -= 1
|
|
|
|
stream_ordering = self.min_token
|
|
|
|
|
2015-05-12 06:20:40 -04:00
|
|
|
if stream_ordering is None:
|
|
|
|
stream_ordering_manager = yield self._stream_id_gen.get_next(self)
|
|
|
|
else:
|
|
|
|
@contextmanager
|
|
|
|
def stream_ordering_manager():
|
|
|
|
yield stream_ordering
|
2015-05-12 11:12:37 -04:00
|
|
|
stream_ordering_manager = stream_ordering_manager()
|
2015-05-12 06:20:40 -04:00
|
|
|
|
2015-03-20 09:52:56 -04:00
|
|
|
try:
|
2015-05-12 06:20:40 -04:00
|
|
|
with stream_ordering_manager as stream_ordering:
|
|
|
|
yield self.runInteraction(
|
|
|
|
"persist_event",
|
|
|
|
self._persist_event_txn,
|
|
|
|
event=event,
|
|
|
|
context=context,
|
|
|
|
backfilled=backfilled,
|
|
|
|
stream_ordering=stream_ordering,
|
|
|
|
is_new_state=is_new_state,
|
|
|
|
current_state=current_state,
|
|
|
|
)
|
2015-03-20 09:52:56 -04:00
|
|
|
except _RollbackButIsFineException:
|
|
|
|
pass
|
|
|
|
|
2015-05-13 08:42:21 -04:00
|
|
|
max_persisted_id = yield self._stream_id_gen.get_max_token(self)
|
|
|
|
defer.returnValue((stream_ordering, max_persisted_id))
|
|
|
|
|
2015-03-20 09:52:56 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_event(self, event_id, check_redacted=True,
|
|
|
|
get_prev_content=False, allow_rejected=False,
|
|
|
|
allow_none=False):
|
|
|
|
"""Get an event from the database by event_id.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event_id (str): The event_id of the event to fetch
|
|
|
|
check_redacted (bool): If True, check if event has been redacted
|
|
|
|
and redact it.
|
|
|
|
get_prev_content (bool): If True and event is a state event,
|
|
|
|
include the previous states content in the unsigned field.
|
|
|
|
allow_rejected (bool): If True return rejected events.
|
|
|
|
allow_none (bool): If True, return None if no event found, if
|
|
|
|
False throw an exception.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred : A FrozenEvent.
|
|
|
|
"""
|
|
|
|
event = yield self.runInteraction(
|
|
|
|
"get_event", self._get_event_txn,
|
|
|
|
event_id,
|
|
|
|
check_redacted=check_redacted,
|
|
|
|
get_prev_content=get_prev_content,
|
|
|
|
allow_rejected=allow_rejected,
|
|
|
|
)
|
|
|
|
|
|
|
|
if not event and not allow_none:
|
|
|
|
raise RuntimeError("Could not find event %s" % (event_id,))
|
|
|
|
|
|
|
|
defer.returnValue(event)
|
|
|
|
|
|
|
|
@log_function
|
|
|
|
def _persist_event_txn(self, txn, event, context, backfilled,
|
|
|
|
stream_ordering=None, is_new_state=True,
|
|
|
|
current_state=None):
|
|
|
|
|
|
|
|
# Remove the any existing cache entries for the event_id
|
2015-05-05 12:32:21 -04:00
|
|
|
txn.call_after(self._invalidate_get_event_cache, event.event_id)
|
2015-03-20 09:52:56 -04:00
|
|
|
|
|
|
|
# We purposefully do this first since if we include a `current_state`
|
|
|
|
# key, we *want* to update the `current_state_events` table
|
|
|
|
if current_state:
|
2015-04-07 07:05:36 -04:00
|
|
|
self._simple_delete_txn(
|
|
|
|
txn,
|
|
|
|
table="current_state_events",
|
|
|
|
keyvalues={"room_id": event.room_id},
|
2015-03-20 09:52:56 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
for s in current_state:
|
2015-05-05 10:43:49 -04:00
|
|
|
if s.type == EventTypes.Member:
|
2015-05-05 12:32:21 -04:00
|
|
|
txn.call_after(
|
|
|
|
self.get_rooms_for_user.invalidate, s.state_key
|
|
|
|
)
|
|
|
|
txn.call_after(
|
|
|
|
self.get_joined_hosts_for_room.invalidate, s.room_id
|
|
|
|
)
|
2015-03-20 09:52:56 -04:00
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
"current_state_events",
|
|
|
|
{
|
|
|
|
"event_id": s.event_id,
|
|
|
|
"room_id": s.room_id,
|
|
|
|
"type": s.type,
|
|
|
|
"state_key": s.state_key,
|
2015-05-05 10:13:25 -04:00
|
|
|
}
|
2015-03-20 09:52:56 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
outlier = event.internal_metadata.is_outlier()
|
|
|
|
|
|
|
|
if not outlier:
|
|
|
|
self._update_min_depth_for_room_txn(
|
|
|
|
txn,
|
|
|
|
event.room_id,
|
|
|
|
event.depth
|
|
|
|
)
|
|
|
|
|
2015-05-12 09:14:58 -04:00
|
|
|
have_persisted = self._simple_select_one_txn(
|
2015-03-20 09:52:56 -04:00
|
|
|
txn,
|
2015-05-12 09:14:58 -04:00
|
|
|
table="events",
|
2015-03-20 09:52:56 -04:00
|
|
|
keyvalues={"event_id": event.event_id},
|
2015-05-12 09:14:58 -04:00
|
|
|
retcols=["event_id", "outlier"],
|
2015-03-20 09:52:56 -04:00
|
|
|
allow_none=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
metadata_json = encode_canonical_json(
|
|
|
|
event.internal_metadata.get_dict()
|
2015-04-16 06:17:52 -04:00
|
|
|
).decode("UTF-8")
|
2015-03-20 09:52:56 -04:00
|
|
|
|
|
|
|
# If we have already persisted this event, we don't need to do any
|
|
|
|
# more processing.
|
|
|
|
# The processing above must be done on every call to persist event,
|
|
|
|
# since they might not have happened on previous calls. For example,
|
|
|
|
# if we are persisting an event that we had persisted as an outlier,
|
|
|
|
# but is no longer one.
|
|
|
|
if have_persisted:
|
2015-05-12 09:14:58 -04:00
|
|
|
if not outlier and have_persisted["outlier"]:
|
|
|
|
self._store_state_groups_txn(txn, event, context)
|
|
|
|
|
2015-03-20 09:52:56 -04:00
|
|
|
sql = (
|
|
|
|
"UPDATE event_json SET internal_metadata = ?"
|
|
|
|
" WHERE event_id = ?"
|
|
|
|
)
|
|
|
|
txn.execute(
|
|
|
|
sql,
|
2015-04-16 06:17:52 -04:00
|
|
|
(metadata_json, event.event_id,)
|
2015-03-20 09:52:56 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
sql = (
|
2015-04-14 08:53:20 -04:00
|
|
|
"UPDATE events SET outlier = ?"
|
2015-03-20 09:52:56 -04:00
|
|
|
" WHERE event_id = ?"
|
|
|
|
)
|
|
|
|
txn.execute(
|
|
|
|
sql,
|
2015-04-14 08:53:20 -04:00
|
|
|
(False, event.event_id,)
|
2015-03-20 09:52:56 -04:00
|
|
|
)
|
|
|
|
return
|
|
|
|
|
2015-05-12 09:14:58 -04:00
|
|
|
if not outlier:
|
|
|
|
self._store_state_groups_txn(txn, event, context)
|
|
|
|
|
2015-03-24 12:20:26 -04:00
|
|
|
self._handle_prev_events(
|
|
|
|
txn,
|
|
|
|
outlier=outlier,
|
|
|
|
event_id=event.event_id,
|
|
|
|
prev_events=event.prev_events,
|
|
|
|
room_id=event.room_id,
|
|
|
|
)
|
|
|
|
|
2015-03-20 09:52:56 -04:00
|
|
|
if event.type == EventTypes.Member:
|
|
|
|
self._store_room_member_txn(txn, event)
|
|
|
|
elif event.type == EventTypes.Name:
|
|
|
|
self._store_room_name_txn(txn, event)
|
|
|
|
elif event.type == EventTypes.Topic:
|
|
|
|
self._store_room_topic_txn(txn, event)
|
|
|
|
elif event.type == EventTypes.Redaction:
|
|
|
|
self._store_redaction(txn, event)
|
|
|
|
|
|
|
|
event_dict = {
|
|
|
|
k: v
|
|
|
|
for k, v in event.get_dict().items()
|
|
|
|
if k not in [
|
|
|
|
"redacted",
|
|
|
|
"redacted_because",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
table="event_json",
|
|
|
|
values={
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
2015-04-16 06:17:52 -04:00
|
|
|
"internal_metadata": metadata_json,
|
|
|
|
"json": encode_canonical_json(event_dict).decode("UTF-8"),
|
2015-03-20 09:52:56 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2015-04-16 06:17:52 -04:00
|
|
|
content = encode_canonical_json(
|
2015-03-20 09:52:56 -04:00
|
|
|
event.content
|
2015-04-16 06:17:52 -04:00
|
|
|
).decode("UTF-8")
|
2015-03-20 09:52:56 -04:00
|
|
|
|
|
|
|
vals = {
|
|
|
|
"topological_ordering": event.depth,
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"type": event.type,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"content": content,
|
|
|
|
"processed": True,
|
|
|
|
"outlier": outlier,
|
|
|
|
"depth": event.depth,
|
|
|
|
}
|
|
|
|
|
|
|
|
unrec = {
|
|
|
|
k: v
|
|
|
|
for k, v in event.get_dict().items()
|
|
|
|
if k not in vals.keys() and k not in [
|
|
|
|
"redacted",
|
|
|
|
"redacted_because",
|
|
|
|
"signatures",
|
|
|
|
"hashes",
|
|
|
|
"prev_events",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2015-04-16 06:17:52 -04:00
|
|
|
vals["unrecognized_keys"] = encode_canonical_json(
|
2015-03-20 09:52:56 -04:00
|
|
|
unrec
|
2015-04-16 06:17:52 -04:00
|
|
|
).decode("UTF-8")
|
2015-03-20 09:52:56 -04:00
|
|
|
|
|
|
|
sql = (
|
|
|
|
"INSERT INTO events"
|
|
|
|
" (stream_ordering, topological_ordering, event_id, type,"
|
|
|
|
" room_id, content, processed, outlier, depth)"
|
2015-04-15 05:24:24 -04:00
|
|
|
" VALUES (?,?,?,?,?,?,?,?,?)"
|
|
|
|
)
|
2015-03-20 09:52:56 -04:00
|
|
|
|
|
|
|
txn.execute(
|
|
|
|
sql,
|
2015-04-15 05:24:24 -04:00
|
|
|
(
|
|
|
|
stream_ordering, event.depth, event.event_id, event.type,
|
|
|
|
event.room_id, content, True, outlier, event.depth
|
|
|
|
)
|
2015-03-20 09:52:56 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if context.rejected:
|
2015-05-05 09:57:08 -04:00
|
|
|
self._store_rejections_txn(
|
2015-05-05 12:32:21 -04:00
|
|
|
txn, event.event_id, context.rejected
|
2015-05-05 09:57:08 -04:00
|
|
|
)
|
2015-03-20 09:52:56 -04:00
|
|
|
|
2015-04-27 08:22:30 -04:00
|
|
|
for hash_alg, hash_base64 in event.hashes.items():
|
|
|
|
hash_bytes = decode_base64(hash_base64)
|
|
|
|
self._store_event_content_hash_txn(
|
|
|
|
txn, event.event_id, hash_alg, hash_bytes,
|
|
|
|
)
|
|
|
|
|
|
|
|
for prev_event_id, prev_hashes in event.prev_events:
|
|
|
|
for alg, hash_base64 in prev_hashes.items():
|
|
|
|
hash_bytes = decode_base64(hash_base64)
|
|
|
|
self._store_prev_event_hash_txn(
|
2015-05-05 12:32:21 -04:00
|
|
|
txn, event.event_id, prev_event_id, alg,
|
2015-05-05 09:57:08 -04:00
|
|
|
hash_bytes
|
2015-04-27 08:22:30 -04:00
|
|
|
)
|
|
|
|
|
2015-05-05 10:13:25 -04:00
|
|
|
self._simple_insert_many_txn(
|
|
|
|
txn,
|
|
|
|
table="event_auth",
|
|
|
|
values=[
|
|
|
|
{
|
2015-04-27 08:22:30 -04:00
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"auth_id": auth_id,
|
2015-05-05 10:13:25 -04:00
|
|
|
}
|
|
|
|
for auth_id, _ in event.auth_events
|
|
|
|
],
|
|
|
|
)
|
2015-04-27 08:22:30 -04:00
|
|
|
|
|
|
|
(ref_alg, ref_hash_bytes) = compute_event_reference_hash(event)
|
|
|
|
self._store_event_reference_hash_txn(
|
|
|
|
txn, event.event_id, ref_alg, ref_hash_bytes
|
|
|
|
)
|
|
|
|
|
2015-03-20 09:52:56 -04:00
|
|
|
if event.is_state():
|
|
|
|
vals = {
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"type": event.type,
|
|
|
|
"state_key": event.state_key,
|
|
|
|
}
|
|
|
|
|
|
|
|
# TODO: How does this work with backfilling?
|
|
|
|
if hasattr(event, "replaces_state"):
|
|
|
|
vals["prev_state"] = event.replaces_state
|
|
|
|
|
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
"state_events",
|
|
|
|
vals,
|
|
|
|
)
|
|
|
|
|
2015-05-05 10:13:25 -04:00
|
|
|
self._simple_insert_many_txn(
|
|
|
|
txn,
|
|
|
|
table="event_edges",
|
|
|
|
values=[
|
|
|
|
{
|
2015-03-20 09:52:56 -04:00
|
|
|
"event_id": event.event_id,
|
|
|
|
"prev_event_id": e_id,
|
|
|
|
"room_id": event.room_id,
|
2015-04-15 05:24:24 -04:00
|
|
|
"is_state": True,
|
2015-05-05 10:13:25 -04:00
|
|
|
}
|
|
|
|
for e_id, h in event.prev_state
|
|
|
|
],
|
|
|
|
)
|
2015-03-20 09:52:56 -04:00
|
|
|
|
2015-04-27 08:22:30 -04:00
|
|
|
if is_new_state and not context.rejected:
|
|
|
|
self._simple_upsert_txn(
|
|
|
|
txn,
|
|
|
|
"current_state_events",
|
|
|
|
keyvalues={
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"type": event.type,
|
|
|
|
"state_key": event.state_key,
|
|
|
|
},
|
|
|
|
values={
|
|
|
|
"event_id": event.event_id,
|
|
|
|
}
|
2015-03-20 09:52:56 -04:00
|
|
|
)
|
|
|
|
|
2015-05-05 12:32:21 -04:00
|
|
|
return
|
2015-05-05 09:57:08 -04:00
|
|
|
|
2015-03-20 09:52:56 -04:00
|
|
|
def _store_redaction(self, txn, event):
|
|
|
|
# invalidate the cache for the redacted event
|
2015-05-05 12:32:21 -04:00
|
|
|
txn.call_after(self._invalidate_get_event_cache, event.redacts)
|
2015-03-20 09:52:56 -04:00
|
|
|
txn.execute(
|
|
|
|
"INSERT INTO redactions (event_id, redacts) VALUES (?,?)",
|
|
|
|
(event.event_id, event.redacts)
|
|
|
|
)
|
|
|
|
|
|
|
|
def have_events(self, event_ids):
|
|
|
|
"""Given a list of event ids, check if we have already processed them.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
dict: Has an entry for each event id we already have seen. Maps to
|
|
|
|
the rejected reason string if we rejected the event, else maps to
|
|
|
|
None.
|
|
|
|
"""
|
|
|
|
if not event_ids:
|
|
|
|
return defer.succeed({})
|
|
|
|
|
|
|
|
def f(txn):
|
|
|
|
sql = (
|
|
|
|
"SELECT e.event_id, reason FROM events as e "
|
|
|
|
"LEFT JOIN rejections as r ON e.event_id = r.event_id "
|
|
|
|
"WHERE e.event_id = ?"
|
|
|
|
)
|
|
|
|
|
|
|
|
res = {}
|
|
|
|
for event_id in event_ids:
|
|
|
|
txn.execute(sql, (event_id,))
|
|
|
|
row = txn.fetchone()
|
|
|
|
if row:
|
|
|
|
_, rejected = row
|
|
|
|
res[event_id] = rejected
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
|
|
|
return self.runInteraction(
|
|
|
|
"have_events", f,
|
|
|
|
)
|