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
|
2015-03-09 13:01:19 -04:00
|
|
|
from .appservice import (
|
|
|
|
ApplicationServiceStore, ApplicationServiceTransactionStore
|
|
|
|
)
|
2015-03-20 13:08:15 -04:00
|
|
|
from ._base import Cache
|
2014-08-12 10:10:52 -04:00
|
|
|
from .directory import DirectoryStore
|
2015-03-20 09:52:56 -04:00
|
|
|
from .events import EventsStore
|
2014-08-12 10:10:52 -04:00
|
|
|
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
|
2016-01-04 09:05:37 -05:00
|
|
|
from .event_push_actions import EventPushActionsStore
|
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
|
2015-07-06 13:46:47 -04:00
|
|
|
from .end_to_end_keys import EndToEndKeyStore
|
2014-10-15 12:09:04 -04:00
|
|
|
|
2015-07-07 05:55:31 -04:00
|
|
|
from .receipts import ReceiptsStore
|
2015-10-09 10:48:31 -04:00
|
|
|
from .search import SearchStore
|
2015-10-28 12:06:57 -04:00
|
|
|
from .tags import TagsStore
|
2015-12-01 13:41:32 -05:00
|
|
|
from .account_data import AccountDataStore
|
2015-07-07 05:55:31 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-19 09:20:03 -04:00
|
|
|
import logging
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
2014-08-19 09:20:03 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2015-03-20 13:08:15 -04:00
|
|
|
# Number of msec of granularity to store the user IP 'last seen' time. Smaller
|
|
|
|
# times give more inserts into the database even for readonly API hits
|
|
|
|
# 120 seconds == 2 minutes
|
|
|
|
LAST_SEEN_GRANULARITY = 120*1000
|
2014-08-19 09:20:03 -04:00
|
|
|
|
2014-09-10 10:42:15 -04:00
|
|
|
|
2014-08-14 12:34:37 -04:00
|
|
|
class DataStore(RoomMemberStore, RoomStore,
|
2015-03-20 09:52:56 -04:00
|
|
|
RegistrationStore, StreamStore, ProfileStore,
|
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-03-20 09:52:56 -04:00
|
|
|
PushRuleStore,
|
2015-03-16 06:16:59 -04:00
|
|
|
ApplicationServiceTransactionStore,
|
2015-03-20 09:52:56 -04:00
|
|
|
EventsStore,
|
2015-07-07 05:55:31 -04:00
|
|
|
ReceiptsStore,
|
2015-07-06 13:46:47 -04:00
|
|
|
EndToEndKeyStore,
|
2015-10-09 10:48:31 -04:00
|
|
|
SearchStore,
|
2015-10-28 12:06:57 -04:00
|
|
|
TagsStore,
|
2015-12-01 13:41:32 -05:00
|
|
|
AccountDataStore,
|
2016-01-04 09:05:37 -05:00
|
|
|
EventPushActionsStore
|
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
|
|
|
|
|
2015-03-20 13:08:15 -04:00
|
|
|
self.client_ip_last_seen = Cache(
|
|
|
|
name="client_ip_last_seen",
|
|
|
|
keylen=4,
|
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
|
2015-08-25 11:23:06 -04:00
|
|
|
def insert_client_ip(self, user, access_token, ip, user_agent):
|
2015-03-20 13:08:15 -04:00
|
|
|
now = int(self._clock.time_msec())
|
2015-08-25 11:23:06 -04:00
|
|
|
key = (user.to_string(), access_token, ip)
|
2014-08-18 11:00:46 -04:00
|
|
|
|
2015-03-20 13:08:15 -04:00
|
|
|
try:
|
2015-08-07 06:52:21 -04:00
|
|
|
last_seen = self.client_ip_last_seen.get(key)
|
2015-03-20 13:08:15 -04:00
|
|
|
except KeyError:
|
|
|
|
last_seen = None
|
2014-08-19 09:20:03 -04:00
|
|
|
|
2015-03-20 13:08:15 -04:00
|
|
|
# Rate-limited inserts
|
|
|
|
if last_seen is not None and (now - last_seen) < LAST_SEEN_GRANULARITY:
|
|
|
|
defer.returnValue(None)
|
2014-08-18 11:00:46 -04:00
|
|
|
|
2015-08-07 06:52:21 -04:00
|
|
|
self.client_ip_last_seen.prefill(key, now)
|
2014-08-18 11:00:46 -04:00
|
|
|
|
2015-05-01 05:46:48 -04:00
|
|
|
# It's safe not to lock here: a) no unique constraint,
|
|
|
|
# b) LAST_SEEN_GRANULARITY makes concurrent updates incredibly unlikely
|
2015-04-07 13:05:39 -04:00
|
|
|
yield self._simple_upsert(
|
2014-09-26 11:36:24 -04:00
|
|
|
"user_ips",
|
2015-03-24 12:17:39 -04:00
|
|
|
keyvalues={
|
2015-04-14 08:54:09 -04:00
|
|
|
"user_id": user.to_string(),
|
2014-09-26 11:36:24 -04:00
|
|
|
"access_token": access_token,
|
2014-09-29 08:35:15 -04:00
|
|
|
"ip": ip,
|
|
|
|
"user_agent": user_agent,
|
2015-03-24 12:17:39 -04:00
|
|
|
},
|
|
|
|
values={
|
2015-03-20 13:08:15 -04:00
|
|
|
"last_seen": now,
|
2015-03-19 11:59:48 -04:00
|
|
|
},
|
2015-03-20 11:59:18 -04:00
|
|
|
desc="insert_client_ip",
|
2015-05-01 05:46:48 -04:00
|
|
|
lock=False,
|
2014-09-26 11:36:24 -04:00
|
|
|
)
|
|
|
|
|
2015-09-22 07:57:40 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def count_daily_users(self):
|
2015-09-22 08:47:40 -04:00
|
|
|
"""
|
|
|
|
Counts the number of users who used this homeserver in the last 24 hours.
|
|
|
|
"""
|
2015-09-22 07:57:40 -04: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 09:59:52 -04:00
|
|
|
def get_user_ip_and_agents(self, user):
|
|
|
|
return self._simple_select_list(
|
|
|
|
table="user_ips",
|
2015-04-14 08:54:09 -04:00
|
|
|
keyvalues={"user_id": user.to_string()},
|
2014-09-29 09:59:52 -04:00
|
|
|
retcols=[
|
2015-08-25 11:23:06 -04:00
|
|
|
"access_token", "ip", "user_agent", "last_seen"
|
2014-09-29 09:59:52 -04:00
|
|
|
],
|
2015-03-20 11:59:18 -04:00
|
|
|
desc="get_user_ip_and_agents",
|
2014-09-29 09:59:52 -04:00
|
|
|
)
|
|
|
|
|
2014-08-22 12:00:10 -04:00
|
|
|
|
2015-04-28 08:39:42 -04: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 06:46:00 -04:00
|
|
|
pat = "%:" + domain
|
2015-04-28 08:39:42 -04:00
|
|
|
txn.execute(sql, (pat,))
|
|
|
|
num_not_matching = txn.fetchall()[0][0]
|
2015-04-27 06:46:00 -04:00
|
|
|
if num_not_matching == 0:
|
|
|
|
return True
|
2015-04-27 06:49:18 -04:00
|
|
|
return False
|