mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			833 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			833 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from zerver.lib.cache import (
 | 
						|
    cache_with_key,
 | 
						|
    realm_rendered_description_cache_key,
 | 
						|
    realm_text_description_cache_key,
 | 
						|
)
 | 
						|
from zerver.lib.html_to_text import html_to_text
 | 
						|
from zerver.lib.markdown import markdown_convert
 | 
						|
from zerver.models import Realm
 | 
						|
 | 
						|
 | 
						|
@cache_with_key(realm_rendered_description_cache_key, timeout=3600 * 24 * 7)
 | 
						|
def get_realm_rendered_description(realm: Realm) -> str:
 | 
						|
    realm_description_raw = realm.description or "The coolest place in the universe."
 | 
						|
    return markdown_convert(realm_description_raw, message_realm=realm, no_previews=True)
 | 
						|
 | 
						|
 | 
						|
@cache_with_key(realm_text_description_cache_key, timeout=3600 * 24 * 7)
 | 
						|
def get_realm_text_description(realm: Realm) -> str:
 | 
						|
    html_description = get_realm_rendered_description(realm)
 | 
						|
    return html_to_text(html_description, {"p": " | ", "li": " * "})
 |