2013-12-06 23:59:06 +01:00
|
|
|
import re
|
2018-03-22 20:02:15 +01:00
|
|
|
from typing import Dict
|
2013-12-06 23:59:06 +01:00
|
|
|
|
|
|
|
# Warning: If you change this parsing, please test using
|
2017-09-16 08:24:17 +02:00
|
|
|
# zerver/tests/test_decorators.py
|
2018-04-19 20:17:24 +02:00
|
|
|
# And extend zerver/tests/fixtures/user_agents_unique with any new test cases
|
2018-03-22 20:02:15 +01:00
|
|
|
def parse_user_agent(user_agent: str) -> Dict[str, str]:
|
2013-12-06 23:59:06 +01:00
|
|
|
match = re.match("^(?P<name>[^/ ]*[^0-9/(]*)(/(?P<version>[^/ ]*))?([ /].*)?$", user_agent)
|
2018-03-22 20:02:15 +01:00
|
|
|
assert match is not None
|
2013-12-06 23:59:06 +01:00
|
|
|
return match.groupdict()
|