Files
zulip/zerver/lib/utils.py
Mateusz Mandera 540d419ef7 events: Fix realm_upload_quota_mib value to be in MiB.
This was bytes until now.
2024-04-15 15:08:56 -07:00

43 lines
979 B
Python

import re
import secrets
from typing import Callable, List, Optional, TypeVar
T = TypeVar("T")
def generate_api_key() -> str:
api_key = ""
while len(api_key) < 32:
# One iteration suffices 99.4992% of the time.
api_key += secrets.token_urlsafe(3 * 9).replace("_", "").replace("-", "")
return api_key[:32]
def has_api_key_format(key: str) -> bool:
return bool(re.fullmatch(r"([A-Za-z0-9]){32}", key))
def assert_is_not_none(value: Optional[T]) -> T:
assert value is not None
return value
def process_list_in_batches(
lst: List[T], chunk_size: int, process_batch: Callable[[List[T]], None]
) -> None:
offset = 0
while True:
items = lst[offset : offset + chunk_size]
if not items:
break
process_batch(items)
offset += chunk_size
def optional_bytes_to_mib(value: Optional[int]) -> Optional[int]:
if value is None:
return None
else:
return value >> 20