2019-08-18 00:24:46 +02:00
|
|
|
from typing import Dict, List, Optional, Set, Tuple
|
2020-03-27 16:17:38 +01:00
|
|
|
from typing_extensions import TypedDict
|
2019-08-18 00:40:35 +02:00
|
|
|
from zerver.lib.types import DisplayRecipientT, UserDisplayRecipient
|
2019-08-15 00:44:33 +02:00
|
|
|
|
2019-08-07 00:18:13 +02:00
|
|
|
from zerver.lib.cache import cache_with_key, display_recipient_cache_key, generic_bulk_cached_fetch, \
|
|
|
|
display_recipient_bulk_get_users_by_id_cache_key
|
|
|
|
from zerver.models import Recipient, Stream, UserProfile, bulk_get_huddle_user_ids
|
2019-08-15 00:44:33 +02:00
|
|
|
|
2019-08-20 21:22:37 +02:00
|
|
|
display_recipient_fields = [
|
|
|
|
"id",
|
|
|
|
"email",
|
|
|
|
"full_name",
|
|
|
|
"short_name",
|
|
|
|
"is_mirror_dummy",
|
|
|
|
]
|
|
|
|
|
2020-03-27 16:17:38 +01:00
|
|
|
TinyStreamResult = TypedDict('TinyStreamResult', {
|
|
|
|
'id': int,
|
|
|
|
'name': str,
|
|
|
|
})
|
|
|
|
|
2019-08-15 00:44:33 +02:00
|
|
|
@cache_with_key(lambda *args: display_recipient_cache_key(args[0]),
|
|
|
|
timeout=3600*24*7)
|
|
|
|
def get_display_recipient_remote_cache(recipient_id: int, recipient_type: int,
|
2019-08-18 00:40:35 +02:00
|
|
|
recipient_type_id: Optional[int]) -> DisplayRecipientT:
|
2019-08-15 00:44:33 +02:00
|
|
|
"""
|
|
|
|
returns: an appropriate object describing the recipient. For a
|
|
|
|
stream this will be the stream name as a string. For a huddle or
|
|
|
|
personal, it will be an array of dicts about each recipient.
|
|
|
|
"""
|
|
|
|
if recipient_type == Recipient.STREAM:
|
|
|
|
assert recipient_type_id is not None
|
2019-08-18 01:00:04 +02:00
|
|
|
stream = Stream.objects.values('name').get(id=recipient_type_id)
|
|
|
|
return stream['name']
|
2019-08-15 00:44:33 +02:00
|
|
|
|
|
|
|
# The main priority for ordering here is being deterministic.
|
|
|
|
# Right now, we order by ID, which matches the ordering of user
|
|
|
|
# names in the left sidebar.
|
2019-08-20 21:22:37 +02:00
|
|
|
user_profile_list = UserProfile.objects.filter(
|
|
|
|
subscription__recipient_id=recipient_id
|
|
|
|
).order_by('id').values(*display_recipient_fields)
|
2019-08-18 01:00:04 +02:00
|
|
|
return list(user_profile_list)
|
|
|
|
|
|
|
|
def user_dict_id_fetcher(user_dict: UserDisplayRecipient) -> int:
|
|
|
|
return user_dict['id']
|
|
|
|
|
|
|
|
def bulk_get_user_profile_by_id(uids: List[int]) -> Dict[int, UserDisplayRecipient]:
|
2019-08-07 00:18:13 +02:00
|
|
|
return generic_bulk_cached_fetch(
|
|
|
|
# Use a separate cache key to protect us from conflicts with
|
|
|
|
# the get_user_profile_by_id cache.
|
2019-08-18 01:00:04 +02:00
|
|
|
# (Since we fetch only several fields here)
|
2019-08-07 00:18:13 +02:00
|
|
|
cache_key_function=display_recipient_bulk_get_users_by_id_cache_key,
|
2019-08-20 21:22:37 +02:00
|
|
|
query_function=lambda ids: list(
|
|
|
|
UserProfile.objects.filter(id__in=ids).values(*display_recipient_fields)),
|
2019-08-18 01:00:04 +02:00
|
|
|
object_ids=uids,
|
|
|
|
id_fetcher=user_dict_id_fetcher
|
2019-08-07 00:18:13 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
def bulk_fetch_display_recipients(recipient_tuples: Set[Tuple[int, int, int]]
|
2019-08-18 00:40:35 +02:00
|
|
|
) -> Dict[int, DisplayRecipientT]:
|
2019-08-07 00:18:13 +02:00
|
|
|
"""
|
|
|
|
Takes set of tuples of the form (recipient_id, recipient_type, recipient_type_id)
|
|
|
|
Returns dict mapping recipient_id to corresponding display_recipient
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Build dict mapping recipient id to (type, type_id) of the corresponding recipient:
|
|
|
|
recipient_id_to_type_pair_dict = {
|
|
|
|
recipient[0]: (recipient[1], recipient[2])
|
|
|
|
for recipient in recipient_tuples
|
|
|
|
}
|
|
|
|
# And the inverse mapping:
|
|
|
|
type_pair_to_recipient_id_dict = {
|
|
|
|
(recipient[1], recipient[2]): recipient[0]
|
|
|
|
for recipient in recipient_tuples
|
|
|
|
}
|
|
|
|
|
|
|
|
stream_recipients = set(
|
|
|
|
recipient for recipient in recipient_tuples if recipient[1] == Recipient.STREAM
|
|
|
|
)
|
|
|
|
personal_and_huddle_recipients = recipient_tuples - stream_recipients
|
|
|
|
|
2020-03-27 16:17:38 +01:00
|
|
|
def stream_query_function(recipient_ids: List[int]) -> List[TinyStreamResult]:
|
2019-08-07 00:18:13 +02:00
|
|
|
stream_ids = [
|
|
|
|
recipient_id_to_type_pair_dict[recipient_id][1] for recipient_id in recipient_ids
|
|
|
|
]
|
2020-03-27 16:17:38 +01:00
|
|
|
return Stream.objects.filter(id__in=stream_ids).values('name', 'id')
|
2019-08-07 00:18:13 +02:00
|
|
|
|
2020-03-27 16:17:38 +01:00
|
|
|
def stream_id_fetcher(stream: TinyStreamResult) -> int:
|
|
|
|
return type_pair_to_recipient_id_dict[(Recipient.STREAM, stream['id'])]
|
2019-08-07 00:18:13 +02:00
|
|
|
|
2020-03-27 16:17:38 +01:00
|
|
|
def stream_cache_transformer(stream: TinyStreamResult) -> str:
|
|
|
|
return stream['name']
|
2019-08-07 00:18:13 +02:00
|
|
|
|
|
|
|
# ItemT = Stream, CacheItemT = str (name), ObjKT = int (recipient_id)
|
|
|
|
stream_display_recipients = generic_bulk_cached_fetch(
|
|
|
|
cache_key_function=display_recipient_cache_key,
|
|
|
|
query_function=stream_query_function,
|
|
|
|
object_ids=[recipient[0] for recipient in stream_recipients],
|
|
|
|
id_fetcher=stream_id_fetcher,
|
|
|
|
cache_transformer=stream_cache_transformer,
|
|
|
|
) # type: Dict[int, str]
|
|
|
|
|
|
|
|
# Now we have to create display_recipients for personal and huddle messages.
|
|
|
|
# We do this via generic_bulk_cached_fetch, supplying apprioprate functions to it.
|
|
|
|
|
2019-08-18 01:00:04 +02:00
|
|
|
def personal_and_huddle_query_function(recipient_ids: List[int]
|
|
|
|
) -> List[Tuple[int, List[UserDisplayRecipient]]]:
|
2019-08-07 00:18:13 +02:00
|
|
|
"""
|
|
|
|
Return a list of tuples of the form (recipient_id, [list of UserProfiles])
|
|
|
|
where [list of UserProfiles] has users corresponding to the recipient,
|
|
|
|
so the receiving userin Recipient.PERSONAL case,
|
|
|
|
or in Personal.HUDDLE case - users in the huddle.
|
|
|
|
This is a pretty hacky return value, but it needs to be in this form,
|
|
|
|
for this function to work as the query_function in generic_bulk_cached_fetch.
|
|
|
|
"""
|
|
|
|
|
|
|
|
recipients = [Recipient(
|
|
|
|
id=recipient_id,
|
|
|
|
type=recipient_id_to_type_pair_dict[recipient_id][0],
|
|
|
|
type_id=recipient_id_to_type_pair_dict[recipient_id][1]
|
|
|
|
) for recipient_id in recipient_ids]
|
|
|
|
|
|
|
|
# Find all user ids whose UserProfiles we will need to fetch:
|
|
|
|
user_ids_to_fetch = set() # type: Set[int]
|
|
|
|
huddle_user_ids = {} # type: Dict[int, List[int]]
|
|
|
|
huddle_user_ids = bulk_get_huddle_user_ids([recipient for recipient in recipients
|
|
|
|
if recipient.type == Recipient.HUDDLE])
|
|
|
|
for recipient in recipients:
|
|
|
|
if recipient.type == Recipient.PERSONAL:
|
|
|
|
user_ids_to_fetch.add(recipient.type_id)
|
|
|
|
else:
|
|
|
|
user_ids_to_fetch = user_ids_to_fetch.union(huddle_user_ids[recipient.id])
|
|
|
|
|
|
|
|
# Fetch the needed UserProfiles:
|
2019-08-18 01:00:04 +02:00
|
|
|
user_profiles = bulk_get_user_profile_by_id(list(user_ids_to_fetch)) # type: Dict[int, UserDisplayRecipient]
|
2019-08-07 00:18:13 +02:00
|
|
|
|
|
|
|
# Build the return value:
|
2019-08-18 01:00:04 +02:00
|
|
|
result = [] # type: List[Tuple[int, List[UserDisplayRecipient]]]
|
2019-08-07 00:18:13 +02:00
|
|
|
for recipient in recipients:
|
|
|
|
if recipient.type == Recipient.PERSONAL:
|
|
|
|
result.append((recipient.id, [user_profiles[recipient.type_id]]))
|
|
|
|
else:
|
|
|
|
result.append((recipient.id, [user_profiles[user_id]
|
|
|
|
for user_id in huddle_user_ids[recipient.id]]))
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
2019-08-18 01:00:04 +02:00
|
|
|
def personal_and_huddle_cache_transformer(db_object: Tuple[int, List[UserDisplayRecipient]]
|
2019-08-18 00:24:46 +02:00
|
|
|
) -> List[UserDisplayRecipient]:
|
2019-08-07 00:18:13 +02:00
|
|
|
"""
|
|
|
|
Takes an element of the list returned by the query_function, maps it to the final
|
|
|
|
display_recipient list.
|
|
|
|
"""
|
|
|
|
user_profile_list = db_object[1]
|
2019-08-18 01:00:04 +02:00
|
|
|
display_recipient = user_profile_list
|
2019-08-07 00:18:13 +02:00
|
|
|
|
|
|
|
return display_recipient
|
|
|
|
|
2019-08-18 01:00:04 +02:00
|
|
|
def personal_and_huddle_id_fetcher(db_object: Tuple[int, List[UserDisplayRecipient]]) -> int:
|
2019-08-07 00:18:13 +02:00
|
|
|
# db_object is a tuple, with recipient_id in the first position
|
|
|
|
return db_object[0]
|
|
|
|
|
2019-08-18 01:00:04 +02:00
|
|
|
# ItemT = Tuple[int, List[UserDisplayRecipient]] (recipient_id, list of corresponding users)
|
2019-08-18 00:24:46 +02:00
|
|
|
# CacheItemT = List[UserDisplayRecipient] (display_recipient list)
|
2019-08-07 00:18:13 +02:00
|
|
|
# ObjKT = int (recipient_id)
|
|
|
|
personal_and_huddle_display_recipients = generic_bulk_cached_fetch(
|
|
|
|
cache_key_function=display_recipient_cache_key,
|
|
|
|
query_function=personal_and_huddle_query_function,
|
|
|
|
object_ids=[recipient[0] for recipient in personal_and_huddle_recipients],
|
|
|
|
id_fetcher=personal_and_huddle_id_fetcher,
|
|
|
|
cache_transformer=personal_and_huddle_cache_transformer
|
|
|
|
)
|
|
|
|
|
|
|
|
# Glue the dicts together and return:
|
|
|
|
return {**stream_display_recipients, **personal_and_huddle_display_recipients}
|