mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
291 lines
8 KiB
Python
291 lines
8 KiB
Python
"""
|
|
Example:
|
|
>>> from aiogram.utils.helper import Helper, ListItem, HelperMode, Item
|
|
>>> class MyHelper(Helper):
|
|
... mode = HelperMode.lowerCamelCase
|
|
... FOO_ITEM = ListItem()
|
|
... BAR_ITEM = ListItem()
|
|
... BAZ_ITEM = ListItem()
|
|
... LOREM = Item()
|
|
...
|
|
>>> print(MyHelper.FOO_ITEM & MyHelper.BAR_ITEM)
|
|
<<< ['fooItem', 'barItem']
|
|
>>> print(MyHelper.all())
|
|
<<< ['barItem', 'bazItem', 'fooItem', 'lorem']
|
|
"""
|
|
import inspect
|
|
from typing import Any, Callable, Generic, Iterable, List, Optional, TypeVar, Union, cast
|
|
from weakref import WeakKeyDictionary
|
|
|
|
T = TypeVar("T")
|
|
|
|
PROPS_KEYS_ATTR_NAME = "_props_keys"
|
|
|
|
|
|
class Helper:
|
|
mode = ""
|
|
|
|
@classmethod
|
|
def all(cls) -> List[Any]:
|
|
"""
|
|
Get all consts
|
|
:return: list
|
|
"""
|
|
result: List[Any] = []
|
|
for name in dir(cls):
|
|
if not name.isupper():
|
|
continue
|
|
value = getattr(cls, name)
|
|
if isinstance(value, ItemsList):
|
|
result.append(value[0])
|
|
else:
|
|
result.append(value)
|
|
return result
|
|
|
|
|
|
class HelperMode(Helper):
|
|
mode = "original"
|
|
|
|
SCREAMING_SNAKE_CASE = "SCREAMING_SNAKE_CASE"
|
|
lowerCamelCase = "lowerCamelCase"
|
|
CamelCase = "CamelCase"
|
|
snake_case = "snake_case"
|
|
lowercase = "lowercase"
|
|
|
|
@classmethod
|
|
def all(cls) -> List[str]:
|
|
return [
|
|
cls.SCREAMING_SNAKE_CASE,
|
|
cls.lowerCamelCase,
|
|
cls.CamelCase,
|
|
cls.snake_case,
|
|
cls.lowercase,
|
|
]
|
|
|
|
@classmethod
|
|
def _screaming_snake_case(cls, text: str) -> str:
|
|
"""
|
|
Transform text to SCREAMING_SNAKE_CASE
|
|
|
|
:param text:
|
|
:return:
|
|
"""
|
|
if text.isupper():
|
|
return text
|
|
result = ""
|
|
for pos, symbol in enumerate(text):
|
|
if symbol.isupper() and pos > 0:
|
|
result += "_" + symbol
|
|
else:
|
|
result += symbol.upper()
|
|
return result
|
|
|
|
@classmethod
|
|
def _snake_case(cls, text: str) -> str:
|
|
"""
|
|
Transform text to snake case (Based on SCREAMING_SNAKE_CASE)
|
|
|
|
:param text:
|
|
:return:
|
|
"""
|
|
if text.islower():
|
|
return text
|
|
return cls._screaming_snake_case(text).lower()
|
|
|
|
@classmethod
|
|
def _camel_case(cls, text: str, first_upper: bool = False) -> str:
|
|
"""
|
|
Transform text to camelCase or CamelCase
|
|
|
|
:param text:
|
|
:param first_upper: first symbol must be upper?
|
|
:return:
|
|
"""
|
|
result = ""
|
|
need_upper = False
|
|
for pos, symbol in enumerate(text):
|
|
if symbol == "_" and pos > 0:
|
|
need_upper = True
|
|
else:
|
|
if need_upper:
|
|
result += symbol.upper()
|
|
else:
|
|
result += symbol.lower()
|
|
need_upper = False
|
|
if first_upper:
|
|
result = result[0].upper() + result[1:]
|
|
return result
|
|
|
|
@classmethod
|
|
def apply(cls, text: str, mode: Union[str, Callable[[str], str]]) -> str:
|
|
"""
|
|
Apply mode for text
|
|
|
|
:param text:
|
|
:param mode:
|
|
:return:
|
|
"""
|
|
if mode == cls.SCREAMING_SNAKE_CASE:
|
|
return cls._screaming_snake_case(text)
|
|
if mode == cls.snake_case:
|
|
return cls._snake_case(text)
|
|
if mode == cls.lowercase:
|
|
return cls._snake_case(text).replace("_", "")
|
|
if mode == cls.lowerCamelCase:
|
|
return cls._camel_case(text)
|
|
if mode == cls.CamelCase:
|
|
return cls._camel_case(text, True)
|
|
if callable(mode):
|
|
return mode(text)
|
|
return text
|
|
|
|
|
|
class _BaseItem:
|
|
def __init__(self, value: Optional[str] = None):
|
|
self._value = cast(str, value)
|
|
|
|
def __set_name__(self, owner: Any, name: str) -> None:
|
|
if not name.isupper():
|
|
raise NameError("Name for helper item must be in uppercase!")
|
|
if not self._value:
|
|
if not inspect.isclass(owner) or not issubclass(owner, Helper):
|
|
raise RuntimeError("Instances of Item can be used only as Helper attributes")
|
|
self._value = HelperMode.apply(name, owner.mode)
|
|
|
|
|
|
class Item(_BaseItem):
|
|
"""
|
|
Helper item
|
|
|
|
If a value is not provided,
|
|
it will be automatically generated based on a variable's name
|
|
"""
|
|
|
|
def __get__(self, instance: Any, owner: Any) -> str:
|
|
return self._value
|
|
|
|
|
|
class ListItem(_BaseItem):
|
|
"""
|
|
This item is always a list
|
|
|
|
You can use &, | and + operators for that.
|
|
"""
|
|
|
|
def add(self, other: "ListItem") -> "ListItem": # pragma: no cover
|
|
return self + other
|
|
|
|
def __get__(self, instance: Any, owner: Any) -> "ItemsList":
|
|
return ItemsList(self._value)
|
|
|
|
def __getitem__(self, item: Any) -> Any: # pragma: no cover
|
|
# Only for IDE. This method is never be called.
|
|
return self._value
|
|
|
|
# Need only for IDE
|
|
__iadd__ = __add__ = __rand__ = __and__ = __ror__ = __or__ = add
|
|
|
|
|
|
class ItemsList(List[str]):
|
|
"""
|
|
Patch for default list
|
|
|
|
This class provides +, &, |, +=, &=, |= operators for extending the list
|
|
"""
|
|
|
|
def __init__(self, *seq: Any):
|
|
super(ItemsList, self).__init__(map(str, seq))
|
|
|
|
def add(self, other: Iterable[str]) -> "ItemsList":
|
|
self.extend(other)
|
|
return self
|
|
|
|
__iadd__ = __add__ = __rand__ = __and__ = __ror__ = __or__ = add
|
|
|
|
|
|
class OrderedHelperMeta(type):
|
|
def __new__(mcs, name: Any, bases: Any, namespace: Any, **kwargs: Any) -> "OrderedHelperMeta":
|
|
cls = super().__new__(mcs, name, bases, namespace)
|
|
|
|
props_keys = []
|
|
|
|
for prop_name in (
|
|
name for name, prop in namespace.items() if isinstance(prop, (Item, ListItem))
|
|
):
|
|
props_keys.append(prop_name)
|
|
|
|
setattr(cls, PROPS_KEYS_ATTR_NAME, props_keys)
|
|
|
|
# ref: https://gitter.im/python/typing?at=5da98cc5fa637359fc9cbfe1
|
|
return cast(OrderedHelperMeta, cls)
|
|
|
|
|
|
class OrderedHelper(Helper, metaclass=OrderedHelperMeta):
|
|
mode = ""
|
|
|
|
@classmethod
|
|
def all(cls) -> List[str]:
|
|
"""
|
|
Get all Items values
|
|
"""
|
|
result = []
|
|
for name in getattr(cls, PROPS_KEYS_ATTR_NAME, []):
|
|
value = getattr(cls, name)
|
|
if isinstance(value, ItemsList):
|
|
result.append(value[0])
|
|
else:
|
|
result.append(value)
|
|
return result
|
|
|
|
|
|
class Default(Generic[T]):
|
|
"""
|
|
Descriptor that holds default value getter
|
|
|
|
Example:
|
|
>>> class MyClass:
|
|
... att = Default("dflt")
|
|
...
|
|
>>> my_instance = MyClass()
|
|
>>> my_instance.att = "not dflt"
|
|
>>> my_instance.att
|
|
'not dflt'
|
|
>>> MyClass.att
|
|
'dflt'
|
|
>>> del my_instance.att
|
|
>>> my_instance.att
|
|
'dflt'
|
|
>>>
|
|
|
|
Intended to be used as a class attribute and only internally.
|
|
"""
|
|
|
|
__slots__ = "fget", "_descriptor_instances"
|
|
|
|
def __init__(
|
|
self, default: Optional[T] = None, *, fget: Optional[Callable[[Any], T]] = None,
|
|
) -> None:
|
|
self.fget = fget or (lambda _: cast(T, default))
|
|
self._descriptor_instances = WeakKeyDictionary() # type: ignore
|
|
|
|
def __get__(self, instance: Any, owner: Any) -> T:
|
|
if instance is None:
|
|
return self.fget(instance)
|
|
|
|
return self._descriptor_instances.get(instance, self.fget(instance))
|
|
|
|
def __set__(self, instance: Any, value: T) -> None:
|
|
if instance is None or isinstance(instance, type):
|
|
raise AttributeError(
|
|
"Instance cannot be class or None. Setter must be called from a class."
|
|
)
|
|
|
|
self._descriptor_instances[instance] = value
|
|
|
|
def __delete__(self, instance: Any) -> None:
|
|
if instance is None or isinstance(instance, type):
|
|
raise AttributeError(
|
|
"Instance cannot be class or None. Deleter must be called from a class."
|
|
)
|
|
|
|
self._descriptor_instances.pop(instance, None)
|