2014-08-12 16:10:52 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-07 05:26:29 +01:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 16:10:52 +02: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 19:40:50 +02:00
|
|
|
from twisted.internet import defer
|
2016-07-15 14:19:07 +02:00
|
|
|
|
|
|
|
from synapse.storage.devices import DeviceStore
|
2015-03-09 18:01:19 +01:00
|
|
|
from .appservice import (
|
|
|
|
ApplicationServiceStore, ApplicationServiceTransactionStore
|
|
|
|
)
|
2016-06-03 15:42:35 +02:00
|
|
|
from ._base import LoggingTransaction
|
2014-08-12 16:10:52 +02:00
|
|
|
from .directory import DirectoryStore
|
2015-03-20 14:52:56 +01:00
|
|
|
from .events import EventsStore
|
2016-02-15 18:10:40 +01:00
|
|
|
from .presence import PresenceStore, UserPresenceState
|
2014-08-12 16:10:52 +02:00
|
|
|
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 19:19:47 +02:00
|
|
|
from .keys import KeyStore
|
2014-10-28 17:42:35 +01:00
|
|
|
from .event_federation import EventFederationStore
|
2014-11-19 19:20:59 +01:00
|
|
|
from .pusher import PusherStore
|
2015-01-22 18:38:53 +01:00
|
|
|
from .push_rule import PushRuleStore
|
2014-12-02 20:51:47 +01:00
|
|
|
from .media_repository import MediaRepositoryStore
|
2015-01-22 16:50:17 +01:00
|
|
|
from .rejections import RejectionsStore
|
2016-01-04 15:05:37 +01:00
|
|
|
from .event_push_actions import EventPushActionsStore
|
2016-08-25 18:35:37 +02:00
|
|
|
from .deviceinbox import DeviceInboxStore
|
2014-10-27 12:58:32 +01:00
|
|
|
|
2014-10-14 17:59:51 +02:00
|
|
|
from .state import StateStore
|
2014-10-15 18:09:04 +02:00
|
|
|
from .signatures import SignatureStore
|
2015-01-27 18:48:13 +01:00
|
|
|
from .filtering import FilteringStore
|
2015-07-06 19:46:47 +02:00
|
|
|
from .end_to_end_keys import EndToEndKeyStore
|
2014-10-15 18:09:04 +02:00
|
|
|
|
2015-07-07 11:55:31 +02:00
|
|
|
from .receipts import ReceiptsStore
|
2015-10-09 16:48:31 +02:00
|
|
|
from .search import SearchStore
|
2015-10-28 17:06:57 +01:00
|
|
|
from .tags import TagsStore
|
2015-12-01 19:41:32 +01:00
|
|
|
from .account_data import AccountDataStore
|
2016-05-05 14:42:44 +02:00
|
|
|
from .openid import OpenIdStore
|
2016-06-03 15:42:35 +02:00
|
|
|
from .client_ips import ClientIpStore
|
2015-07-07 11:55:31 +02:00
|
|
|
|
2016-03-08 12:45:50 +01:00
|
|
|
from .util.id_generators import IdGenerator, StreamIdGenerator, ChainedIdGenerator
|
2016-08-15 12:16:45 +02:00
|
|
|
from .engines import PostgresEngine
|
2016-01-26 16:51:06 +01:00
|
|
|
|
2016-02-15 18:10:40 +01:00
|
|
|
from synapse.api.constants import PresenceState
|
2016-01-29 15:37:59 +01:00
|
|
|
from synapse.util.caches.stream_change_cache import StreamChangeCache
|
|
|
|
|
2016-01-26 16:51:06 +01:00
|
|
|
|
2014-08-19 15:20:03 +02:00
|
|
|
import logging
|
2014-08-12 16:10:52 +02:00
|
|
|
|
|
|
|
|
2014-08-19 15:20:03 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-09-10 16:42:15 +02:00
|
|
|
|
2014-08-14 18:34:37 +02:00
|
|
|
class DataStore(RoomMemberStore, RoomStore,
|
2015-03-20 14:52:56 +01:00
|
|
|
RegistrationStore, StreamStore, ProfileStore,
|
2014-10-31 15:00:14 +01:00
|
|
|
PresenceStore, TransactionStore,
|
2014-10-28 17:42:35 +01:00
|
|
|
DirectoryStore, KeyStore, StateStore, SignatureStore,
|
2015-02-02 17:05:34 +01:00
|
|
|
ApplicationServiceStore,
|
2014-12-02 20:51:47 +01:00
|
|
|
EventFederationStore,
|
|
|
|
MediaRepositoryStore,
|
2015-01-22 16:50:17 +01:00
|
|
|
RejectionsStore,
|
2015-01-27 18:48:13 +01:00
|
|
|
FilteringStore,
|
2014-12-18 16:15:22 +01:00
|
|
|
PusherStore,
|
2015-03-20 14:52:56 +01:00
|
|
|
PushRuleStore,
|
2015-03-16 11:16:59 +01:00
|
|
|
ApplicationServiceTransactionStore,
|
2015-03-20 14:52:56 +01:00
|
|
|
EventsStore,
|
2015-07-07 11:55:31 +02:00
|
|
|
ReceiptsStore,
|
2015-07-06 19:46:47 +02:00
|
|
|
EndToEndKeyStore,
|
2015-10-09 16:48:31 +02:00
|
|
|
SearchStore,
|
2015-10-28 17:06:57 +01:00
|
|
|
TagsStore,
|
2015-12-01 19:41:32 +01:00
|
|
|
AccountDataStore,
|
2016-05-05 14:42:44 +02:00
|
|
|
EventPushActionsStore,
|
|
|
|
OpenIdStore,
|
2016-06-03 15:42:35 +02:00
|
|
|
ClientIpStore,
|
2016-07-15 14:19:07 +02:00
|
|
|
DeviceStore,
|
2016-08-25 18:35:37 +02:00
|
|
|
DeviceInboxStore,
|
2014-12-02 20:51:47 +01:00
|
|
|
):
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2016-01-28 15:32:05 +01:00
|
|
|
def __init__(self, db_conn, hs):
|
2014-08-18 16:50:41 +02:00
|
|
|
self.hs = hs
|
2016-05-20 18:56:10 +02:00
|
|
|
self._clock = hs.get_clock()
|
2016-01-29 15:41:16 +01:00
|
|
|
self.database_engine = hs.database_engine
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2016-01-26 16:51:06 +01:00
|
|
|
self._stream_id_gen = StreamIdGenerator(
|
2016-04-05 12:13:24 +02:00
|
|
|
db_conn, "events", "stream_ordering",
|
|
|
|
extra_tables=[("local_invites", "stream_id")]
|
2016-01-26 16:51:06 +01:00
|
|
|
)
|
2016-04-01 14:29:05 +02:00
|
|
|
self._backfill_id_gen = StreamIdGenerator(
|
2016-07-15 11:22:30 +02:00
|
|
|
db_conn, "events", "stream_ordering", step=-1,
|
|
|
|
extra_tables=[("ex_outlier_stream", "event_stream_ordering")]
|
2016-04-01 14:29:05 +02:00
|
|
|
)
|
2016-01-26 16:51:06 +01:00
|
|
|
self._receipts_id_gen = StreamIdGenerator(
|
|
|
|
db_conn, "receipts_linearized", "stream_id"
|
|
|
|
)
|
|
|
|
self._account_data_id_gen = StreamIdGenerator(
|
|
|
|
db_conn, "account_data_max_stream_id", "stream_id"
|
|
|
|
)
|
2016-02-15 18:10:40 +01:00
|
|
|
self._presence_id_gen = StreamIdGenerator(
|
|
|
|
db_conn, "presence_stream", "stream_id"
|
|
|
|
)
|
2016-08-25 18:35:37 +02:00
|
|
|
self._device_inbox_id_gen = StreamIdGenerator(
|
|
|
|
db_conn, "device_inbox", "stream_id"
|
|
|
|
)
|
2016-01-26 16:51:06 +01:00
|
|
|
|
2016-03-01 15:32:56 +01:00
|
|
|
self._transaction_id_gen = IdGenerator(db_conn, "sent_transactions", "id")
|
2016-08-30 17:54:40 +02:00
|
|
|
self._state_groups_id_gen = IdGenerator(db_conn, "state_groups", "id")
|
2016-03-01 15:32:56 +01:00
|
|
|
self._access_tokens_id_gen = IdGenerator(db_conn, "access_tokens", "id")
|
|
|
|
self._refresh_tokens_id_gen = IdGenerator(db_conn, "refresh_tokens", "id")
|
2016-05-04 16:19:12 +02:00
|
|
|
self._event_reports_id_gen = IdGenerator(db_conn, "event_reports", "id")
|
2016-03-01 15:32:56 +01:00
|
|
|
self._push_rule_id_gen = IdGenerator(db_conn, "push_rules", "id")
|
|
|
|
self._push_rules_enable_id_gen = IdGenerator(db_conn, "push_rules_enable", "id")
|
2016-03-01 14:35:37 +01:00
|
|
|
self._push_rules_stream_id_gen = ChainedIdGenerator(
|
|
|
|
self._stream_id_gen, db_conn, "push_rules_stream", "stream_id"
|
|
|
|
)
|
2016-03-15 18:01:43 +01:00
|
|
|
self._pushers_id_gen = StreamIdGenerator(
|
|
|
|
db_conn, "pushers", "id",
|
|
|
|
extra_tables=[("deleted_pushers", "stream_id")],
|
|
|
|
)
|
2016-08-15 12:16:45 +02:00
|
|
|
|
|
|
|
if isinstance(self.database_engine, PostgresEngine):
|
|
|
|
self._cache_id_gen = StreamIdGenerator(
|
2016-08-15 12:45:57 +02:00
|
|
|
db_conn, "cache_invalidation_stream", "stream_id",
|
2016-08-15 12:16:45 +02:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
self._cache_id_gen = None
|
2016-01-26 16:51:06 +01:00
|
|
|
|
2016-04-01 14:29:05 +02:00
|
|
|
events_max = self._stream_id_gen.get_current_token()
|
2016-01-29 15:49:11 +01:00
|
|
|
event_cache_prefill, min_event_val = self._get_cache_dict(
|
2016-01-29 15:37:59 +01:00
|
|
|
db_conn, "events",
|
|
|
|
entity_column="room_id",
|
|
|
|
stream_column="stream_ordering",
|
|
|
|
max_value=events_max,
|
|
|
|
)
|
|
|
|
self._events_stream_cache = StreamChangeCache(
|
2016-01-29 15:49:11 +01:00
|
|
|
"EventsRoomStreamChangeCache", min_event_val,
|
2016-01-29 15:37:59 +01:00
|
|
|
prefilled_cache=event_cache_prefill,
|
|
|
|
)
|
|
|
|
|
2016-01-29 17:52:48 +01:00
|
|
|
self._membership_stream_cache = StreamChangeCache(
|
|
|
|
"MembershipStreamChangeCache", events_max,
|
|
|
|
)
|
|
|
|
|
2016-04-01 14:29:05 +02:00
|
|
|
account_max = self._account_data_id_gen.get_current_token()
|
2016-01-29 15:37:59 +01:00
|
|
|
self._account_data_stream_cache = StreamChangeCache(
|
2016-01-29 15:53:59 +01:00
|
|
|
"AccountDataAndTagsChangeCache", account_max,
|
2016-01-29 15:37:59 +01:00
|
|
|
)
|
|
|
|
|
2016-06-03 12:05:53 +02:00
|
|
|
self._presence_on_startup = self._get_active_presence(db_conn)
|
2016-02-15 18:10:40 +01:00
|
|
|
|
|
|
|
presence_cache_prefill, min_presence_val = self._get_cache_dict(
|
|
|
|
db_conn, "presence_stream",
|
|
|
|
entity_column="user_id",
|
|
|
|
stream_column="stream_id",
|
2016-04-01 14:29:05 +02:00
|
|
|
max_value=self._presence_id_gen.get_current_token(),
|
2016-02-15 18:10:40 +01:00
|
|
|
)
|
|
|
|
self.presence_stream_cache = StreamChangeCache(
|
|
|
|
"PresenceStreamChangeCache", min_presence_val,
|
|
|
|
prefilled_cache=presence_cache_prefill
|
|
|
|
)
|
|
|
|
|
2016-03-04 17:19:42 +01:00
|
|
|
push_rules_prefill, push_rules_id = self._get_cache_dict(
|
2016-03-04 17:20:22 +01:00
|
|
|
db_conn, "push_rules_stream",
|
2016-03-04 17:19:42 +01:00
|
|
|
entity_column="user_id",
|
|
|
|
stream_column="stream_id",
|
2016-04-01 14:29:05 +02:00
|
|
|
max_value=self._push_rules_stream_id_gen.get_current_token()[0],
|
2016-03-04 17:19:42 +01:00
|
|
|
)
|
|
|
|
|
2016-03-04 15:44:01 +01:00
|
|
|
self.push_rules_stream_cache = StreamChangeCache(
|
2016-03-04 17:19:42 +01:00
|
|
|
"PushRulesStreamChangeCache", push_rules_id,
|
|
|
|
prefilled_cache=push_rules_prefill,
|
2016-03-04 15:44:01 +01:00
|
|
|
)
|
|
|
|
|
2016-09-07 16:27:07 +02:00
|
|
|
max_device_inbox_id = self._device_inbox_id_gen.get_current_token()
|
|
|
|
device_inbox_prefill, min_device_inbox_id = self._get_cache_dict(
|
|
|
|
db_conn, "device_inbox",
|
|
|
|
entity_column="user_id",
|
|
|
|
stream_column="stream_id",
|
|
|
|
max_value=max_device_inbox_id
|
|
|
|
)
|
|
|
|
self._device_inbox_stream_cache = StreamChangeCache(
|
|
|
|
"DeviceInboxStreamChangeCache", min_device_inbox_id,
|
|
|
|
prefilled_cache=device_inbox_prefill,
|
|
|
|
)
|
|
|
|
# The federation outbox and the local device inbox uses the same
|
|
|
|
# stream_id generator.
|
|
|
|
device_outbox_prefill, min_device_outbox_id = self._get_cache_dict(
|
|
|
|
db_conn, "device_federation_outbox",
|
|
|
|
entity_column="destination",
|
|
|
|
stream_column="stream_id",
|
|
|
|
max_value=max_device_inbox_id,
|
|
|
|
)
|
|
|
|
self._device_federation_outbox_stream_cache = StreamChangeCache(
|
|
|
|
"DeviceInboxStreamChangeCache", min_device_outbox_id,
|
|
|
|
prefilled_cache=device_outbox_prefill,
|
|
|
|
)
|
|
|
|
|
2016-05-27 11:44:44 +02:00
|
|
|
cur = LoggingTransaction(
|
|
|
|
db_conn.cursor(),
|
|
|
|
name="_find_stream_orderings_for_times_txn",
|
|
|
|
database_engine=self.database_engine,
|
|
|
|
after_callbacks=[]
|
|
|
|
)
|
2016-05-20 18:56:10 +02:00
|
|
|
self._find_stream_orderings_for_times_txn(cur)
|
|
|
|
cur.close()
|
|
|
|
|
|
|
|
self.find_stream_orderings_looping_call = self._clock.looping_call(
|
|
|
|
self._find_stream_orderings_for_times, 60 * 60 * 1000
|
|
|
|
)
|
|
|
|
|
2016-01-26 16:51:06 +01:00
|
|
|
super(DataStore, self).__init__(hs)
|
|
|
|
|
2016-02-15 18:10:40 +01:00
|
|
|
def take_presence_startup_info(self):
|
2016-06-03 12:05:53 +02:00
|
|
|
active_on_startup = self._presence_on_startup
|
|
|
|
self._presence_on_startup = None
|
2016-02-15 18:10:40 +01:00
|
|
|
return active_on_startup
|
|
|
|
|
|
|
|
def _get_active_presence(self, db_conn):
|
|
|
|
"""Fetch non-offline presence from the database so that we can register
|
|
|
|
the appropriate time outs.
|
|
|
|
"""
|
|
|
|
|
|
|
|
sql = (
|
2016-02-18 11:11:43 +01:00
|
|
|
"SELECT user_id, state, last_active_ts, last_federation_update_ts,"
|
|
|
|
" last_user_sync_ts, status_msg, currently_active FROM presence_stream"
|
2016-02-15 18:10:40 +01:00
|
|
|
" WHERE state != ?"
|
|
|
|
)
|
|
|
|
sql = self.database_engine.convert_param_style(sql)
|
|
|
|
|
|
|
|
txn = db_conn.cursor()
|
|
|
|
txn.execute(sql, (PresenceState.OFFLINE,))
|
|
|
|
rows = self.cursor_to_dict(txn)
|
2016-02-18 17:39:28 +01:00
|
|
|
txn.close()
|
2016-02-15 18:10:40 +01:00
|
|
|
|
|
|
|
for row in rows:
|
|
|
|
row["currently_active"] = bool(row["currently_active"])
|
|
|
|
|
|
|
|
return [UserPresenceState(**row) for row in rows]
|
|
|
|
|
2015-09-22 13:57:40 +02:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def count_daily_users(self):
|
2015-09-22 14:47:40 +02:00
|
|
|
"""
|
|
|
|
Counts the number of users who used this homeserver in the last 24 hours.
|
|
|
|
"""
|
2015-09-22 13:57:40 +02:00
|
|
|
def _count_users(txn):
|
|
|
|
txn.execute(
|
|
|
|
"SELECT COUNT(DISTINCT user_id) AS users"
|
|
|
|
" FROM user_ips"
|
|
|
|
" WHERE last_seen > ?",
|
|
|
|
# This is close enough to a day for our purposes.
|
|
|
|
(int(self._clock.time_msec()) - (1000 * 60 * 60 * 24),)
|
|
|
|
)
|
|
|
|
rows = self.cursor_to_dict(txn)
|
|
|
|
if rows:
|
|
|
|
return rows[0]["users"]
|
|
|
|
return 0
|
|
|
|
|
|
|
|
ret = yield self.runInteraction("count_users", _count_users)
|
|
|
|
defer.returnValue(ret)
|
|
|
|
|
2014-09-29 15:59:52 +02:00
|
|
|
def get_user_ip_and_agents(self, user):
|
|
|
|
return self._simple_select_list(
|
|
|
|
table="user_ips",
|
2015-04-14 14:54:09 +02:00
|
|
|
keyvalues={"user_id": user.to_string()},
|
2014-09-29 15:59:52 +02:00
|
|
|
retcols=[
|
2015-08-25 17:23:06 +02:00
|
|
|
"access_token", "ip", "user_agent", "last_seen"
|
2014-09-29 15:59:52 +02:00
|
|
|
],
|
2015-03-20 16:59:18 +01:00
|
|
|
desc="get_user_ip_and_agents",
|
2014-09-29 15:59:52 +02:00
|
|
|
)
|
|
|
|
|
2014-08-22 18:00:10 +02:00
|
|
|
|
2015-04-28 14:39:42 +02:00
|
|
|
def are_all_users_on_domain(txn, database_engine, domain):
|
|
|
|
sql = database_engine.convert_param_style(
|
|
|
|
"SELECT COUNT(*) FROM users WHERE name NOT LIKE ?"
|
|
|
|
)
|
2015-04-27 12:46:00 +02:00
|
|
|
pat = "%:" + domain
|
2015-04-28 14:39:42 +02:00
|
|
|
txn.execute(sql, (pat,))
|
|
|
|
num_not_matching = txn.fetchall()[0][0]
|
2015-04-27 12:46:00 +02:00
|
|
|
if num_not_matching == 0:
|
|
|
|
return True
|
2015-04-27 12:49:18 +02:00
|
|
|
return False
|