mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-30 19:43:47 +00:00 
			
		
		
		
	This commit adds code to update access_user_by_id to raise error if guest tries to access an inaccessible user. One notable behavioral change due to this is that we do not allow guest to mute or unmute a deactivated user if that user was not involved in DMs.
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.db import IntegrityError
 | |
| from django.http import HttpRequest, HttpResponse
 | |
| from django.utils.timezone import now as timezone_now
 | |
| from django.utils.translation import gettext as _
 | |
| 
 | |
| from zerver.actions.muted_users import do_mute_user, do_unmute_user
 | |
| from zerver.lib.exceptions import JsonableError
 | |
| from zerver.lib.muted_users import get_mute_object
 | |
| from zerver.lib.response import json_success
 | |
| from zerver.lib.users import access_user_by_id
 | |
| from zerver.models import UserProfile
 | |
| 
 | |
| 
 | |
| def mute_user(request: HttpRequest, user_profile: UserProfile, muted_user_id: int) -> HttpResponse:
 | |
|     if user_profile.id == muted_user_id:
 | |
|         raise JsonableError(_("Cannot mute self"))
 | |
| 
 | |
|     # Arguably, access_used_by_id is not quite the right check; in the
 | |
|     # corner case of a limited guest trying to mute a deactivated user
 | |
|     # who they no longer have access to because the user was
 | |
|     # deactivated... it might from a policy perspective be OK to allow
 | |
|     # that operation even though this API will reject it.
 | |
|     #
 | |
|     # But it's quite possibly something nobody will try to do, so we
 | |
|     # just reuse the existing shared code path.
 | |
|     muted_user = access_user_by_id(
 | |
|         user_profile, muted_user_id, allow_bots=True, allow_deactivated=True, for_admin=False
 | |
|     )
 | |
|     date_muted = timezone_now()
 | |
| 
 | |
|     try:
 | |
|         do_mute_user(user_profile, muted_user, date_muted)
 | |
|     except IntegrityError:
 | |
|         raise JsonableError(_("User already muted"))
 | |
| 
 | |
|     return json_success(request)
 | |
| 
 | |
| 
 | |
| def unmute_user(
 | |
|     request: HttpRequest, user_profile: UserProfile, muted_user_id: int
 | |
| ) -> HttpResponse:
 | |
|     muted_user = access_user_by_id(
 | |
|         user_profile, muted_user_id, allow_bots=True, allow_deactivated=True, for_admin=False
 | |
|     )
 | |
|     mute_object = get_mute_object(user_profile, muted_user)
 | |
| 
 | |
|     if mute_object is None:
 | |
|         raise JsonableError(_("User is not muted"))
 | |
| 
 | |
|     do_unmute_user(mute_object)
 | |
|     return json_success(request)
 |