2020-01-17 16:01:00 +01:00
|
|
|
import datetime
|
2020-06-11 00:54:34 +02:00
|
|
|
from typing import Optional
|
2017-01-07 21:34:32 +01:00
|
|
|
|
2022-02-09 16:49:46 +01:00
|
|
|
from django.db import IntegrityError
|
2020-06-11 00:54:34 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2020-01-17 16:01:00 +01:00
|
|
|
from django.utils.timezone import now as timezone_now
|
2021-04-16 00:57:30 +02:00
|
|
|
from django.utils.translation import gettext as _
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2021-03-27 12:23:32 +01:00
|
|
|
from zerver.lib.actions import do_mute_topic, do_mute_user, do_unmute_topic, do_unmute_user
|
2021-06-30 18:35:50 +02:00
|
|
|
from zerver.lib.exceptions import JsonableError
|
2020-06-11 00:54:34 +02:00
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2021-06-30 18:35:50 +02:00
|
|
|
from zerver.lib.response import json_success
|
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,
|
|
|
|
)
|
2021-04-08 06:20:43 +02:00
|
|
|
from zerver.lib.user_mutes import get_mute_object
|
2022-02-22 21:07:07 +01:00
|
|
|
from zerver.lib.user_topics import topic_is_muted
|
2021-03-27 12:23:32 +01:00
|
|
|
from zerver.lib.users import access_user_by_id
|
2018-12-24 17:04:27 +01:00
|
|
|
from zerver.lib.validator import check_int
|
2019-02-02 23:53:22 +01:00
|
|
|
from zerver.models import UserProfile
|
2017-08-30 02:19:34 +02:00
|
|
|
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
def mute_topic(
|
|
|
|
user_profile: UserProfile,
|
|
|
|
stream_id: Optional[int],
|
|
|
|
stream_name: Optional[str],
|
|
|
|
topic_name: str,
|
|
|
|
date_muted: datetime.datetime,
|
2022-01-31 14:09:23 +01:00
|
|
|
) -> None:
|
2018-12-24 17:04:27 +01:00
|
|
|
if stream_name is not None:
|
2020-10-16 18:00:07 +02:00
|
|
|
(stream, sub) = access_stream_by_name(user_profile, stream_name)
|
2018-12-24 17:04:27 +01:00
|
|
|
else:
|
|
|
|
assert stream_id is not None
|
2020-10-16 17:25:48 +02:00
|
|
|
(stream, 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):
|
2021-06-30 18:35:50 +02:00
|
|
|
raise JsonableError(_("Topic already muted"))
|
2017-08-30 02:19:34 +02:00
|
|
|
|
2022-02-09 16:49:46 +01:00
|
|
|
try:
|
|
|
|
do_mute_topic(user_profile, stream, topic_name, date_muted)
|
|
|
|
except IntegrityError:
|
|
|
|
raise JsonableError(_("Topic already muted"))
|
2017-08-30 02:19:34 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
|
|
|
def unmute_topic(
|
2022-01-31 14:09:23 +01:00
|
|
|
user_profile: UserProfile,
|
|
|
|
stream_id: Optional[int],
|
|
|
|
stream_name: Optional[str],
|
|
|
|
topic_name: str,
|
|
|
|
) -> None:
|
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
|
|
|
|
|
|
|
do_unmute_topic(user_profile, stream, topic_name)
|
2017-01-07 21:34:32 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-03-13 22:05:35 +01:00
|
|
|
@has_request_variables
|
2021-02-12 08:19:30 +01:00
|
|
|
def update_muted_topic(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
2021-04-07 22:00:44 +02:00
|
|
|
stream_id: Optional[int] = REQ(json_validator=check_int, default=None),
|
2021-02-12 08:19:30 +01:00
|
|
|
stream: Optional[str] = REQ(default=None),
|
|
|
|
topic: str = REQ(),
|
|
|
|
op: str = REQ(),
|
|
|
|
) -> HttpResponse:
|
2018-12-24 17:04:27 +01:00
|
|
|
|
|
|
|
check_for_exactly_one_stream_arg(stream_id=stream_id, stream=stream)
|
2017-08-30 02:19:34 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
if op == "add":
|
2022-01-31 14:09:23 +01:00
|
|
|
mute_topic(
|
2018-12-24 17:04:27 +01:00
|
|
|
user_profile=user_profile,
|
|
|
|
stream_id=stream_id,
|
|
|
|
stream_name=stream,
|
|
|
|
topic_name=topic,
|
2020-01-17 16:01:00 +01:00
|
|
|
date_muted=timezone_now(),
|
2018-12-24 17:04:27 +01:00
|
|
|
)
|
2022-01-31 13:44:02 +01:00
|
|
|
return json_success(request)
|
2021-02-12 08:20:45 +01:00
|
|
|
elif op == "remove":
|
2022-01-31 14:09:23 +01:00
|
|
|
unmute_topic(
|
2018-12-24 17:04:27 +01:00
|
|
|
user_profile=user_profile,
|
|
|
|
stream_id=stream_id,
|
|
|
|
stream_name=stream,
|
|
|
|
topic_name=topic,
|
|
|
|
)
|
2022-01-31 13:44:02 +01:00
|
|
|
return json_success(request)
|
2021-03-27 12:23:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
def mute_user(request: HttpRequest, user_profile: UserProfile, muted_user_id: int) -> HttpResponse:
|
|
|
|
if user_profile.id == muted_user_id:
|
2021-06-30 18:35:50 +02:00
|
|
|
raise JsonableError(_("Cannot mute self"))
|
2021-03-27 12:23:32 +01:00
|
|
|
|
2021-07-07 16:55:52 +02:00
|
|
|
muted_user = access_user_by_id(
|
|
|
|
user_profile, muted_user_id, allow_bots=False, allow_deactivated=True, for_admin=False
|
|
|
|
)
|
2021-03-27 12:23:32 +01:00
|
|
|
date_muted = timezone_now()
|
|
|
|
|
2021-04-08 06:20:43 +02:00
|
|
|
if get_mute_object(user_profile, muted_user) is not None:
|
2021-06-30 18:35:50 +02:00
|
|
|
raise JsonableError(_("User already muted"))
|
2021-03-27 12:23:32 +01:00
|
|
|
|
|
|
|
do_mute_user(user_profile, muted_user, date_muted)
|
2022-01-31 13:44:02 +01:00
|
|
|
return json_success(request)
|
2021-03-27 12:23:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
def unmute_user(
|
|
|
|
request: HttpRequest, user_profile: UserProfile, muted_user_id: int
|
|
|
|
) -> HttpResponse:
|
2021-07-07 16:55:52 +02:00
|
|
|
muted_user = access_user_by_id(
|
|
|
|
user_profile, muted_user_id, allow_bots=False, allow_deactivated=True, for_admin=False
|
|
|
|
)
|
2021-04-08 06:20:43 +02:00
|
|
|
mute_object = get_mute_object(user_profile, muted_user)
|
2021-03-27 12:23:32 +01:00
|
|
|
|
2021-04-08 06:20:43 +02:00
|
|
|
if mute_object is None:
|
2021-06-30 18:35:50 +02:00
|
|
|
raise JsonableError(_("User is not muted"))
|
2021-03-27 12:23:32 +01:00
|
|
|
|
2021-04-08 06:20:43 +02:00
|
|
|
do_unmute_user(mute_object)
|
2022-01-31 13:44:02 +01:00
|
|
|
return json_success(request)
|