mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 12:03:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			444 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			444 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import re
 | |
| from typing import Optional, Dict
 | |
| 
 | |
| # Warning: If you change this parsing, please test using
 | |
| #   zerver/tests/test_decorators.py
 | |
| # And extend zerver/fixtures/user_agents_unique with any new test cases
 | |
| def parse_user_agent(user_agent: str) -> Optional[Dict[str, str]]:
 | |
|     match = re.match("^(?P<name>[^/ ]*[^0-9/(]*)(/(?P<version>[^/ ]*))?([ /].*)?$", user_agent)
 | |
|     if match is None:
 | |
|         return None
 | |
|     return match.groupdict()
 |