zulip/zerver/lib/narrow.py

50 lines
1.9 KiB
Python
Raw Normal View History

from zerver.lib.request import JsonableError
from django.utils.translation import ugettext as _
2016-07-03 22:23:14 +02:00
from typing import Any, Callable, Iterable, Mapping, Sequence
from six import text_type
def check_supported_events_narrow_filter(narrow):
# type: (Iterable[Sequence[text_type]]) -> None
for element in narrow:
operator = element[0]
if operator not in ["stream", "topic", "sender", "is"]:
raise JsonableError(_("Operator %s not supported.") % (operator,))
def build_narrow_filter(narrow):
2016-07-03 22:23:14 +02:00
# type: (Iterable[Sequence[text_type]]) -> Callable[[Mapping[str, Any]], bool]
check_supported_events_narrow_filter(narrow)
def narrow_filter(event):
2016-07-03 22:23:14 +02:00
# type: (Mapping[str, Any]) -> bool
message = event["message"]
flags = event["flags"]
for element in narrow:
operator = element[0]
operand = element[1]
if operator == "stream":
if message["type"] != "stream":
return False
if operand.lower() != message["display_recipient"].lower():
return False
elif operator == "topic":
if message["type"] != "stream":
return False
if operand.lower() != message["subject"].lower():
return False
elif operator == "sender":
if operand.lower() != message["sender_email"].lower():
return False
elif operator == "is" and operand == "private":
if message["type"] != "private":
return False
elif operator == "is" and operand in ["starred"]:
if operand not in flags:
return False
elif operator == "is" and operand in ["alerted", "mentioned"]:
if "mentioned" not in flags:
return False
return True
return narrow_filter