2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-01-06 08:21:39 -05:00
|
|
|
# Copyright 2014, 2015 OpenMarket Ltd
|
2014-08-12 10:10:52 -04: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.
|
|
|
|
|
2014-08-14 13:40:50 -04:00
|
|
|
from twisted.internet import defer
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2014-08-19 09:20:03 -04:00
|
|
|
from synapse.util.logutils import log_function
|
2014-12-16 06:29:05 -05:00
|
|
|
from synapse.api.constants import EventTypes
|
2014-08-19 09:20:03 -04:00
|
|
|
|
2015-01-27 10:50:28 -05:00
|
|
|
from .appservice import ApplicationServiceStore
|
2014-08-12 10:10:52 -04:00
|
|
|
from .directory import DirectoryStore
|
|
|
|
from .feedback import FeedbackStore
|
|
|
|
from .presence import PresenceStore
|
|
|
|
from .profile import ProfileStore
|
|
|
|
from .registration import RegistrationStore
|
|
|
|
from .room import RoomStore
|
|
|
|
from .roommember import RoomMemberStore
|
|
|
|
from .stream import StreamStore
|
|
|
|
from .transactions import TransactionStore
|
2014-08-28 13:19:47 -04:00
|
|
|
from .keys import KeyStore
|
2014-10-28 12:42:35 -04:00
|
|
|
from .event_federation import EventFederationStore
|
2014-11-19 13:20:59 -05:00
|
|
|
from .pusher import PusherStore
|
2015-01-22 12:38:53 -05:00
|
|
|
from .push_rule import PushRuleStore
|
2014-12-02 14:51:47 -05:00
|
|
|
from .media_repository import MediaRepositoryStore
|
2015-01-22 10:50:17 -05:00
|
|
|
from .rejections import RejectionsStore
|
2014-10-27 07:58:32 -04:00
|
|
|
|
2014-10-14 11:59:51 -04:00
|
|
|
from .state import StateStore
|
2014-10-15 12:09:04 -04:00
|
|
|
from .signatures import SignatureStore
|
2015-01-27 12:48:13 -05:00
|
|
|
from .filtering import FilteringStore
|
2014-10-15 12:09:04 -04:00
|
|
|
|
2014-10-15 19:09:48 -04:00
|
|
|
from syutil.base64util import decode_base64
|
2014-12-10 09:02:48 -05:00
|
|
|
from syutil.jsonutil import encode_canonical_json
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-10-31 11:35:39 -04:00
|
|
|
from synapse.crypto.event_signing import compute_event_reference_hash
|
2014-10-17 06:40:35 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
import json
|
2014-08-19 09:20:03 -04:00
|
|
|
import logging
|
2014-08-12 10:10:52 -04:00
|
|
|
import os
|
|
|
|
|
|
|
|
|
2014-08-19 09:20:03 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-09-10 10:42:15 -04:00
|
|
|
|
|
|
|
SCHEMAS = [
|
|
|
|
"transactions",
|
|
|
|
"users",
|
|
|
|
"profiles",
|
|
|
|
"presence",
|
|
|
|
"im",
|
|
|
|
"room_aliases",
|
2014-09-30 10:15:10 -04:00
|
|
|
"keys",
|
2014-09-24 10:27:59 -04:00
|
|
|
"redactions",
|
2014-10-14 11:59:51 -04:00
|
|
|
"state",
|
2014-10-28 12:42:35 -04:00
|
|
|
"event_edges",
|
2014-10-29 12:59:24 -04:00
|
|
|
"event_signatures",
|
2014-12-18 10:15:22 -05:00
|
|
|
"pusher",
|
2014-12-02 14:51:47 -05:00
|
|
|
"media_repository",
|
2015-02-02 12:39:41 -05:00
|
|
|
"application_services",
|
2015-01-27 13:46:03 -05:00
|
|
|
"filtering",
|
2015-01-30 09:57:53 -05:00
|
|
|
"rejections",
|
2014-09-10 10:42:15 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
# Remember to update this number every time an incompatible change is made to
|
|
|
|
# database schema files, so the users will be informed on server restarts.
|
2015-01-22 10:50:17 -05:00
|
|
|
SCHEMA_VERSION = 12
|
2014-09-10 10:42:15 -04:00
|
|
|
|
|
|
|
|
2014-09-08 17:36:51 -04:00
|
|
|
class _RollbackButIsFineException(Exception):
|
|
|
|
""" This exception is used to rollback a transaction without implying
|
|
|
|
something went wrong.
|
|
|
|
"""
|
|
|
|
pass
|
2014-08-19 09:20:03 -04:00
|
|
|
|
2014-10-28 12:42:35 -04:00
|
|
|
|
2014-08-14 12:34:37 -04:00
|
|
|
class DataStore(RoomMemberStore, RoomStore,
|
2014-08-12 10:10:52 -04:00
|
|
|
RegistrationStore, StreamStore, ProfileStore, FeedbackStore,
|
2014-10-31 10:00:14 -04:00
|
|
|
PresenceStore, TransactionStore,
|
2014-10-28 12:42:35 -04:00
|
|
|
DirectoryStore, KeyStore, StateStore, SignatureStore,
|
2015-02-02 11:05:34 -05:00
|
|
|
ApplicationServiceStore,
|
2014-12-02 14:51:47 -05:00
|
|
|
EventFederationStore,
|
|
|
|
MediaRepositoryStore,
|
2015-01-22 10:50:17 -05:00
|
|
|
RejectionsStore,
|
2015-01-27 12:48:13 -05:00
|
|
|
FilteringStore,
|
2014-12-18 10:15:22 -05:00
|
|
|
PusherStore,
|
2015-01-22 12:38:53 -05:00
|
|
|
PushRuleStore
|
2014-12-02 14:51:47 -05:00
|
|
|
):
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
super(DataStore, self).__init__(hs)
|
2014-08-18 10:50:41 -04:00
|
|
|
self.hs = hs
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-18 11:00:46 -04:00
|
|
|
self.min_token_deferred = self._get_min_token()
|
|
|
|
self.min_token = None
|
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
@defer.inlineCallbacks
|
2014-08-19 09:20:03 -04:00
|
|
|
@log_function
|
2014-12-05 11:20:48 -05:00
|
|
|
def persist_event(self, event, context, backfilled=False,
|
|
|
|
is_new_state=True, current_state=None):
|
2014-08-26 09:31:48 -04:00
|
|
|
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
|
|
|
|
|
2014-09-08 17:36:51 -04:00
|
|
|
try:
|
2014-09-12 08:57:24 -04:00
|
|
|
yield self.runInteraction(
|
2014-10-28 07:18:04 -04:00
|
|
|
"persist_event",
|
2014-11-10 05:31:00 -05:00
|
|
|
self._persist_event_txn,
|
2014-09-08 17:36:51 -04:00
|
|
|
event=event,
|
2014-12-05 11:20:48 -05:00
|
|
|
context=context,
|
2014-09-08 17:36:51 -04:00
|
|
|
backfilled=backfilled,
|
|
|
|
stream_ordering=stream_ordering,
|
2014-09-15 11:40:44 -04:00
|
|
|
is_new_state=is_new_state,
|
2014-11-26 05:41:08 -05:00
|
|
|
current_state=current_state,
|
2014-09-08 17:36:51 -04:00
|
|
|
)
|
2014-09-30 07:38:38 -04:00
|
|
|
except _RollbackButIsFineException:
|
2014-09-08 17:36:51 -04:00
|
|
|
pass
|
2014-08-13 11:27:14 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-09-05 21:23:36 -04:00
|
|
|
def get_event(self, event_id, allow_none=False):
|
2014-12-09 08:35:26 -05:00
|
|
|
events = yield self._get_events([event_id])
|
|
|
|
|
|
|
|
if not events:
|
|
|
|
if allow_none:
|
|
|
|
defer.returnValue(None)
|
|
|
|
else:
|
|
|
|
raise RuntimeError("Could not find event %s" % (event_id,))
|
|
|
|
|
|
|
|
defer.returnValue(events[0])
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-08-19 09:20:03 -04:00
|
|
|
@log_function
|
2014-12-05 11:20:48 -05:00
|
|
|
def _persist_event_txn(self, txn, event, context, backfilled,
|
|
|
|
stream_ordering=None, is_new_state=True,
|
|
|
|
current_state=None):
|
2014-12-16 06:29:05 -05:00
|
|
|
if event.type == EventTypes.Member:
|
2014-09-12 10:51:51 -04:00
|
|
|
self._store_room_member_txn(txn, event)
|
2014-12-16 06:29:05 -05:00
|
|
|
elif event.type == EventTypes.Feedback:
|
2014-09-01 08:44:19 -04:00
|
|
|
self._store_feedback_txn(txn, event)
|
2014-12-16 06:29:05 -05:00
|
|
|
elif event.type == EventTypes.Name:
|
2014-08-26 09:31:48 -04:00
|
|
|
self._store_room_name_txn(txn, event)
|
2014-12-16 06:29:05 -05:00
|
|
|
elif event.type == EventTypes.Topic:
|
2014-08-26 09:31:48 -04:00
|
|
|
self._store_room_topic_txn(txn, event)
|
2014-12-16 06:29:05 -05:00
|
|
|
elif event.type == EventTypes.Redaction:
|
2014-09-24 10:27:59 -04:00
|
|
|
self._store_redaction(txn, event)
|
2014-08-18 10:50:41 -04:00
|
|
|
|
2014-12-16 13:33:50 -05:00
|
|
|
outlier = event.internal_metadata.is_outlier()
|
2014-10-28 12:42:35 -04:00
|
|
|
|
2014-12-01 11:21:17 -05:00
|
|
|
event_dict = {
|
|
|
|
k: v
|
2014-12-05 11:20:48 -05:00
|
|
|
for k, v in event.get_dict().items()
|
2014-12-01 11:21:17 -05:00
|
|
|
if k not in [
|
|
|
|
"redacted",
|
|
|
|
"redacted_because",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2014-12-16 08:27:53 -05:00
|
|
|
metadata_json = encode_canonical_json(
|
2014-12-16 08:17:09 -05:00
|
|
|
event.internal_metadata.get_dict()
|
|
|
|
)
|
|
|
|
|
2014-12-01 11:21:17 -05:00
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
table="event_json",
|
|
|
|
values={
|
|
|
|
"event_id": event.event_id,
|
2014-12-10 09:02:48 -05:00
|
|
|
"room_id": event.room_id,
|
2014-12-16 08:17:09 -05:00
|
|
|
"internal_metadata": metadata_json.decode("UTF-8"),
|
2014-12-12 09:53:37 -05:00
|
|
|
"json": encode_canonical_json(event_dict).decode("UTF-8"),
|
2014-12-01 11:21:17 -05:00
|
|
|
},
|
|
|
|
or_replace=True,
|
|
|
|
)
|
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
vals = {
|
2014-08-18 10:50:41 -04:00
|
|
|
"topological_ordering": event.depth,
|
2014-08-13 11:27:14 -04:00
|
|
|
"event_id": event.event_id,
|
2014-08-14 13:40:50 -04:00
|
|
|
"type": event.type,
|
2014-08-13 11:27:14 -04:00
|
|
|
"room_id": event.room_id,
|
2014-12-15 12:31:36 -05:00
|
|
|
"content": json.dumps(event.get_dict()["content"]),
|
2014-08-18 10:50:41 -04:00
|
|
|
"processed": True,
|
2014-10-28 12:42:35 -04:00
|
|
|
"outlier": outlier,
|
|
|
|
"depth": event.depth,
|
2014-08-13 11:27:14 -04:00
|
|
|
}
|
|
|
|
|
2014-08-26 09:31:48 -04:00
|
|
|
if stream_ordering is not None:
|
|
|
|
vals["stream_ordering"] = stream_ordering
|
2014-08-18 10:50:41 -04:00
|
|
|
|
2014-08-15 11:17:36 -04:00
|
|
|
unrec = {
|
|
|
|
k: v
|
2014-12-05 11:20:48 -05:00
|
|
|
for k, v in event.get_dict().items()
|
2014-10-28 12:42:35 -04:00
|
|
|
if k not in vals.keys() and k not in [
|
2014-11-03 06:34:49 -05:00
|
|
|
"redacted",
|
|
|
|
"redacted_because",
|
|
|
|
"signatures",
|
|
|
|
"hashes",
|
2014-10-28 12:42:35 -04:00
|
|
|
"prev_events",
|
|
|
|
]
|
2014-08-15 11:17:36 -04:00
|
|
|
}
|
2014-08-14 13:40:50 -04:00
|
|
|
vals["unrecognized_keys"] = json.dumps(unrec)
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-08-19 09:20:03 -04:00
|
|
|
try:
|
2014-10-29 12:59:24 -04:00
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
"events",
|
|
|
|
vals,
|
|
|
|
or_replace=(not outlier),
|
2014-11-12 06:22:51 -05:00
|
|
|
or_ignore=bool(outlier),
|
2014-10-29 12:59:24 -04:00
|
|
|
)
|
2014-08-19 09:20:03 -04:00
|
|
|
except:
|
2014-09-08 17:36:51 -04:00
|
|
|
logger.warn(
|
2014-08-20 10:53:07 -04:00
|
|
|
"Failed to persist, probably duplicate: %s",
|
2014-09-08 17:36:51 -04:00
|
|
|
event.event_id,
|
|
|
|
exc_info=True,
|
2014-08-20 10:53:07 -04:00
|
|
|
)
|
2014-09-08 17:36:51 -04:00
|
|
|
raise _RollbackButIsFineException("_persist_event")
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-10-28 12:42:35 -04:00
|
|
|
self._handle_prev_events(
|
|
|
|
txn,
|
|
|
|
outlier=outlier,
|
|
|
|
event_id=event.event_id,
|
|
|
|
prev_events=event.prev_events,
|
|
|
|
room_id=event.room_id,
|
|
|
|
)
|
|
|
|
|
2014-12-10 10:55:03 -05:00
|
|
|
if not outlier:
|
|
|
|
self._store_state_groups_txn(txn, event, context)
|
2014-10-14 11:59:51 -04:00
|
|
|
|
2015-01-22 10:50:17 -05:00
|
|
|
if context.rejected:
|
|
|
|
self._store_rejections_txn(txn, event.event_id, context.rejected)
|
|
|
|
|
2014-11-26 05:41:08 -05:00
|
|
|
if current_state:
|
2014-11-26 10:17:08 -05:00
|
|
|
txn.execute(
|
|
|
|
"DELETE FROM current_state_events WHERE room_id = ?",
|
|
|
|
(event.room_id,)
|
|
|
|
)
|
2014-11-26 05:41:08 -05:00
|
|
|
|
|
|
|
for s in current_state:
|
|
|
|
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,
|
|
|
|
},
|
|
|
|
or_replace=True,
|
|
|
|
)
|
|
|
|
|
2014-09-25 09:45:15 -04:00
|
|
|
is_state = hasattr(event, "state_key") and event.state_key is not None
|
2014-11-26 05:41:08 -05:00
|
|
|
if is_state:
|
2014-08-13 11:27:14 -04:00
|
|
|
vals = {
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
2014-08-14 13:40:50 -04:00
|
|
|
"type": event.type,
|
2014-08-13 11:27:14 -04:00
|
|
|
"state_key": event.state_key,
|
|
|
|
}
|
|
|
|
|
2014-11-06 10:10:55 -05:00
|
|
|
if hasattr(event, "replaces_state"):
|
|
|
|
vals["prev_state"] = event.replaces_state
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-11-12 06:22:51 -05:00
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
"state_events",
|
|
|
|
vals,
|
|
|
|
or_replace=True,
|
|
|
|
)
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2015-01-22 10:50:17 -05:00
|
|
|
if is_new_state and not context.rejected:
|
2014-11-26 05:41:08 -05:00
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
"current_state_events",
|
|
|
|
{
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"type": event.type,
|
|
|
|
"state_key": event.state_key,
|
|
|
|
},
|
|
|
|
or_replace=True,
|
|
|
|
)
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-11-06 10:10:55 -05:00
|
|
|
for e_id, h in event.prev_state:
|
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
table="event_edges",
|
|
|
|
values={
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"prev_event_id": e_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"is_state": 1,
|
|
|
|
},
|
|
|
|
or_ignore=True,
|
|
|
|
)
|
|
|
|
|
2015-01-22 10:50:17 -05:00
|
|
|
if not backfilled and not context.rejected:
|
2014-11-06 10:10:55 -05:00
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
table="state_forward_extremities",
|
|
|
|
values={
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"type": event.type,
|
|
|
|
"state_key": event.state_key,
|
2014-11-12 06:22:51 -05:00
|
|
|
},
|
|
|
|
or_replace=True,
|
2014-11-06 10:10:55 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
for prev_state_id, _ in event.prev_state:
|
|
|
|
self._simple_delete_txn(
|
|
|
|
txn,
|
|
|
|
table="state_forward_extremities",
|
|
|
|
keyvalues={
|
|
|
|
"event_id": prev_state_id,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2014-10-31 13:08:52 -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,
|
|
|
|
)
|
|
|
|
|
2014-10-28 12:42:35 -04:00
|
|
|
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(
|
|
|
|
txn, event.event_id, prev_event_id, alg, hash_bytes
|
|
|
|
)
|
|
|
|
|
2014-11-06 13:42:18 -05:00
|
|
|
for auth_id, _ in event.auth_events:
|
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
table="event_auth",
|
|
|
|
values={
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"auth_id": auth_id,
|
|
|
|
},
|
2014-11-07 05:42:44 -05:00
|
|
|
or_ignore=True,
|
2014-11-06 13:42:18 -05:00
|
|
|
)
|
|
|
|
|
2014-10-31 11:35:39 -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
|
|
|
|
)
|
2014-10-28 12:42:35 -04:00
|
|
|
|
2014-11-26 05:41:08 -05:00
|
|
|
if not outlier:
|
|
|
|
self._update_min_depth_for_room_txn(
|
|
|
|
txn,
|
|
|
|
event.room_id,
|
|
|
|
event.depth
|
|
|
|
)
|
2014-10-28 12:42:35 -04:00
|
|
|
|
2014-09-24 10:27:59 -04:00
|
|
|
def _store_redaction(self, txn, event):
|
2014-09-24 09:18:08 -04:00
|
|
|
txn.execute(
|
2014-09-24 10:27:59 -04:00
|
|
|
"INSERT OR IGNORE INTO redactions "
|
|
|
|
"(event_id, redacts) VALUES (?,?)",
|
|
|
|
(event.event_id, event.redacts)
|
2014-09-24 09:18:08 -04:00
|
|
|
)
|
2014-09-23 10:28:32 -04:00
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
@defer.inlineCallbacks
|
2014-08-14 13:40:50 -04:00
|
|
|
def get_current_state(self, room_id, event_type=None, state_key=""):
|
2014-09-24 08:29:20 -04:00
|
|
|
del_sql = (
|
2014-09-25 10:51:21 -04:00
|
|
|
"SELECT event_id FROM redactions WHERE redacts = e.event_id "
|
|
|
|
"LIMIT 1"
|
2014-09-24 08:29:20 -04:00
|
|
|
)
|
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
sql = (
|
2014-09-24 10:27:59 -04:00
|
|
|
"SELECT e.*, (%(redacted)s) AS redacted FROM events as e "
|
2014-08-14 13:40:50 -04:00
|
|
|
"INNER JOIN current_state_events as c ON e.event_id = c.event_id "
|
2014-08-13 11:27:14 -04:00
|
|
|
"INNER JOIN state_events as s ON e.event_id = s.event_id "
|
|
|
|
"WHERE c.room_id = ? "
|
2014-09-23 10:28:32 -04:00
|
|
|
) % {
|
2014-09-24 10:27:59 -04:00
|
|
|
"redacted": del_sql,
|
2014-09-23 10:28:32 -04:00
|
|
|
}
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2015-01-30 09:46:03 -05:00
|
|
|
if event_type and state_key is not None:
|
2014-08-14 13:40:50 -04:00
|
|
|
sql += " AND s.type = ? AND s.state_key = ? "
|
2014-08-13 11:27:14 -04:00
|
|
|
args = (room_id, event_type, state_key)
|
2015-01-30 09:46:03 -05:00
|
|
|
elif event_type:
|
|
|
|
sql += " AND s.type = ?"
|
|
|
|
args = (room_id, event_type)
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
2014-08-13 11:27:14 -04:00
|
|
|
args = (room_id, )
|
|
|
|
|
2014-08-14 11:58:51 -04:00
|
|
|
results = yield self._execute_and_decode(sql, *args)
|
2014-08-13 11:27:14 -04:00
|
|
|
|
2014-09-05 21:23:36 -04:00
|
|
|
events = yield self._parse_events(results)
|
|
|
|
defer.returnValue(events)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-01-15 11:56:18 -05:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_room_name_and_aliases(self, room_id):
|
|
|
|
del_sql = (
|
|
|
|
"SELECT event_id FROM redactions WHERE redacts = e.event_id "
|
|
|
|
"LIMIT 1"
|
|
|
|
)
|
|
|
|
|
|
|
|
sql = (
|
|
|
|
"SELECT e.*, (%(redacted)s) AS redacted FROM events as e "
|
|
|
|
"INNER JOIN current_state_events as c ON e.event_id = c.event_id "
|
|
|
|
"INNER JOIN state_events as s ON e.event_id = s.event_id "
|
|
|
|
"WHERE c.room_id = ? "
|
|
|
|
) % {
|
|
|
|
"redacted": del_sql,
|
|
|
|
}
|
|
|
|
|
2015-01-26 11:52:47 -05:00
|
|
|
sql += " AND ((s.type = 'm.room.name' AND s.state_key = '')"
|
|
|
|
sql += " OR s.type = 'm.room.aliases')"
|
2015-01-15 11:56:18 -05:00
|
|
|
args = (room_id,)
|
|
|
|
|
|
|
|
results = yield self._execute_and_decode(sql, *args)
|
|
|
|
|
|
|
|
events = yield self._parse_events(results)
|
|
|
|
|
|
|
|
name = None
|
|
|
|
aliases = []
|
|
|
|
|
|
|
|
for e in events:
|
|
|
|
if e.type == 'm.room.name':
|
|
|
|
name = e.content['name']
|
|
|
|
elif e.type == 'm.room.aliases':
|
|
|
|
aliases.extend(e.content['aliases'])
|
|
|
|
|
|
|
|
defer.returnValue((name, aliases))
|
|
|
|
|
2014-08-18 11:00:46 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _get_min_token(self):
|
|
|
|
row = yield self._execute(
|
|
|
|
None,
|
2014-08-19 09:20:03 -04:00
|
|
|
"SELECT MIN(stream_ordering) FROM events"
|
2014-08-18 11:00:46 -04:00
|
|
|
)
|
|
|
|
|
2014-08-19 09:32:47 -04:00
|
|
|
self.min_token = row[0][0] if row and row[0] and row[0][0] else -1
|
|
|
|
self.min_token = min(self.min_token, -1)
|
2014-08-19 09:20:03 -04:00
|
|
|
|
|
|
|
logger.debug("min_token is: %s", self.min_token)
|
2014-08-18 11:00:46 -04:00
|
|
|
|
|
|
|
defer.returnValue(self.min_token)
|
|
|
|
|
2014-09-29 09:59:52 -04:00
|
|
|
def insert_client_ip(self, user, access_token, device_id, ip, user_agent):
|
2014-09-26 11:36:24 -04:00
|
|
|
return self._simple_insert(
|
|
|
|
"user_ips",
|
|
|
|
{
|
|
|
|
"user": user.to_string(),
|
|
|
|
"access_token": access_token,
|
2014-09-29 09:59:52 -04:00
|
|
|
"device_id": device_id,
|
2014-09-29 08:35:15 -04:00
|
|
|
"ip": ip,
|
|
|
|
"user_agent": user_agent,
|
2014-09-29 09:59:52 -04:00
|
|
|
"last_seen": int(self._clock.time_msec()),
|
2014-09-26 11:36:24 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2014-09-29 09:59:52 -04:00
|
|
|
def get_user_ip_and_agents(self, user):
|
|
|
|
return self._simple_select_list(
|
|
|
|
table="user_ips",
|
|
|
|
keyvalues={"user": user.to_string()},
|
|
|
|
retcols=[
|
|
|
|
"device_id", "access_token", "ip", "user_agent", "last_seen"
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2015-01-23 10:42:52 -05:00
|
|
|
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.
|
|
|
|
"""
|
|
|
|
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 "
|
2015-01-26 05:45:24 -05:00
|
|
|
"WHERE e.event_id = ?"
|
2015-01-23 10:42:52 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
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,
|
|
|
|
)
|
|
|
|
|
2014-08-22 12:00:10 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
def schema_path(schema):
|
|
|
|
""" Get a filesystem path for the named database schema
|
|
|
|
|
|
|
|
Args:
|
|
|
|
schema: Name of the database schema.
|
|
|
|
Returns:
|
|
|
|
A filesystem path pointing at a ".sql" file.
|
|
|
|
|
|
|
|
"""
|
|
|
|
dir_path = os.path.dirname(__file__)
|
|
|
|
schemaPath = os.path.join(dir_path, "schema", schema + ".sql")
|
|
|
|
return schemaPath
|
|
|
|
|
|
|
|
|
|
|
|
def read_schema(schema):
|
|
|
|
""" Read the named database schema.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
schema: Name of the datbase schema.
|
|
|
|
Returns:
|
|
|
|
A string containing the database schema.
|
|
|
|
"""
|
|
|
|
with open(schema_path(schema)) as schema_file:
|
|
|
|
return schema_file.read()
|
2014-09-10 10:42:15 -04:00
|
|
|
|
|
|
|
|
2014-12-16 09:20:32 -05:00
|
|
|
class PrepareDatabaseException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class UpgradeDatabaseException(PrepareDatabaseException):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
def prepare_database(db_conn):
|
2014-09-10 10:42:15 -04:00
|
|
|
""" Set up all the dbs. Since all the *.sql have IF NOT EXISTS, so we
|
|
|
|
don't have to worry about overwriting existing content.
|
|
|
|
"""
|
2014-09-10 11:23:58 -04:00
|
|
|
c = db_conn.cursor()
|
|
|
|
c.execute("PRAGMA user_version")
|
|
|
|
row = c.fetchone()
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
if row and row[0]:
|
|
|
|
user_version = row[0]
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
if user_version > SCHEMA_VERSION:
|
2014-11-10 08:46:44 -05:00
|
|
|
raise ValueError(
|
|
|
|
"Cannot use this database as it is too " +
|
2014-09-10 11:23:58 -04:00
|
|
|
"new for the server to understand"
|
|
|
|
)
|
|
|
|
elif user_version < SCHEMA_VERSION:
|
2014-11-20 12:10:37 -05:00
|
|
|
logger.info(
|
2014-11-10 08:46:44 -05:00
|
|
|
"Upgrading database from version %d",
|
2014-09-10 11:23:58 -04:00
|
|
|
user_version
|
|
|
|
)
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
# Run every version since after the current version.
|
|
|
|
for v in range(user_version + 1, SCHEMA_VERSION + 1):
|
2014-12-16 09:44:53 -05:00
|
|
|
if v == 10:
|
|
|
|
raise UpgradeDatabaseException(
|
|
|
|
"No delta for version 10"
|
|
|
|
)
|
2014-09-10 11:23:58 -04:00
|
|
|
sql_script = read_schema("delta/v%d" % (v))
|
|
|
|
c.executescript(sql_script)
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
db_conn.commit()
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
else:
|
2014-10-29 12:59:24 -04:00
|
|
|
sql_script = "BEGIN TRANSACTION;\n"
|
2014-09-10 11:23:58 -04:00
|
|
|
for sql_loc in SCHEMAS:
|
2014-10-24 14:04:16 -04:00
|
|
|
sql_script += read_schema(sql_loc)
|
2014-10-29 12:59:24 -04:00
|
|
|
sql_script += "\n"
|
2014-10-24 14:04:16 -04:00
|
|
|
sql_script += "COMMIT TRANSACTION;"
|
|
|
|
c.executescript(sql_script)
|
2014-09-10 11:23:58 -04:00
|
|
|
db_conn.commit()
|
|
|
|
c.execute("PRAGMA user_version = %d" % SCHEMA_VERSION)
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-09-10 11:23:58 -04:00
|
|
|
c.close()
|