2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2014 matrix.org
|
|
|
|
#
|
|
|
|
# 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-12 22:14:34 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
from synapse.api.events.room import (
|
|
|
|
RoomMemberEvent, MessageEvent, RoomTopicEvent, FeedbackEvent,
|
|
|
|
RoomConfigEvent
|
|
|
|
)
|
|
|
|
|
|
|
|
from .directory import DirectoryStore
|
|
|
|
from .feedback import FeedbackStore
|
|
|
|
from .message import MessageStore
|
|
|
|
from .presence import PresenceStore
|
|
|
|
from .profile import ProfileStore
|
|
|
|
from .registration import RegistrationStore
|
|
|
|
from .room import RoomStore
|
|
|
|
from .roommember import RoomMemberStore
|
|
|
|
from .roomdata import RoomDataStore
|
|
|
|
from .stream import StreamStore
|
|
|
|
from .pdu import StatePduStore, PduStore
|
|
|
|
from .transactions import TransactionStore
|
|
|
|
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
class DataStore(RoomDataStore, RoomMemberStore, MessageStore, RoomStore,
|
|
|
|
RegistrationStore, StreamStore, ProfileStore, FeedbackStore,
|
|
|
|
PresenceStore, PduStore, StatePduStore, TransactionStore,
|
|
|
|
DirectoryStore):
|
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
super(DataStore, self).__init__(hs)
|
|
|
|
self.event_factory = hs.get_event_factory()
|
|
|
|
|
2014-08-13 11:27:14 -04:00
|
|
|
@defer.inlineCallbacks
|
2014-08-12 10:10:52 -04:00
|
|
|
def persist_event(self, event):
|
2014-08-13 11:27:14 -04:00
|
|
|
if event.type == RoomMemberEvent.TYPE:
|
|
|
|
yield self._store_room_member(event)
|
2014-08-12 10:10:52 -04:00
|
|
|
elif event.type == FeedbackEvent.TYPE:
|
2014-08-13 11:27:14 -04:00
|
|
|
yield self._store_feedback(event)
|
2014-08-12 10:10:52 -04:00
|
|
|
elif event.type == RoomConfigEvent.TYPE:
|
2014-08-13 11:27:14 -04:00
|
|
|
yield self._store_room_config(event)
|
|
|
|
|
|
|
|
self._store_event(event)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_event(self, event_id):
|
|
|
|
events_dict = yield self._simple_select_one(
|
|
|
|
"events",
|
|
|
|
{"event_id": event_id},
|
|
|
|
[
|
|
|
|
"event_id",
|
|
|
|
"type",
|
|
|
|
"sender",
|
|
|
|
"room_id",
|
|
|
|
"content",
|
|
|
|
"unrecognized_keys"
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
event = self._parse_event_from_row(events_dict)
|
|
|
|
defer.returnValue(event)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _store_event(self, event):
|
|
|
|
vals = {
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"event_type", event.type,
|
|
|
|
"sender": event.user_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"content": event.content,
|
|
|
|
}
|
|
|
|
|
|
|
|
unrec = {k: v for k, v in event.get_full_dict() if k not in vals.keys()}
|
|
|
|
val["unrecognized_keys"] = unrec
|
|
|
|
|
|
|
|
yield self._simple_insert("events", vals)
|
|
|
|
|
|
|
|
if hasattr(event, "state_key"):
|
|
|
|
vals = {
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"event_type": event.event_type,
|
|
|
|
"state_key": event.state_key,
|
|
|
|
}
|
|
|
|
|
|
|
|
if hasattr(event, "prev_state"):
|
|
|
|
vals["prev_state"] = event.prev_state
|
|
|
|
|
|
|
|
yield self._simple_insert("state_events", vals)
|
|
|
|
|
|
|
|
# TODO (erikj): We also need to update the current state table?
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_current_state(room_id, event_type=None, state_key="")
|
|
|
|
sql = (
|
|
|
|
"SELECT e.* FROM events as e"
|
|
|
|
"INNER JOIN current_state 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 = ? "
|
|
|
|
)
|
|
|
|
|
|
|
|
if event_type:
|
|
|
|
sql += " s.type = ? AND s.state_key = ? "
|
|
|
|
args = (room_id, event_type, state_key)
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
2014-08-13 11:27:14 -04:00
|
|
|
args = (room_id, )
|
|
|
|
|
|
|
|
results = yield self._execute_query(sql, *args)
|
|
|
|
|
|
|
|
defer.returnValue(
|
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()
|