mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	The error message displayed when unmuting a topic that wasn't previously muted wasn't properly formulated.
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
 | 
						|
from django.http import HttpResponse, HttpRequest
 | 
						|
from typing import List
 | 
						|
 | 
						|
import ujson
 | 
						|
 | 
						|
from django.utils.translation import ugettext as _
 | 
						|
from zerver.lib.actions import do_mute_topic, do_unmute_topic
 | 
						|
from zerver.lib.request import has_request_variables, REQ
 | 
						|
from zerver.lib.response import json_success, json_error
 | 
						|
from zerver.lib.topic_mutes import topic_is_muted
 | 
						|
from zerver.lib.streams import access_stream_by_name, access_stream_for_unmute_topic
 | 
						|
from zerver.lib.validator import check_string, check_list
 | 
						|
from zerver.models import get_stream, Stream, UserProfile
 | 
						|
 | 
						|
def mute_topic(user_profile: UserProfile, stream_name: str,
 | 
						|
               topic_name: str) -> HttpResponse:
 | 
						|
    (stream, recipient, sub) = access_stream_by_name(user_profile, stream_name)
 | 
						|
 | 
						|
    if topic_is_muted(user_profile, stream.id, topic_name):
 | 
						|
        return json_error(_("Topic already muted"))
 | 
						|
 | 
						|
    do_mute_topic(user_profile, stream, recipient, topic_name)
 | 
						|
    return json_success()
 | 
						|
 | 
						|
def unmute_topic(user_profile: UserProfile, stream_name: str,
 | 
						|
                 topic_name: str) -> HttpResponse:
 | 
						|
    error = _("Topic is not muted")
 | 
						|
    stream = access_stream_for_unmute_topic(user_profile, stream_name, error)
 | 
						|
 | 
						|
    if not topic_is_muted(user_profile, stream.id, topic_name):
 | 
						|
        return json_error(error)
 | 
						|
 | 
						|
    do_unmute_topic(user_profile, stream, topic_name)
 | 
						|
    return json_success()
 | 
						|
 | 
						|
@has_request_variables
 | 
						|
def update_muted_topic(request: HttpRequest, user_profile: UserProfile, stream: str=REQ(),
 | 
						|
                       topic: str=REQ(), op: str=REQ()) -> HttpResponse:
 | 
						|
 | 
						|
    if op == 'add':
 | 
						|
        return mute_topic(user_profile, stream, topic)
 | 
						|
    elif op == 'remove':
 | 
						|
        return unmute_topic(user_profile, stream, topic)
 |