2017-01-07 21:34:32 +01:00
|
|
|
|
|
|
|
from django.http import HttpResponse, HttpRequest
|
2018-12-24 17:04:27 +01:00
|
|
|
from typing import Optional
|
2017-01-07 21:34:32 +01:00
|
|
|
|
2017-03-13 22:05:35 +01:00
|
|
|
import ujson
|
|
|
|
|
|
|
|
from django.utils.translation import ugettext as _
|
2017-08-30 02:19:34 +02:00
|
|
|
from zerver.lib.actions import do_mute_topic, do_unmute_topic
|
2017-01-07 21:34:32 +01:00
|
|
|
from zerver.lib.request import has_request_variables, REQ
|
2017-03-13 22:05:35 +01:00
|
|
|
from zerver.lib.response import json_success, json_error
|
2017-08-24 17:58:40 +02:00
|
|
|
from zerver.lib.topic_mutes import topic_is_muted
|
2018-12-24 17:04:27 +01:00
|
|
|
from zerver.lib.streams import (
|
|
|
|
access_stream_by_id,
|
|
|
|
access_stream_by_name,
|
|
|
|
access_stream_for_unmute_topic_by_id,
|
|
|
|
access_stream_for_unmute_topic_by_name,
|
|
|
|
check_for_exactly_one_stream_arg,
|
|
|
|
)
|
|
|
|
from zerver.lib.validator import check_int
|
2017-08-30 02:19:34 +02:00
|
|
|
from zerver.models import get_stream, Stream, UserProfile
|
|
|
|
|
2018-12-24 17:04:27 +01:00
|
|
|
def mute_topic(user_profile: UserProfile,
|
|
|
|
stream_id: Optional[int],
|
|
|
|
stream_name: Optional[str],
|
2017-10-27 02:18:49 +02:00
|
|
|
topic_name: str) -> HttpResponse:
|
2018-12-24 17:04:27 +01:00
|
|
|
if stream_name is not None:
|
|
|
|
(stream, recipient, sub) = access_stream_by_name(user_profile, stream_name)
|
|
|
|
else:
|
|
|
|
assert stream_id is not None
|
|
|
|
(stream, recipient, sub) = access_stream_by_id(user_profile, stream_id)
|
2017-08-30 02:19:34 +02:00
|
|
|
|
2017-10-05 15:36:44 +02:00
|
|
|
if topic_is_muted(user_profile, stream.id, topic_name):
|
2017-08-30 02:19:34 +02:00
|
|
|
return json_error(_("Topic already muted"))
|
|
|
|
|
|
|
|
do_mute_topic(user_profile, stream, recipient, topic_name)
|
|
|
|
return json_success()
|
|
|
|
|
2018-12-24 17:04:27 +01:00
|
|
|
def unmute_topic(user_profile: UserProfile,
|
|
|
|
stream_id: Optional[int],
|
|
|
|
stream_name: Optional[str],
|
2017-10-27 02:18:49 +02:00
|
|
|
topic_name: str) -> HttpResponse:
|
2018-08-27 22:13:56 +02:00
|
|
|
error = _("Topic is not muted")
|
2018-12-24 17:04:27 +01:00
|
|
|
|
|
|
|
if stream_name is not None:
|
|
|
|
stream = access_stream_for_unmute_topic_by_name(user_profile, stream_name, error)
|
|
|
|
else:
|
|
|
|
assert stream_id is not None
|
|
|
|
stream = access_stream_for_unmute_topic_by_id(user_profile, stream_id, error)
|
2017-08-30 02:19:34 +02:00
|
|
|
|
2017-10-05 15:36:44 +02:00
|
|
|
if not topic_is_muted(user_profile, stream.id, topic_name):
|
2017-08-30 02:19:34 +02:00
|
|
|
return json_error(error)
|
|
|
|
|
|
|
|
do_unmute_topic(user_profile, stream, topic_name)
|
|
|
|
return json_success()
|
2017-01-07 21:34:32 +01:00
|
|
|
|
2017-03-13 22:05:35 +01:00
|
|
|
@has_request_variables
|
2018-12-24 17:04:27 +01:00
|
|
|
def update_muted_topic(request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
|
|
|
stream_id: Optional[int]=REQ(validator=check_int, default=None),
|
|
|
|
stream: Optional[str]=REQ(default=None),
|
|
|
|
topic: str=REQ(),
|
|
|
|
op: str=REQ()) -> HttpResponse:
|
|
|
|
|
|
|
|
check_for_exactly_one_stream_arg(stream_id=stream_id, stream=stream)
|
2017-08-30 02:19:34 +02:00
|
|
|
|
2017-03-13 22:05:35 +01:00
|
|
|
if op == 'add':
|
2018-12-24 17:04:27 +01:00
|
|
|
return mute_topic(
|
|
|
|
user_profile=user_profile,
|
|
|
|
stream_id=stream_id,
|
|
|
|
stream_name=stream,
|
|
|
|
topic_name=topic,
|
|
|
|
)
|
2017-03-13 22:05:35 +01:00
|
|
|
elif op == 'remove':
|
2018-12-24 17:04:27 +01:00
|
|
|
return unmute_topic(
|
|
|
|
user_profile=user_profile,
|
|
|
|
stream_id=stream_id,
|
|
|
|
stream_name=stream,
|
|
|
|
topic_name=topic,
|
|
|
|
)
|