Files
zulip/zerver/lib/stream_topic.py
Kartik Srivastava 409ef040bb stream_topic: Refactor user_ids_muting_topic.
This refactors and renames user_ids_muting_topic to accept a parameter
'visibility_policy' and fetch user IDs that have a specific
visibility_policy(provided as the parameter) set for a topic.
2022-09-27 17:18:48 -07:00

27 lines
798 B
Python

from typing import Set
from zerver.models import UserTopic
class StreamTopicTarget:
"""
This class is designed to help us move to a
StreamTopic table or something similar. It isolates
places where we are still using `topic_name` as
a key into tables.
"""
def __init__(self, stream_id: int, topic_name: str) -> None:
self.stream_id = stream_id
self.topic_name = topic_name
def user_ids_with_visibility_policy(self, visibility_policy: int) -> Set[int]:
query = UserTopic.objects.filter(
stream_id=self.stream_id,
topic_name__iexact=self.topic_name,
visibility_policy=visibility_policy,
).values(
"user_profile_id",
)
return {row["user_profile_id"] for row in query}