2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-05 13:01:18 -05:00
|
|
|
# Copyright 2014 - 2016 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-12 22:14:34 -04:00
|
|
|
|
2016-02-05 06:22:30 -05:00
|
|
|
import re
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2014-08-14 11:03:04 -04:00
|
|
|
from synapse.api.errors import StoreError, Codes
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-08-11 12:59:32 -04:00
|
|
|
from ._base import SQLBaseStore
|
2016-01-18 09:09:47 -05:00
|
|
|
from synapse.util.caches.descriptors import cached, cachedInlineCallbacks, cachedList
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
class RegistrationStore(SQLBaseStore):
|
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
super(RegistrationStore, self).__init__(hs)
|
|
|
|
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def add_access_token_to_user(self, user_id, token):
|
|
|
|
"""Adds an access token for the given user.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): The user ID.
|
|
|
|
token (str): The new access token to add.
|
|
|
|
Raises:
|
|
|
|
StoreError if there was a problem adding this.
|
|
|
|
"""
|
2016-03-01 09:32:56 -05:00
|
|
|
next_id = self._access_tokens_id_gen.get_next()
|
2015-04-07 07:05:36 -04:00
|
|
|
|
2015-04-15 05:24:07 -04:00
|
|
|
yield self._simple_insert(
|
2014-08-12 10:10:52 -04:00
|
|
|
"access_tokens",
|
|
|
|
{
|
2015-04-07 07:05:36 -04:00
|
|
|
"id": next_id,
|
2015-03-19 11:59:48 -04:00
|
|
|
"user_id": user_id,
|
2014-08-12 10:10:52 -04:00
|
|
|
"token": token
|
2015-03-20 11:59:18 -04:00
|
|
|
},
|
|
|
|
desc="add_access_token_to_user",
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2015-08-20 11:21:35 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def add_refresh_token_to_user(self, user_id, token):
|
|
|
|
"""Adds a refresh token for the given user.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): The user ID.
|
|
|
|
token (str): The new refresh token to add.
|
|
|
|
Raises:
|
|
|
|
StoreError if there was a problem adding this.
|
|
|
|
"""
|
2016-03-01 09:32:56 -05:00
|
|
|
next_id = self._refresh_tokens_id_gen.get_next()
|
2015-08-20 11:21:35 -04:00
|
|
|
|
|
|
|
yield self._simple_insert(
|
|
|
|
"refresh_tokens",
|
|
|
|
{
|
|
|
|
"id": next_id,
|
|
|
|
"user_id": user_id,
|
|
|
|
"token": token
|
|
|
|
},
|
|
|
|
desc="add_refresh_token_to_user",
|
|
|
|
)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-01-06 06:38:09 -05:00
|
|
|
def register(self, user_id, token, password_hash,
|
2016-03-10 10:58:22 -05:00
|
|
|
was_guest=False, make_guest=False, appservice_id=None):
|
2014-08-12 10:10:52 -04:00
|
|
|
"""Attempts to register an account.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): The desired user ID to register.
|
|
|
|
token (str): The desired access token to use for this user.
|
|
|
|
password_hash (str): Optional. The password hash for this user.
|
2016-01-05 13:01:18 -05:00
|
|
|
was_guest (bool): Optional. Whether this is a guest account being
|
|
|
|
upgraded to a non-guest account.
|
2016-01-06 06:38:09 -05:00
|
|
|
make_guest (boolean): True if the the new user should be guest,
|
|
|
|
false to add a regular user account.
|
2016-03-10 10:58:22 -05:00
|
|
|
appservice_id (str): The ID of the appservice registering the user.
|
2014-08-12 10:10:52 -04:00
|
|
|
Raises:
|
|
|
|
StoreError if the user_id could not be registered.
|
|
|
|
"""
|
2014-10-28 07:18:04 -04:00
|
|
|
yield self.runInteraction(
|
|
|
|
"register",
|
2016-03-10 10:58:22 -05:00
|
|
|
self._register,
|
|
|
|
user_id,
|
|
|
|
token,
|
|
|
|
password_hash,
|
|
|
|
was_guest,
|
|
|
|
make_guest,
|
|
|
|
appservice_id
|
2014-10-28 07:18:04 -04:00
|
|
|
)
|
2016-01-06 06:38:09 -05:00
|
|
|
self.is_guest.invalidate((user_id,))
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-03-10 10:58:22 -05:00
|
|
|
def _register(
|
|
|
|
self,
|
|
|
|
txn,
|
|
|
|
user_id,
|
|
|
|
token,
|
|
|
|
password_hash,
|
|
|
|
was_guest,
|
|
|
|
make_guest,
|
|
|
|
appservice_id
|
|
|
|
):
|
2014-08-12 10:10:52 -04:00
|
|
|
now = int(self.clock.time())
|
|
|
|
|
2016-03-01 09:32:56 -05:00
|
|
|
next_id = self._access_tokens_id_gen.get_next()
|
2015-04-07 07:05:36 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
try:
|
2016-01-05 13:01:18 -05:00
|
|
|
if was_guest:
|
|
|
|
txn.execute("UPDATE users SET"
|
|
|
|
" password_hash = ?,"
|
2016-01-07 05:15:35 -05:00
|
|
|
" upgrade_ts = ?,"
|
2016-01-06 06:38:09 -05:00
|
|
|
" is_guest = ?"
|
2016-01-05 13:01:18 -05:00
|
|
|
" WHERE name = ?",
|
2016-01-11 12:13:52 -05:00
|
|
|
[password_hash, now, 1 if make_guest else 0, user_id])
|
2016-01-05 13:01:18 -05:00
|
|
|
else:
|
2016-01-06 06:38:09 -05:00
|
|
|
txn.execute("INSERT INTO users "
|
2016-03-10 10:58:22 -05:00
|
|
|
"("
|
|
|
|
" name,"
|
|
|
|
" password_hash,"
|
|
|
|
" creation_ts,"
|
|
|
|
" is_guest,"
|
|
|
|
" appservice_id"
|
|
|
|
") "
|
|
|
|
"VALUES (?,?,?,?,?)",
|
|
|
|
[
|
|
|
|
user_id,
|
|
|
|
password_hash,
|
|
|
|
now,
|
|
|
|
1 if make_guest else 0,
|
|
|
|
appservice_id,
|
|
|
|
])
|
2015-04-08 11:53:48 -04:00
|
|
|
except self.database_engine.module.IntegrityError:
|
2014-11-20 12:26:36 -05:00
|
|
|
raise StoreError(
|
|
|
|
400, "User ID already taken.", errcode=Codes.USER_IN_USE
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-11-04 12:29:07 -05:00
|
|
|
if token:
|
|
|
|
# it's possible for this to get a conflict, but only for a single user
|
|
|
|
# since tokens are namespaced based on their user ID
|
|
|
|
txn.execute(
|
|
|
|
"INSERT INTO access_tokens(id, user_id, token)"
|
|
|
|
" VALUES (?,?,?)",
|
|
|
|
(next_id, user_id, token,)
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def get_user_by_id(self, user_id):
|
2015-04-28 08:39:42 -04:00
|
|
|
return self._simple_select_one(
|
2015-03-25 13:15:20 -04:00
|
|
|
table="users",
|
|
|
|
keyvalues={
|
|
|
|
"name": user_id,
|
|
|
|
},
|
2016-01-06 06:38:09 -05:00
|
|
|
retcols=["name", "password_hash", "is_guest"],
|
2015-03-25 13:15:20 -04:00
|
|
|
allow_none=True,
|
2016-02-03 11:22:35 -05:00
|
|
|
desc="get_user_by_id",
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2015-08-26 08:42:45 -04:00
|
|
|
def get_users_by_id_case_insensitive(self, user_id):
|
|
|
|
"""Gets users that match user_id case insensitively.
|
|
|
|
Returns a mapping of user_id -> password_hash.
|
|
|
|
"""
|
|
|
|
def f(txn):
|
|
|
|
sql = (
|
2016-01-06 12:16:02 -05:00
|
|
|
"SELECT name, password_hash FROM users"
|
2015-08-26 08:42:45 -04:00
|
|
|
" WHERE lower(name) = lower(?)"
|
|
|
|
)
|
|
|
|
txn.execute(sql, (user_id,))
|
|
|
|
return dict(txn.fetchall())
|
|
|
|
|
|
|
|
return self.runInteraction("get_users_by_id_case_insensitive", f)
|
|
|
|
|
2015-03-24 11:33:48 -04:00
|
|
|
@defer.inlineCallbacks
|
2015-03-23 10:20:28 -04:00
|
|
|
def user_set_password_hash(self, user_id, password_hash):
|
|
|
|
"""
|
|
|
|
NB. This does *not* evict any cache because the one use for this
|
|
|
|
removes most of the entries subsequently anyway so it would be
|
|
|
|
pointless. Use flush_user separately.
|
|
|
|
"""
|
2015-03-24 11:33:48 -04:00
|
|
|
yield self._simple_update_one('users', {
|
2015-03-23 10:20:28 -04:00
|
|
|
'name': user_id
|
|
|
|
}, {
|
|
|
|
'password_hash': password_hash
|
|
|
|
})
|
|
|
|
|
2015-03-24 11:33:48 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-03-11 11:27:50 -05:00
|
|
|
def user_delete_access_tokens(self, user_id, except_token_ids=[]):
|
2016-03-11 08:14:18 -05:00
|
|
|
def f(txn):
|
2016-03-11 11:45:27 -05:00
|
|
|
sql = "SELECT token FROM access_tokens WHERE user_id = ?"
|
|
|
|
clauses = [user_id]
|
|
|
|
|
|
|
|
if except_token_ids:
|
|
|
|
sql += " AND id NOT IN (%s)" % (
|
2016-03-11 11:27:50 -05:00
|
|
|
",".join(["?" for _ in except_token_ids]),
|
2016-03-11 11:45:27 -05:00
|
|
|
)
|
|
|
|
clauses += except_token_ids
|
|
|
|
|
|
|
|
txn.execute(sql, clauses)
|
2016-03-11 11:27:50 -05:00
|
|
|
|
2016-03-11 11:45:27 -05:00
|
|
|
rows = txn.fetchall()
|
2016-03-11 11:27:50 -05:00
|
|
|
|
2016-03-11 11:45:27 -05:00
|
|
|
n = 100
|
|
|
|
chunks = [rows[i:i + n] for i in xrange(0, len(rows), n)]
|
|
|
|
for chunk in chunks:
|
|
|
|
for row in chunk:
|
2016-03-11 11:27:50 -05:00
|
|
|
txn.call_after(self.get_user_by_access_token.invalidate, (row[0],))
|
|
|
|
|
|
|
|
txn.execute(
|
|
|
|
"DELETE FROM access_tokens WHERE token in (%s)" % (
|
2016-03-11 11:45:27 -05:00
|
|
|
",".join(["?" for _ in chunk]),
|
|
|
|
), [r[0] for r in chunk]
|
2016-03-11 11:27:50 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
yield self.runInteraction("user_delete_access_tokens", f)
|
|
|
|
|
|
|
|
def delete_access_token(self, access_token):
|
|
|
|
def f(txn):
|
|
|
|
self._simple_delete_one_txn(
|
|
|
|
txn,
|
|
|
|
table="access_tokens",
|
|
|
|
keyvalues={
|
|
|
|
"token": access_token
|
|
|
|
},
|
2016-03-11 08:14:18 -05:00
|
|
|
)
|
2016-03-11 11:27:50 -05:00
|
|
|
|
|
|
|
txn.call_after(self.get_user_by_access_token.invalidate, (access_token,))
|
|
|
|
|
|
|
|
return self.runInteraction("delete_access_token", f)
|
2015-03-25 13:15:20 -04:00
|
|
|
|
2015-03-17 13:24:51 -04:00
|
|
|
@cached()
|
2015-08-20 11:01:29 -04:00
|
|
|
def get_user_by_access_token(self, token):
|
2014-08-12 10:10:52 -04:00
|
|
|
"""Get a user from the given access token.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
token (str): The access token of a user.
|
|
|
|
Returns:
|
2015-08-25 11:29:39 -04:00
|
|
|
dict: Including the name (user_id) and the ID of their access token.
|
2014-08-12 10:10:52 -04:00
|
|
|
Raises:
|
|
|
|
StoreError if no user was found.
|
|
|
|
"""
|
2014-09-29 09:59:52 -04:00
|
|
|
return self.runInteraction(
|
2015-08-20 11:01:29 -04:00
|
|
|
"get_user_by_access_token",
|
2014-09-29 09:59:52 -04:00
|
|
|
self._query_for_auth,
|
|
|
|
token
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-08-20 11:21:35 -04:00
|
|
|
def exchange_refresh_token(self, refresh_token, token_generator):
|
|
|
|
"""Exchange a refresh token for a new access token and refresh token.
|
|
|
|
|
|
|
|
Doing so invalidates the old refresh token - refresh tokens are single
|
|
|
|
use.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
token (str): The refresh token of a user.
|
|
|
|
token_generator (fn: str -> str): Function which, when given a
|
|
|
|
user ID, returns a unique refresh token for that user. This
|
|
|
|
function must never return the same value twice.
|
|
|
|
Returns:
|
|
|
|
tuple of (user_id, refresh_token)
|
|
|
|
Raises:
|
|
|
|
StoreError if no user was found with that refresh token.
|
|
|
|
"""
|
|
|
|
return self.runInteraction(
|
|
|
|
"exchange_refresh_token",
|
|
|
|
self._exchange_refresh_token,
|
|
|
|
refresh_token,
|
|
|
|
token_generator
|
|
|
|
)
|
|
|
|
|
|
|
|
def _exchange_refresh_token(self, txn, old_token, token_generator):
|
|
|
|
sql = "SELECT user_id FROM refresh_tokens WHERE token = ?"
|
|
|
|
txn.execute(sql, (old_token,))
|
|
|
|
rows = self.cursor_to_dict(txn)
|
|
|
|
if not rows:
|
|
|
|
raise StoreError(403, "Did not recognize refresh token")
|
|
|
|
user_id = rows[0]["user_id"]
|
|
|
|
|
|
|
|
# TODO(danielwh): Maybe perform a validation on the macaroon that
|
|
|
|
# macaroon.user_id == user_id.
|
|
|
|
|
|
|
|
new_token = token_generator(user_id)
|
|
|
|
sql = "UPDATE refresh_tokens SET token = ? WHERE token = ?"
|
|
|
|
txn.execute(sql, (new_token, old_token,))
|
|
|
|
|
|
|
|
return user_id, new_token
|
|
|
|
|
2014-11-10 13:24:43 -05:00
|
|
|
@defer.inlineCallbacks
|
2014-09-29 08:35:38 -04:00
|
|
|
def is_server_admin(self, user):
|
2014-11-10 13:24:43 -05:00
|
|
|
res = yield self._simple_select_one_onecol(
|
2014-09-29 08:35:38 -04:00
|
|
|
table="users",
|
|
|
|
keyvalues={"name": user.to_string()},
|
|
|
|
retcol="admin",
|
2014-11-10 13:24:43 -05:00
|
|
|
allow_none=True,
|
2015-03-20 11:59:18 -04:00
|
|
|
desc="is_server_admin",
|
2014-09-29 08:35:38 -04:00
|
|
|
)
|
|
|
|
|
2014-11-10 13:24:43 -05:00
|
|
|
defer.returnValue(res if res else False)
|
|
|
|
|
2016-01-06 06:38:09 -05:00
|
|
|
@cachedInlineCallbacks()
|
2016-01-18 09:09:47 -05:00
|
|
|
def is_guest(self, user_id):
|
2016-01-06 06:38:09 -05:00
|
|
|
res = yield self._simple_select_one_onecol(
|
|
|
|
table="users",
|
2016-01-18 09:09:47 -05:00
|
|
|
keyvalues={"name": user_id},
|
2016-01-06 06:38:09 -05:00
|
|
|
retcol="is_guest",
|
|
|
|
allow_none=True,
|
|
|
|
desc="is_guest",
|
|
|
|
)
|
|
|
|
|
|
|
|
defer.returnValue(res if res else False)
|
|
|
|
|
2016-01-18 09:09:47 -05:00
|
|
|
@cachedList(cache=is_guest.cache, list_name="user_ids", num_args=1,
|
|
|
|
inlineCallbacks=True)
|
|
|
|
def are_guests(self, user_ids):
|
|
|
|
sql = "SELECT name, is_guest FROM users WHERE name IN (%s)" % (
|
|
|
|
",".join("?" for _ in user_ids),
|
|
|
|
)
|
|
|
|
|
|
|
|
rows = yield self._execute(
|
|
|
|
"are_guests", self.cursor_to_dict, sql, *user_ids
|
|
|
|
)
|
|
|
|
|
|
|
|
result = {user_id: False for user_id in user_ids}
|
|
|
|
|
|
|
|
result.update({
|
|
|
|
row["name"]: bool(row["is_guest"])
|
|
|
|
for row in rows
|
|
|
|
})
|
|
|
|
|
|
|
|
defer.returnValue(result)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
def _query_for_auth(self, txn, token):
|
2014-09-29 09:59:52 -04:00
|
|
|
sql = (
|
2016-01-06 06:38:09 -05:00
|
|
|
"SELECT users.name, users.is_guest, access_tokens.id as token_id"
|
2014-11-20 12:26:36 -05:00
|
|
|
" FROM users"
|
2015-03-19 11:59:48 -04:00
|
|
|
" INNER JOIN access_tokens on users.name = access_tokens.user_id"
|
2014-11-20 12:26:36 -05:00
|
|
|
" WHERE token = ?"
|
2014-09-29 09:59:52 -04:00
|
|
|
)
|
|
|
|
|
2015-03-19 11:59:48 -04:00
|
|
|
txn.execute(sql, (token,))
|
|
|
|
rows = self.cursor_to_dict(txn)
|
2014-09-29 09:59:52 -04:00
|
|
|
if rows:
|
|
|
|
return rows[0]
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-03-24 13:24:15 -04:00
|
|
|
return None
|
2015-04-17 11:44:49 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def user_add_threepid(self, user_id, medium, address, validated_at, added_at):
|
|
|
|
yield self._simple_upsert("user_threepids", {
|
|
|
|
"medium": medium,
|
|
|
|
"address": address,
|
|
|
|
}, {
|
2015-12-15 12:02:21 -05:00
|
|
|
"user_id": user_id,
|
2015-04-17 11:44:49 -04:00
|
|
|
"validated_at": validated_at,
|
|
|
|
"added_at": added_at,
|
2015-04-17 11:46:45 -04:00
|
|
|
})
|
2015-04-17 12:20:18 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def user_get_threepids(self, user_id):
|
|
|
|
ret = yield self._simple_select_list(
|
|
|
|
"user_threepids", {
|
2015-04-29 11:57:14 -04:00
|
|
|
"user_id": user_id
|
2015-04-17 12:20:18 -04:00
|
|
|
},
|
|
|
|
['medium', 'address', 'validated_at', 'added_at'],
|
|
|
|
'user_get_threepids'
|
|
|
|
)
|
2015-04-17 14:53:47 -04:00
|
|
|
defer.returnValue(ret)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2015-05-01 10:04:20 -04:00
|
|
|
def get_user_id_by_threepid(self, medium, address):
|
2015-04-17 14:53:47 -04:00
|
|
|
ret = yield self._simple_select_one(
|
|
|
|
"user_threepids",
|
|
|
|
{
|
|
|
|
"medium": medium,
|
|
|
|
"address": address
|
|
|
|
},
|
2015-05-01 10:04:20 -04:00
|
|
|
['user_id'], True, 'get_user_id_by_threepid'
|
2015-04-17 14:53:47 -04:00
|
|
|
)
|
|
|
|
if ret:
|
2015-05-01 10:04:20 -04:00
|
|
|
defer.returnValue(ret['user_id'])
|
2015-04-17 14:56:04 -04:00
|
|
|
defer.returnValue(None)
|
2015-09-22 07:57:40 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def count_all_users(self):
|
2015-09-22 08:47:40 -04:00
|
|
|
"""Counts all users registered on the homeserver."""
|
2015-09-22 07:57:40 -04:00
|
|
|
def _count_users(txn):
|
|
|
|
txn.execute("SELECT COUNT(*) AS users FROM users")
|
|
|
|
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)
|
2016-02-05 06:22:30 -05:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def find_next_generated_user_id_localpart(self):
|
|
|
|
"""
|
|
|
|
Gets the localpart of the next generated user ID.
|
|
|
|
|
|
|
|
Generated user IDs are integers, and we aim for them to be as small as
|
|
|
|
we can. Unfortunately, it's possible some of them are already taken by
|
|
|
|
existing users, and there may be gaps in the already taken range. This
|
|
|
|
function returns the start of the first allocatable gap. This is to
|
|
|
|
avoid the case of ID 10000000 being pre-allocated, so us wasting the
|
|
|
|
first (and shortest) many generated user IDs.
|
|
|
|
"""
|
|
|
|
def _find_next_generated_user_id(txn):
|
|
|
|
txn.execute("SELECT name FROM users")
|
|
|
|
rows = self.cursor_to_dict(txn)
|
|
|
|
|
|
|
|
regex = re.compile("^@(\d+):")
|
|
|
|
|
|
|
|
found = set()
|
|
|
|
|
|
|
|
for r in rows:
|
|
|
|
user_id = r["name"]
|
|
|
|
match = regex.search(user_id)
|
|
|
|
if match:
|
|
|
|
found.add(int(match.group(1)))
|
|
|
|
for i in xrange(len(found) + 1):
|
|
|
|
if i not in found:
|
|
|
|
return i
|
|
|
|
|
|
|
|
defer.returnValue((yield self.runInteraction(
|
|
|
|
"find_next_generated_user_id",
|
|
|
|
_find_next_generated_user_id
|
|
|
|
)))
|
2016-02-24 09:41:25 -05:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_3pid_guest_access_token(self, medium, address):
|
|
|
|
ret = yield self._simple_select_one(
|
|
|
|
"threepid_guest_access_tokens",
|
|
|
|
{
|
|
|
|
"medium": medium,
|
|
|
|
"address": address
|
|
|
|
},
|
|
|
|
["guest_access_token"], True, 'get_3pid_guest_access_token'
|
|
|
|
)
|
|
|
|
if ret:
|
|
|
|
defer.returnValue(ret["guest_access_token"])
|
|
|
|
defer.returnValue(None)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def save_or_get_3pid_guest_access_token(
|
|
|
|
self, medium, address, access_token, inviter_user_id
|
|
|
|
):
|
|
|
|
"""
|
|
|
|
Gets the 3pid's guest access token if exists, else saves access_token.
|
|
|
|
|
|
|
|
:param medium (str): Medium of the 3pid. Must be "email".
|
|
|
|
:param address (str): 3pid address.
|
|
|
|
:param access_token (str): The access token to persist if none is
|
|
|
|
already persisted.
|
|
|
|
:param inviter_user_id (str): User ID of the inviter.
|
|
|
|
:return (deferred str): Whichever access token is persisted at the end
|
|
|
|
of this function call.
|
|
|
|
"""
|
|
|
|
def insert(txn):
|
|
|
|
txn.execute(
|
|
|
|
"INSERT INTO threepid_guest_access_tokens "
|
|
|
|
"(medium, address, guest_access_token, first_inviter) "
|
|
|
|
"VALUES (?, ?, ?, ?)",
|
|
|
|
(medium, address, access_token, inviter_user_id)
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
|
|
|
yield self.runInteraction("save_3pid_guest_access_token", insert)
|
|
|
|
defer.returnValue(access_token)
|
|
|
|
except self.database_engine.module.IntegrityError:
|
|
|
|
ret = yield self.get_3pid_guest_access_token(medium, address)
|
|
|
|
defer.returnValue(ret)
|