Support wildcard device_ids for direct to device messages

pull/1084/head
Mark Haines 2016-09-08 15:13:05 +01:00
parent 2117c409a0
commit a1c8f268e5
1 changed files with 36 additions and 18 deletions

View File

@ -130,19 +130,41 @@ class DeviceInboxStore(SQLBaseStore):
def _add_messages_to_local_device_inbox_txn(self, txn, stream_id, def _add_messages_to_local_device_inbox_txn(self, txn, stream_id,
messages_by_user_then_device): messages_by_user_then_device):
local_users_and_devices = set() local_by_user_then_device = {}
for user_id, messages_by_device in messages_by_user_then_device.items(): for user_id, messages_by_device in messages_by_user_then_device.items():
messages_json_for_user = {}
devices = messages_by_device.keys() devices = messages_by_device.keys()
sql = ( if len(devices) == 1 and devices[0] == "*":
"SELECT user_id, device_id FROM devices" # Handle wildcard device_ids.
" WHERE user_id = ? AND device_id IN (" sql = (
+ ",".join("?" * len(devices)) "SELECT device_id FROM devices"
+ ")" " WHERE user_id = ?"
) )
# TODO: Maybe this needs to be done in batches if there are txn.execute(sql, (user_id,))
# too many local devices for a given user. message_json = ujson.dumps(messages_by_device["*"])
txn.execute(sql, [user_id] + devices) for row in txn.fetchall():
local_users_and_devices.update(map(tuple, txn.fetchall())) # Add the message for all devices for this user on this
# server.
device = row[0]
messages_json_for_user[device] = message_json
else:
sql = (
"SELECT device_id FROM devices"
" WHERE user_id = ? AND device_id IN ("
+ ",".join("?" * len(devices))
+ ")"
)
# TODO: Maybe this needs to be done in batches if there are
# too many local devices for a given user.
txn.execute(sql, [user_id] + devices)
for row in txn.fetchall():
# Only insert into the local inbox if the device exists on
# this server
device = row[0]
message_json = ujson.dumps(messages_by_device[device])
messages_json_for_user[device] = message_json
local_by_user_then_device[user_id] = messages_json_for_user
sql = ( sql = (
"INSERT INTO device_inbox" "INSERT INTO device_inbox"
@ -150,13 +172,9 @@ class DeviceInboxStore(SQLBaseStore):
" VALUES (?,?,?,?)" " VALUES (?,?,?,?)"
) )
rows = [] rows = []
for user_id, messages_by_device in messages_by_user_then_device.items(): for user_id, messages_by_device in local_by_user_then_device.items():
for device_id, message in messages_by_device.items(): for device_id, message_json in messages_by_device.items():
message_json = ujson.dumps(message) rows.append((user_id, device_id, stream_id, message_json))
# Only insert into the local inbox if the device exists on
# this server
if (user_id, device_id) in local_users_and_devices:
rows.append((user_id, device_id, stream_id, message_json))
txn.executemany(sql, rows) txn.executemany(sql, rows)