2017-01-30 07:21:13 +01:00
|
|
|
|
|
|
|
from django.http import HttpResponse, HttpRequest
|
2018-12-04 23:22:05 +01:00
|
|
|
import re
|
|
|
|
from typing import Any, List, Dict, Optional, Tuple, Union
|
2017-01-30 07:21:13 +01:00
|
|
|
|
|
|
|
from zerver.lib.response import json_error, json_success
|
|
|
|
from zerver.lib.user_agent import parse_user_agent
|
|
|
|
|
2018-12-05 00:00:56 +01:00
|
|
|
def pop_numerals(ver: str) -> Tuple[List[int], str]:
|
|
|
|
match = re.search(r'^( \d+ (?: \. \d+ )* ) (.*)', ver, re.X)
|
2018-12-04 23:22:05 +01:00
|
|
|
if match is None:
|
2018-12-05 00:00:56 +01:00
|
|
|
return [], ver
|
|
|
|
numerals, rest = match.groups()
|
|
|
|
numbers = [int(n) for n in numerals.split('.')]
|
|
|
|
return numbers, rest
|
2018-12-04 23:22:05 +01:00
|
|
|
|
|
|
|
def version_lt(ver1: str, ver2: str) -> Optional[bool]:
|
|
|
|
'''
|
|
|
|
Compare two Zulip-style version strings.
|
|
|
|
|
|
|
|
Versions are dot-separated sequences of decimal integers,
|
|
|
|
followed by arbitrary trailing decoration. Comparison is
|
|
|
|
lexicographic on the integer sequences, and refuses to
|
|
|
|
guess how any trailing decoration compares to any other,
|
|
|
|
to further numerals, or to nothing.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
True if ver1 < ver2
|
|
|
|
False if ver1 >= ver2
|
|
|
|
None if can't tell.
|
|
|
|
'''
|
2018-12-05 00:00:56 +01:00
|
|
|
num1, rest1 = pop_numerals(ver1)
|
|
|
|
num2, rest2 = pop_numerals(ver2)
|
2018-12-05 00:06:46 +01:00
|
|
|
if not num1 or not num2:
|
|
|
|
return None
|
2018-12-05 00:00:56 +01:00
|
|
|
common_len = min(len(num1), len(num2))
|
|
|
|
common_num1, rest_num1 = num1[:common_len], num1[common_len:]
|
|
|
|
common_num2, rest_num2 = num2[:common_len], num2[common_len:]
|
|
|
|
|
|
|
|
# Leading numbers win.
|
|
|
|
if common_num1 != common_num2:
|
|
|
|
return common_num1 < common_num2
|
|
|
|
|
|
|
|
# More numbers beats end-of-string, but ??? vs trailing text.
|
|
|
|
# (NB at most one of rest_num1, rest_num2 is nonempty.)
|
|
|
|
if not rest1 and rest_num2:
|
|
|
|
return True
|
|
|
|
if rest_num1 and not rest2:
|
|
|
|
return False
|
|
|
|
if rest_num1 or rest_num2:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# Trailing text we can only compare for equality.
|
|
|
|
if rest1 == rest2:
|
|
|
|
return False
|
|
|
|
return None
|
2018-12-04 23:22:05 +01:00
|
|
|
|
2018-12-05 00:46:52 +01:00
|
|
|
|
|
|
|
def find_mobile_os(user_agent: str) -> Optional[str]:
|
|
|
|
if re.search(r'\b Android \b', user_agent, re.I | re.X):
|
|
|
|
return 'android'
|
|
|
|
if re.search(r'\b(?: iOS | iPhone\ OS )\b', user_agent, re.I | re.X):
|
|
|
|
return 'ios'
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2018-11-29 03:07:40 +01:00
|
|
|
def check_global_compatibility(request: HttpRequest) -> HttpResponse:
|
2017-01-30 07:21:13 +01:00
|
|
|
user_agent = parse_user_agent(request.META["HTTP_USER_AGENT"])
|
2018-03-22 20:02:15 +01:00
|
|
|
if user_agent['name'] == "ZulipInvalid":
|
2017-01-30 07:21:13 +01:00
|
|
|
return json_error("Client is too old")
|
|
|
|
return json_success()
|