telegrinder 0.1.dev20__py3-none-any.whl → 0.1.dev158__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of telegrinder might be problematic. Click here for more details.
- telegrinder/__init__.py +129 -22
- telegrinder/api/__init__.py +11 -2
- telegrinder/api/abc.py +25 -9
- telegrinder/api/api.py +29 -24
- telegrinder/api/error.py +14 -4
- telegrinder/api/response.py +11 -7
- telegrinder/bot/__init__.py +68 -7
- telegrinder/bot/bot.py +30 -24
- telegrinder/bot/cute_types/__init__.py +11 -1
- telegrinder/bot/cute_types/base.py +47 -0
- telegrinder/bot/cute_types/callback_query.py +64 -14
- telegrinder/bot/cute_types/inline_query.py +22 -16
- telegrinder/bot/cute_types/message.py +145 -53
- telegrinder/bot/cute_types/update.py +23 -0
- telegrinder/bot/dispatch/__init__.py +56 -3
- telegrinder/bot/dispatch/abc.py +9 -7
- telegrinder/bot/dispatch/composition.py +74 -0
- telegrinder/bot/dispatch/context.py +71 -0
- telegrinder/bot/dispatch/dispatch.py +86 -49
- telegrinder/bot/dispatch/handler/__init__.py +3 -0
- telegrinder/bot/dispatch/handler/abc.py +11 -5
- telegrinder/bot/dispatch/handler/func.py +41 -32
- telegrinder/bot/dispatch/handler/message_reply.py +46 -0
- telegrinder/bot/dispatch/middleware/__init__.py +2 -0
- telegrinder/bot/dispatch/middleware/abc.py +10 -4
- telegrinder/bot/dispatch/process.py +53 -49
- telegrinder/bot/dispatch/return_manager/__init__.py +19 -0
- telegrinder/bot/dispatch/return_manager/abc.py +95 -0
- telegrinder/bot/dispatch/return_manager/callback_query.py +19 -0
- telegrinder/bot/dispatch/return_manager/inline_query.py +14 -0
- telegrinder/bot/dispatch/return_manager/message.py +25 -0
- telegrinder/bot/dispatch/view/__init__.py +14 -2
- telegrinder/bot/dispatch/view/abc.py +121 -2
- telegrinder/bot/dispatch/view/box.py +38 -0
- telegrinder/bot/dispatch/view/callback_query.py +13 -39
- telegrinder/bot/dispatch/view/inline_query.py +11 -39
- telegrinder/bot/dispatch/view/message.py +11 -47
- telegrinder/bot/dispatch/waiter_machine/__init__.py +9 -0
- telegrinder/bot/dispatch/waiter_machine/machine.py +116 -0
- telegrinder/bot/dispatch/waiter_machine/middleware.py +76 -0
- telegrinder/bot/dispatch/waiter_machine/short_state.py +37 -0
- telegrinder/bot/polling/__init__.py +2 -0
- telegrinder/bot/polling/abc.py +11 -4
- telegrinder/bot/polling/polling.py +89 -40
- telegrinder/bot/rules/__init__.py +91 -5
- telegrinder/bot/rules/abc.py +81 -63
- telegrinder/bot/rules/adapter/__init__.py +11 -0
- telegrinder/bot/rules/adapter/abc.py +21 -0
- telegrinder/bot/rules/adapter/errors.py +5 -0
- telegrinder/bot/rules/adapter/event.py +43 -0
- telegrinder/bot/rules/adapter/raw_update.py +24 -0
- telegrinder/bot/rules/callback_data.py +159 -38
- telegrinder/bot/rules/command.py +116 -0
- telegrinder/bot/rules/enum_text.py +28 -0
- telegrinder/bot/rules/func.py +17 -17
- telegrinder/bot/rules/fuzzy.py +13 -10
- telegrinder/bot/rules/inline.py +61 -0
- telegrinder/bot/rules/integer.py +12 -7
- telegrinder/bot/rules/is_from.py +148 -7
- telegrinder/bot/rules/markup.py +21 -18
- telegrinder/bot/rules/mention.py +17 -0
- telegrinder/bot/rules/message_entities.py +33 -0
- telegrinder/bot/rules/regex.py +27 -19
- telegrinder/bot/rules/rule_enum.py +74 -0
- telegrinder/bot/rules/start.py +25 -13
- telegrinder/bot/rules/text.py +23 -14
- telegrinder/bot/scenario/__init__.py +2 -0
- telegrinder/bot/scenario/abc.py +12 -5
- telegrinder/bot/scenario/checkbox.py +48 -30
- telegrinder/bot/scenario/choice.py +16 -10
- telegrinder/client/__init__.py +2 -0
- telegrinder/client/abc.py +8 -21
- telegrinder/client/aiohttp.py +30 -21
- telegrinder/model.py +68 -37
- telegrinder/modules.py +189 -21
- telegrinder/msgspec_json.py +14 -0
- telegrinder/msgspec_utils.py +207 -0
- telegrinder/node/__init__.py +31 -0
- telegrinder/node/attachment.py +71 -0
- telegrinder/node/base.py +93 -0
- telegrinder/node/composer.py +71 -0
- telegrinder/node/container.py +22 -0
- telegrinder/node/message.py +18 -0
- telegrinder/node/rule.py +56 -0
- telegrinder/node/source.py +31 -0
- telegrinder/node/text.py +13 -0
- telegrinder/node/tools/__init__.py +3 -0
- telegrinder/node/tools/generator.py +40 -0
- telegrinder/node/update.py +12 -0
- telegrinder/rules.py +1 -1
- telegrinder/tools/__init__.py +165 -4
- telegrinder/tools/buttons.py +75 -51
- telegrinder/tools/error_handler/__init__.py +8 -0
- telegrinder/tools/error_handler/abc.py +30 -0
- telegrinder/tools/error_handler/error_handler.py +156 -0
- telegrinder/tools/formatting/__init__.py +81 -3
- telegrinder/tools/formatting/html.py +283 -37
- telegrinder/tools/formatting/links.py +32 -0
- telegrinder/tools/formatting/spec_html_formats.py +121 -0
- telegrinder/tools/global_context/__init__.py +12 -0
- telegrinder/tools/global_context/abc.py +66 -0
- telegrinder/tools/global_context/global_context.py +451 -0
- telegrinder/tools/global_context/telegrinder_ctx.py +25 -0
- telegrinder/tools/i18n/__init__.py +12 -0
- telegrinder/tools/i18n/base.py +31 -0
- telegrinder/tools/i18n/middleware/__init__.py +3 -0
- telegrinder/tools/i18n/middleware/base.py +26 -0
- telegrinder/tools/i18n/simple.py +48 -0
- telegrinder/tools/inline_query.py +684 -0
- telegrinder/tools/kb_set/__init__.py +2 -0
- telegrinder/tools/kb_set/base.py +3 -0
- telegrinder/tools/kb_set/yaml.py +28 -17
- telegrinder/tools/keyboard.py +84 -62
- telegrinder/tools/loop_wrapper/__init__.py +4 -0
- telegrinder/tools/loop_wrapper/abc.py +18 -0
- telegrinder/tools/loop_wrapper/loop_wrapper.py +132 -0
- telegrinder/tools/magic.py +48 -23
- telegrinder/tools/parse_mode.py +1 -2
- telegrinder/types/__init__.py +1 -0
- telegrinder/types/enums.py +651 -0
- telegrinder/types/methods.py +3920 -1251
- telegrinder/types/objects.py +4702 -1718
- {telegrinder-0.1.dev20.dist-info → telegrinder-0.1.dev158.dist-info}/LICENSE +2 -1
- telegrinder-0.1.dev158.dist-info/METADATA +108 -0
- telegrinder-0.1.dev158.dist-info/RECORD +126 -0
- {telegrinder-0.1.dev20.dist-info → telegrinder-0.1.dev158.dist-info}/WHEEL +1 -1
- telegrinder/bot/dispatch/waiter.py +0 -38
- telegrinder/result.py +0 -38
- telegrinder/tools/formatting/abc.py +0 -52
- telegrinder/tools/formatting/markdown.py +0 -57
- telegrinder-0.1.dev20.dist-info/METADATA +0 -22
- telegrinder-0.1.dev20.dist-info/RECORD +0 -71
|
@@ -0,0 +1,451 @@
|
|
|
1
|
+
import dataclasses
|
|
2
|
+
from copy import deepcopy
|
|
3
|
+
from functools import wraps
|
|
4
|
+
|
|
5
|
+
import typing_extensions as typing
|
|
6
|
+
from fntypes.co import Error, Nothing, Ok, Option, Result, Some
|
|
7
|
+
|
|
8
|
+
from telegrinder.modules import logger
|
|
9
|
+
from telegrinder.msgspec_utils import msgspec_convert
|
|
10
|
+
|
|
11
|
+
from .abc import ABCGlobalContext, CtxVar, CtxVariable, GlobalCtxVar
|
|
12
|
+
|
|
13
|
+
T = typing.TypeVar("T")
|
|
14
|
+
F = typing.TypeVar("F", bound=typing.Callable)
|
|
15
|
+
CtxValueT = typing.TypeVar("CtxValueT", default=typing.Any)
|
|
16
|
+
|
|
17
|
+
if typing.TYPE_CHECKING:
|
|
18
|
+
|
|
19
|
+
_: typing.TypeAlias = None
|
|
20
|
+
else:
|
|
21
|
+
|
|
22
|
+
_ = lambda: None
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def type_check(value: object, value_type: type[T]) -> typing.TypeGuard[T]:
|
|
26
|
+
return True if value_type is object else bool(msgspec_convert(value, value_type))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def is_dunder(name: str) -> bool:
|
|
30
|
+
return name.startswith("__") and name.endswith("__")
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def get_orig_class(obj: T) -> type[T]:
|
|
34
|
+
return getattr(obj, "__orig_class__", obj.__class__)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def root_protection(func: F) -> F:
|
|
38
|
+
if func.__name__ not in ("__setattr__", "__getattr__", "__delattr__"):
|
|
39
|
+
raise RuntimeError(
|
|
40
|
+
"You cannot decorate a {!r} function with this decorator, only "
|
|
41
|
+
"'__setattr__', __getattr__', '__delattr__' methods.".format(
|
|
42
|
+
func.__name__,
|
|
43
|
+
)
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
@wraps(func)
|
|
47
|
+
def wrapper(self: "GlobalContext", __name: str, *args) -> typing.Any:
|
|
48
|
+
if self.is_root_attribute(__name) and __name in (
|
|
49
|
+
self.__dict__ | self.__class__.__dict__
|
|
50
|
+
):
|
|
51
|
+
root_attr = self.get_root_attribute(__name).unwrap()
|
|
52
|
+
if all((not root_attr.can_be_rewritten, not root_attr.can_be_read)):
|
|
53
|
+
raise AttributeError(
|
|
54
|
+
f"Unable to set, get, delete root attribute {__name!r}."
|
|
55
|
+
)
|
|
56
|
+
if func.__name__ == "__setattr__" and not root_attr.can_be_rewritten:
|
|
57
|
+
raise AttributeError(f"Unable to set root attribute {__name!r}.")
|
|
58
|
+
if func.__name__ == "__getattr__" and not root_attr.can_be_read:
|
|
59
|
+
raise AttributeError(f"Unable to get root attribute {__name!r}.")
|
|
60
|
+
if func.__name__ == "__delattr__":
|
|
61
|
+
raise AttributeError(f"Unable to delete root attribute {__name!r}.")
|
|
62
|
+
|
|
63
|
+
return func(self, __name, *args) # type: ignore
|
|
64
|
+
|
|
65
|
+
return wrapper # type: ignore
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
def ctx_var(value: T, *, const: bool = False) -> T:
|
|
69
|
+
"""Example:
|
|
70
|
+
```
|
|
71
|
+
class MyCtx(GlobalContext):
|
|
72
|
+
name: typing.Final[str]
|
|
73
|
+
URL: typing.Final = ctx_var("https://google.com", const=True)
|
|
74
|
+
|
|
75
|
+
ctx = MyCtx(name=ctx_var("Alex", const=True))
|
|
76
|
+
ctx.URL #: 'https://google.com'
|
|
77
|
+
ctx.URL = '...' #: type checking error & exception 'TypeError'
|
|
78
|
+
```
|
|
79
|
+
"""
|
|
80
|
+
|
|
81
|
+
return typing.cast(T, CtxVar(value, const=const))
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
@dataclasses.dataclass(frozen=True, eq=False)
|
|
85
|
+
class RootAttr:
|
|
86
|
+
name: str
|
|
87
|
+
_: dataclasses.KW_ONLY
|
|
88
|
+
can_be_read: bool = dataclasses.field(default=True, kw_only=True)
|
|
89
|
+
can_be_rewritten: bool = dataclasses.field(default=False, kw_only=True)
|
|
90
|
+
|
|
91
|
+
def __eq__(self, __value: str) -> bool:
|
|
92
|
+
return self.name == __value
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
@dataclasses.dataclass(repr=False, frozen=True)
|
|
96
|
+
class Storage:
|
|
97
|
+
_storage: dict[str, "GlobalContext"] = dataclasses.field(
|
|
98
|
+
default_factory=lambda: {},
|
|
99
|
+
init=False,
|
|
100
|
+
)
|
|
101
|
+
|
|
102
|
+
def __repr__(self) -> str:
|
|
103
|
+
return "<ContextStorage: %s>" % ", ".join(
|
|
104
|
+
"ctx @" + repr(x) for x in self._storage
|
|
105
|
+
)
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
def storage(self) -> dict[str, "GlobalContext"]:
|
|
109
|
+
return self._storage.copy()
|
|
110
|
+
|
|
111
|
+
def set(self, name: str, ctx: "GlobalContext") -> None:
|
|
112
|
+
self._storage.setdefault(name, ctx)
|
|
113
|
+
|
|
114
|
+
def get(self, ctx_name: str) -> Option["GlobalContext"]:
|
|
115
|
+
ctx = self._storage.get(ctx_name)
|
|
116
|
+
return Some(ctx) if ctx is not None else Nothing()
|
|
117
|
+
|
|
118
|
+
def delete(self, ctx_name: str) -> None:
|
|
119
|
+
assert self._storage.pop(ctx_name, None) is not None, f"Context {ctx_name!r} is not defined in storage."
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
@typing.dataclass_transform(
|
|
123
|
+
kw_only_default=True,
|
|
124
|
+
order_default=True,
|
|
125
|
+
field_specifiers=(ctx_var,),
|
|
126
|
+
)
|
|
127
|
+
class GlobalContext(ABCGlobalContext, typing.Generic[CtxValueT], dict[str, GlobalCtxVar[CtxValueT]]):
|
|
128
|
+
"""GlobalContext.
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
ctx = GlobalContext()
|
|
132
|
+
ctx["client"] = Client()
|
|
133
|
+
ctx.address = CtxVar("128.0.0.7:8888", const=True)
|
|
134
|
+
|
|
135
|
+
def request():
|
|
136
|
+
data = {"user": "root_user", "password": "secret_password"}
|
|
137
|
+
ctx.client.request(ctx.address + "/login", data)
|
|
138
|
+
"""
|
|
139
|
+
|
|
140
|
+
__ctx_name__: str | None
|
|
141
|
+
__storage__: typing.ClassVar[Storage] = Storage()
|
|
142
|
+
__root_attributes__: typing.ClassVar[tuple[RootAttr, ...]] = (
|
|
143
|
+
RootAttr("__ctx_name__"),
|
|
144
|
+
RootAttr("__root_attributes__"),
|
|
145
|
+
RootAttr("__storage__"),
|
|
146
|
+
)
|
|
147
|
+
|
|
148
|
+
def __new__(
|
|
149
|
+
cls,
|
|
150
|
+
ctx_name: str | None = None,
|
|
151
|
+
/,
|
|
152
|
+
**variables: typing.Any | CtxVar[CtxValueT],
|
|
153
|
+
) -> typing.Self:
|
|
154
|
+
"""Create or get from storage a new `GlobalContext` object."""
|
|
155
|
+
|
|
156
|
+
if not issubclass(GlobalContext, cls):
|
|
157
|
+
defaults = {}
|
|
158
|
+
for name in cls.__annotations__:
|
|
159
|
+
if (
|
|
160
|
+
name in cls.__dict__
|
|
161
|
+
and name not in cls.__root_attributes__
|
|
162
|
+
):
|
|
163
|
+
defaults[name] = getattr(cls, name)
|
|
164
|
+
delattr(cls, name)
|
|
165
|
+
if isinstance(defaults[name], CtxVar) and defaults[name].const:
|
|
166
|
+
variables.pop(name, None)
|
|
167
|
+
|
|
168
|
+
variables = defaults | variables
|
|
169
|
+
|
|
170
|
+
ctx_name = getattr(cls, "__ctx_name__", ctx_name)
|
|
171
|
+
if ctx_name is None:
|
|
172
|
+
ctx = dict.__new__(cls)
|
|
173
|
+
elif ctx_name in cls.__storage__.storage:
|
|
174
|
+
ctx = cls.__storage__.get(ctx_name).unwrap()
|
|
175
|
+
else:
|
|
176
|
+
ctx = dict.__new__(cls, ctx_name)
|
|
177
|
+
cls.__storage__.set(ctx_name, ctx)
|
|
178
|
+
|
|
179
|
+
ctx.set_context_variables(variables)
|
|
180
|
+
return ctx # type: ignore
|
|
181
|
+
|
|
182
|
+
def __init__(
|
|
183
|
+
self,
|
|
184
|
+
ctx_name: str | None = None,
|
|
185
|
+
/,
|
|
186
|
+
**variables: CtxValueT | CtxVariable[CtxValueT],
|
|
187
|
+
):
|
|
188
|
+
"""Initialization of `GlobalContext` with passed variables."""
|
|
189
|
+
|
|
190
|
+
if not hasattr(self, "__ctx_name__"):
|
|
191
|
+
self.__ctx_name__ = ctx_name
|
|
192
|
+
|
|
193
|
+
if variables and not self:
|
|
194
|
+
self.set_context_variables(variables)
|
|
195
|
+
|
|
196
|
+
def __repr__(self) -> str:
|
|
197
|
+
return "<{!r} -> ({})>".format(
|
|
198
|
+
f"{self.__class__.__name__}@{self.ctx_name}",
|
|
199
|
+
", ".join(repr(var) for var in self),
|
|
200
|
+
)
|
|
201
|
+
|
|
202
|
+
def __eq__(self, __value: "GlobalContext") -> bool:
|
|
203
|
+
"""Returns True if the names of context stores
|
|
204
|
+
that use self and __value instances are equivalent."""
|
|
205
|
+
|
|
206
|
+
return self.__ctx_name__ == __value.__ctx_name__
|
|
207
|
+
|
|
208
|
+
def __setitem__(self, __name: str, __value: CtxValueT | CtxVariable[CtxValueT]):
|
|
209
|
+
if is_dunder(__name):
|
|
210
|
+
raise NameError("Cannot set a context variable with dunder name.")
|
|
211
|
+
var = self.get(__name)
|
|
212
|
+
if var and var.unwrap().const:
|
|
213
|
+
raise TypeError(
|
|
214
|
+
f"Unable to set variable {__name!r}, because it's a constant."
|
|
215
|
+
)
|
|
216
|
+
dict.__setitem__(self, __name, GlobalCtxVar.collect(__name, __value))
|
|
217
|
+
|
|
218
|
+
def __getitem__(self, __name: str) -> CtxValueT:
|
|
219
|
+
return self.get(__name).unwrap().value
|
|
220
|
+
|
|
221
|
+
def __delitem__(self, __name: str):
|
|
222
|
+
var = self.get(__name).unwrap()
|
|
223
|
+
if var.const:
|
|
224
|
+
raise TypeError(
|
|
225
|
+
f"Unable to delete variable {__name!r}, because it's a constant."
|
|
226
|
+
)
|
|
227
|
+
dict.__delitem__(self, __name)
|
|
228
|
+
|
|
229
|
+
@root_protection
|
|
230
|
+
def __setattr__(self, __name: str, __value: CtxValueT | CtxVariable[CtxValueT]):
|
|
231
|
+
"""Setting a context variable."""
|
|
232
|
+
|
|
233
|
+
if is_dunder(__name):
|
|
234
|
+
return object.__setattr__(self, __name, __value)
|
|
235
|
+
self.__setitem__(__name, __value)
|
|
236
|
+
|
|
237
|
+
@root_protection
|
|
238
|
+
def __getattr__(self, __name: str) -> CtxValueT:
|
|
239
|
+
"""Getting a context variable."""
|
|
240
|
+
|
|
241
|
+
if is_dunder(__name):
|
|
242
|
+
return object.__getattribute__(self, __name)
|
|
243
|
+
return self.__getitem__(__name)
|
|
244
|
+
|
|
245
|
+
@root_protection
|
|
246
|
+
def __delattr__(self, __name: str) -> None:
|
|
247
|
+
"""Removing a context variable."""
|
|
248
|
+
|
|
249
|
+
if is_dunder(__name):
|
|
250
|
+
return object.__delattr__(self, __name)
|
|
251
|
+
self.__delitem__(__name)
|
|
252
|
+
|
|
253
|
+
@property
|
|
254
|
+
def ctx_name(self) -> str:
|
|
255
|
+
"""Context name."""
|
|
256
|
+
|
|
257
|
+
return self.__ctx_name__ or "<Unnamed ctx at %#x>" % id(self)
|
|
258
|
+
|
|
259
|
+
@classmethod
|
|
260
|
+
def is_root_attribute(cls, name: str) -> bool:
|
|
261
|
+
"""Returns True if exists root attribute
|
|
262
|
+
otherwise False."""
|
|
263
|
+
|
|
264
|
+
return name in cls.__root_attributes__
|
|
265
|
+
|
|
266
|
+
def set_context_variables(self, variables: typing.Mapping[str, CtxValueT | CtxVariable[CtxValueT]]) -> None:
|
|
267
|
+
"""Set context variables from mapping."""
|
|
268
|
+
|
|
269
|
+
for name, var in variables.items():
|
|
270
|
+
self[name] = var
|
|
271
|
+
|
|
272
|
+
def get_root_attribute(self, name: str) -> Option[RootAttr]:
|
|
273
|
+
"""Get root attribute by name."""
|
|
274
|
+
|
|
275
|
+
if self.is_root_attribute(name):
|
|
276
|
+
for rattr in self.__root_attributes__:
|
|
277
|
+
if rattr.name == name:
|
|
278
|
+
return Some(rattr)
|
|
279
|
+
return Nothing()
|
|
280
|
+
|
|
281
|
+
def items(self) -> list[tuple[str, GlobalCtxVar[CtxValueT]]]:
|
|
282
|
+
"""Return context variables as set-like items."""
|
|
283
|
+
|
|
284
|
+
return list(dict.items(self))
|
|
285
|
+
|
|
286
|
+
def keys(self) -> list[str]:
|
|
287
|
+
"""Returns context variable names as keys."""
|
|
288
|
+
|
|
289
|
+
return list(dict.keys(self))
|
|
290
|
+
|
|
291
|
+
def values(self) -> list[GlobalCtxVar[CtxValueT]]:
|
|
292
|
+
"""Returns context variables as values."""
|
|
293
|
+
|
|
294
|
+
return list(dict.values(self))
|
|
295
|
+
|
|
296
|
+
def update(self, other: typing.Self) -> None:
|
|
297
|
+
"""Update context."""
|
|
298
|
+
|
|
299
|
+
dict.update(dict(other.items()))
|
|
300
|
+
|
|
301
|
+
def copy(self) -> typing.Self:
|
|
302
|
+
"""Copy context. Returns copied context without ctx_name."""
|
|
303
|
+
|
|
304
|
+
return self.__class__(**self.dict())
|
|
305
|
+
|
|
306
|
+
def dict(self) -> dict[str, GlobalCtxVar[CtxValueT]]:
|
|
307
|
+
"""Returns context as dict."""
|
|
308
|
+
|
|
309
|
+
return {name: deepcopy(var) for name, var in self.items()}
|
|
310
|
+
|
|
311
|
+
@typing.overload
|
|
312
|
+
def pop(self, var_name: str) -> Option[GlobalCtxVar[CtxValueT]]:
|
|
313
|
+
...
|
|
314
|
+
|
|
315
|
+
@typing.overload
|
|
316
|
+
def pop(
|
|
317
|
+
self,
|
|
318
|
+
var_name: str,
|
|
319
|
+
var_value_type: type[T],
|
|
320
|
+
) -> Option[GlobalCtxVar[T]]:
|
|
321
|
+
...
|
|
322
|
+
|
|
323
|
+
def pop(
|
|
324
|
+
self,
|
|
325
|
+
var_name: str,
|
|
326
|
+
var_value_type: type[T] = object
|
|
327
|
+
) -> Option[GlobalCtxVar[T]]:
|
|
328
|
+
"""Pop context variable by name.
|
|
329
|
+
Returns Option[GlobalCtxVar[T]] object.
|
|
330
|
+
"""
|
|
331
|
+
|
|
332
|
+
val = self.get(var_name, var_value_type)
|
|
333
|
+
if val:
|
|
334
|
+
del self[var_name]
|
|
335
|
+
return val
|
|
336
|
+
return Nothing()
|
|
337
|
+
|
|
338
|
+
@typing.overload
|
|
339
|
+
def get(self, var_name: str) -> Option[GlobalCtxVar[CtxValueT]]:
|
|
340
|
+
...
|
|
341
|
+
|
|
342
|
+
@typing.overload
|
|
343
|
+
def get(
|
|
344
|
+
self,
|
|
345
|
+
var_name: str,
|
|
346
|
+
var_value_type: type[T],
|
|
347
|
+
) -> Option[GlobalCtxVar[T]]:
|
|
348
|
+
...
|
|
349
|
+
|
|
350
|
+
def get(
|
|
351
|
+
self,
|
|
352
|
+
var_name: str,
|
|
353
|
+
var_value_type: type[T] = object,
|
|
354
|
+
) -> Option[GlobalCtxVar[T]]:
|
|
355
|
+
"""Get context variable by name.
|
|
356
|
+
Returns `GlobalCtxVar[value_type]` object."""
|
|
357
|
+
|
|
358
|
+
generic_types = typing.get_args(get_orig_class(self))
|
|
359
|
+
if generic_types and var_value_type is object:
|
|
360
|
+
var_value_type = generic_types[0]
|
|
361
|
+
var = dict.get(self, var_name)
|
|
362
|
+
if var is None:
|
|
363
|
+
return Nothing()
|
|
364
|
+
assert type_check(var.value, var_value_type), (
|
|
365
|
+
"Context variable value type of {!r} does not correspond to the expected type {!r}.".format(
|
|
366
|
+
type(var.value).__name__,
|
|
367
|
+
getattr(var_value_type, "__name__")
|
|
368
|
+
if isinstance(var_value_type, type)
|
|
369
|
+
else repr(var_value_type),
|
|
370
|
+
)
|
|
371
|
+
)
|
|
372
|
+
return Some(var)
|
|
373
|
+
|
|
374
|
+
@typing.overload
|
|
375
|
+
def get_value(self, var_name: str) -> Option[CtxValueT]:
|
|
376
|
+
...
|
|
377
|
+
|
|
378
|
+
@typing.overload
|
|
379
|
+
def get_value(
|
|
380
|
+
self,
|
|
381
|
+
var_name: str,
|
|
382
|
+
var_value_type: type[T],
|
|
383
|
+
) -> Option[T]:
|
|
384
|
+
...
|
|
385
|
+
|
|
386
|
+
def get_value(
|
|
387
|
+
self,
|
|
388
|
+
var_name: str,
|
|
389
|
+
var_value_type: type[T] = object,
|
|
390
|
+
) -> Option[T]:
|
|
391
|
+
"""Get context variable value by name."""
|
|
392
|
+
|
|
393
|
+
return self.get(var_name, var_value_type).map(lambda var: var.value)
|
|
394
|
+
|
|
395
|
+
def rename(self, old_var_name: str, new_var_name: str) -> Result[_, str]:
|
|
396
|
+
"""Rename context variable."""
|
|
397
|
+
|
|
398
|
+
var = self.get(old_var_name).unwrap()
|
|
399
|
+
if var.const:
|
|
400
|
+
return Error(
|
|
401
|
+
f"Unable to rename variable {old_var_name!r}, "
|
|
402
|
+
"because it's a constant."
|
|
403
|
+
)
|
|
404
|
+
del self[old_var_name]
|
|
405
|
+
self[new_var_name] = var.value
|
|
406
|
+
return Ok(_())
|
|
407
|
+
|
|
408
|
+
def clear(self, *, include_consts: bool = False) -> None:
|
|
409
|
+
"""Clear context. If `include_consts = True`,
|
|
410
|
+
then the context is completely cleared."""
|
|
411
|
+
|
|
412
|
+
if not self:
|
|
413
|
+
return
|
|
414
|
+
if include_consts:
|
|
415
|
+
logger.warning(
|
|
416
|
+
"Constants from the global context {!r} have been cleaned up!",
|
|
417
|
+
self.ctx_name + " at %#x" % id(self),
|
|
418
|
+
)
|
|
419
|
+
return dict.clear(self)
|
|
420
|
+
|
|
421
|
+
for name, var in self.dict().items():
|
|
422
|
+
if var.const:
|
|
423
|
+
continue
|
|
424
|
+
del self[name]
|
|
425
|
+
|
|
426
|
+
def delete_ctx(self) -> Result[_, str]:
|
|
427
|
+
"""Delete context by `ctx_name`."""
|
|
428
|
+
|
|
429
|
+
if not self.__ctx_name__:
|
|
430
|
+
return Error("Cannot delete unnamed context.")
|
|
431
|
+
ctx = self.__storage__.get(self.ctx_name).unwrap()
|
|
432
|
+
dict.clear(ctx)
|
|
433
|
+
self.__storage__.delete(self.ctx_name)
|
|
434
|
+
logger.warning(f"Global context {self.ctx_name!r} has been deleted!")
|
|
435
|
+
return Ok(_())
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
__all__ = (
|
|
439
|
+
"ABCGlobalContext",
|
|
440
|
+
"CtxVar",
|
|
441
|
+
"CtxVariable",
|
|
442
|
+
"GlobalContext",
|
|
443
|
+
"GlobalCtxVar",
|
|
444
|
+
"RootAttr",
|
|
445
|
+
"Storage",
|
|
446
|
+
"ctx_var",
|
|
447
|
+
"get_orig_class",
|
|
448
|
+
"is_dunder",
|
|
449
|
+
"root_protection",
|
|
450
|
+
"type_check",
|
|
451
|
+
)
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
|
|
3
|
+
import vbml
|
|
4
|
+
|
|
5
|
+
from telegrinder.tools.global_context import GlobalContext, ctx_var
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class TelegrinderCtx(GlobalContext):
|
|
9
|
+
"""Basic type-hinted telegrinder context with context name `"telegrinder"`.
|
|
10
|
+
|
|
11
|
+
You can use this class or GlobalContext:
|
|
12
|
+
```
|
|
13
|
+
from telegrinder.tools.global_context import GlobalContext, TelegrinderCtx
|
|
14
|
+
|
|
15
|
+
ctx1 = TelegrinderCtx()
|
|
16
|
+
ctx2 = GlobalContext("telegrinder") # same, but without the type-hints
|
|
17
|
+
assert ctx1 == ctx2 # ok
|
|
18
|
+
```"""
|
|
19
|
+
|
|
20
|
+
__ctx_name__ = "telegrinder"
|
|
21
|
+
|
|
22
|
+
vbml_patcher: typing.ClassVar[vbml.Patcher] = ctx_var(vbml.Patcher(), const=True)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
__all__ = ("TelegrinderCtx",)
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
from .base import ABCI18n, ABCTranslator, I18nEnum
|
|
2
|
+
from .middleware import ABCTranslatorMiddleware
|
|
3
|
+
from .simple import SimpleI18n, SimpleTranslator
|
|
4
|
+
|
|
5
|
+
__all__ = (
|
|
6
|
+
"ABCI18n",
|
|
7
|
+
"ABCTranslator",
|
|
8
|
+
"ABCTranslatorMiddleware",
|
|
9
|
+
"I18nEnum",
|
|
10
|
+
"SimpleI18n",
|
|
11
|
+
"SimpleTranslator",
|
|
12
|
+
)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import enum
|
|
2
|
+
from abc import ABC, abstractmethod
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class ABCI18n(ABC):
|
|
6
|
+
@abstractmethod
|
|
7
|
+
def get_translator_by_locale(self, locale: str) -> "ABCTranslator":
|
|
8
|
+
pass
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ABCTranslator(ABC):
|
|
12
|
+
def __init__(self, locale: str, **kwargs):
|
|
13
|
+
self.locale = locale
|
|
14
|
+
|
|
15
|
+
@abstractmethod
|
|
16
|
+
def get(self, __key: str, *args, **kwargs) -> str:
|
|
17
|
+
"""This translates a key to actual human-readable string"""
|
|
18
|
+
|
|
19
|
+
def __call__(self, __key: str, *args, **kwargs):
|
|
20
|
+
return self.get(__key, *args, **kwargs)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class I18nEnum(enum.Enum):
|
|
24
|
+
I18N = "_"
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
__all__ = (
|
|
28
|
+
"ABCI18n",
|
|
29
|
+
"ABCTranslator",
|
|
30
|
+
"I18nEnum",
|
|
31
|
+
)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from abc import abstractmethod
|
|
3
|
+
|
|
4
|
+
from telegrinder.bot.cute_types.base import BaseCute
|
|
5
|
+
from telegrinder.bot.dispatch.middleware import ABCMiddleware
|
|
6
|
+
from telegrinder.tools.i18n import ABCI18n, I18nEnum
|
|
7
|
+
|
|
8
|
+
T = typing.TypeVar("T", bound=BaseCute)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ABCTranslatorMiddleware(ABCMiddleware[T]):
|
|
12
|
+
def __init__(self, i18n: ABCI18n):
|
|
13
|
+
self.i18n = i18n
|
|
14
|
+
|
|
15
|
+
@abstractmethod
|
|
16
|
+
async def get_locale(self, event: T) -> str:
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
async def pre(self, event: T, ctx: dict) -> bool:
|
|
20
|
+
ctx[I18nEnum.I18N] = self.i18n.get_translator_by_locale(
|
|
21
|
+
await self.get_locale(event)
|
|
22
|
+
)
|
|
23
|
+
return True
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
__all__ = ("ABCTranslatorMiddleware",)
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"""This is an implementation of GNU gettext (pyBabel)."""
|
|
2
|
+
|
|
3
|
+
import gettext
|
|
4
|
+
import os
|
|
5
|
+
|
|
6
|
+
from telegrinder.tools.i18n import ABCI18n
|
|
7
|
+
from telegrinder.tools.i18n.base import ABCTranslator
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class SimpleI18n(ABCI18n):
|
|
11
|
+
def __init__(self, folder: str, domain: str, default_locale: str):
|
|
12
|
+
self.folder = folder
|
|
13
|
+
self.domain = domain
|
|
14
|
+
self.default_locale = default_locale
|
|
15
|
+
self.translators = self._load_translators()
|
|
16
|
+
|
|
17
|
+
def _load_translators(self) -> dict[str, gettext.GNUTranslations]:
|
|
18
|
+
result = {}
|
|
19
|
+
for name in os.listdir(self.folder):
|
|
20
|
+
if not os.path.isdir(os.path.join(self.folder, name)):
|
|
21
|
+
continue
|
|
22
|
+
|
|
23
|
+
mo_path = os.path.join(
|
|
24
|
+
self.folder, name, "LC_MESSAGES", f"{self.domain}.mo"
|
|
25
|
+
)
|
|
26
|
+
if os.path.exists(mo_path):
|
|
27
|
+
with open(mo_path, "rb") as f:
|
|
28
|
+
result[name] = gettext.GNUTranslations(f)
|
|
29
|
+
elif os.path.exists(mo_path[:-2] + "po"):
|
|
30
|
+
raise FileNotFoundError(".po files should be compiled first")
|
|
31
|
+
return result
|
|
32
|
+
|
|
33
|
+
def get_translator_by_locale(self, locale: str) -> "SimpleTranslator":
|
|
34
|
+
return SimpleTranslator(
|
|
35
|
+
locale, self.translators.get(locale, self.translators[self.default_locale])
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class SimpleTranslator(ABCTranslator):
|
|
40
|
+
def __init__(self, locale: str, g: gettext.GNUTranslations):
|
|
41
|
+
self.g = g
|
|
42
|
+
super().__init__(locale)
|
|
43
|
+
|
|
44
|
+
def get(self, __key: str, *args, **kwargs) -> str:
|
|
45
|
+
return self.g.gettext(__key).format(*args, **kwargs)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
__all__ = ("SimpleI18n", "SimpleTranslator")
|