mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import absolute_import
 | 
						|
 | 
						|
from django.db.models import Q
 | 
						|
from zerver.models import UserProfile, Realm
 | 
						|
from zerver.lib.cache import cache_with_key, realm_alert_words_cache_key
 | 
						|
import ujson
 | 
						|
import six
 | 
						|
 | 
						|
@cache_with_key(realm_alert_words_cache_key, timeout=3600*24)
 | 
						|
def alert_words_in_realm(realm):
 | 
						|
    # type: (Realm) -> Dict[int, List[str]]
 | 
						|
    users_query = UserProfile.objects.filter(realm=realm, is_active=True)
 | 
						|
    alert_word_data = users_query.filter(~Q(alert_words=ujson.dumps([]))).values('id', 'alert_words')
 | 
						|
    all_user_words = dict((elt['id'], ujson.loads(elt['alert_words'])) for elt in alert_word_data)
 | 
						|
    user_ids_with_words = dict((user_id, w) for (user_id, w) in six.iteritems(all_user_words) if len(w))
 | 
						|
    return user_ids_with_words
 | 
						|
 | 
						|
def user_alert_words(user_profile):
 | 
						|
    # type: (UserProfile) -> List[str]
 | 
						|
    return ujson.loads(user_profile.alert_words)
 | 
						|
 | 
						|
def add_user_alert_words(user_profile, alert_words):
 | 
						|
    # type: (UserProfile, List[str]) -> List[str]
 | 
						|
    words = user_alert_words(user_profile)
 | 
						|
 | 
						|
    new_words = [w for w in alert_words if w not in words]
 | 
						|
    words.extend(new_words)
 | 
						|
 | 
						|
    set_user_alert_words(user_profile, words)
 | 
						|
 | 
						|
    return words
 | 
						|
 | 
						|
def remove_user_alert_words(user_profile, alert_words):
 | 
						|
    # type: (UserProfile, List[str]) -> List[str]
 | 
						|
    words = user_alert_words(user_profile)
 | 
						|
    words = [w for w in words if w not in alert_words]
 | 
						|
 | 
						|
    set_user_alert_words(user_profile, words)
 | 
						|
 | 
						|
    return words
 | 
						|
 | 
						|
def set_user_alert_words(user_profile, alert_words):
 | 
						|
    # type: (UserProfile, List[str]) -> None
 | 
						|
    user_profile.alert_words = ujson.dumps(alert_words)
 | 
						|
    user_profile.save(update_fields=['alert_words'])
 |