telegrinder 0.4.2__py3-none-any.whl → 0.5.0__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.

Files changed (233) hide show
  1. telegrinder/__init__.py +37 -55
  2. telegrinder/__meta__.py +1 -0
  3. telegrinder/api/__init__.py +6 -4
  4. telegrinder/api/api.py +100 -26
  5. telegrinder/api/error.py +42 -8
  6. telegrinder/api/response.py +4 -1
  7. telegrinder/api/token.py +2 -2
  8. telegrinder/bot/__init__.py +9 -25
  9. telegrinder/bot/bot.py +31 -25
  10. telegrinder/bot/cute_types/__init__.py +0 -0
  11. telegrinder/bot/cute_types/base.py +103 -61
  12. telegrinder/bot/cute_types/callback_query.py +447 -400
  13. telegrinder/bot/cute_types/chat_join_request.py +59 -62
  14. telegrinder/bot/cute_types/chat_member_updated.py +154 -157
  15. telegrinder/bot/cute_types/inline_query.py +41 -44
  16. telegrinder/bot/cute_types/message.py +2621 -2590
  17. telegrinder/bot/cute_types/pre_checkout_query.py +38 -42
  18. telegrinder/bot/cute_types/update.py +1 -8
  19. telegrinder/bot/cute_types/utils.py +1 -1
  20. telegrinder/bot/dispatch/__init__.py +10 -15
  21. telegrinder/bot/dispatch/abc.py +12 -11
  22. telegrinder/bot/dispatch/action.py +104 -0
  23. telegrinder/bot/dispatch/context.py +32 -26
  24. telegrinder/bot/dispatch/dispatch.py +61 -134
  25. telegrinder/bot/dispatch/handler/__init__.py +2 -0
  26. telegrinder/bot/dispatch/handler/abc.py +10 -8
  27. telegrinder/bot/dispatch/handler/audio_reply.py +2 -3
  28. telegrinder/bot/dispatch/handler/base.py +10 -33
  29. telegrinder/bot/dispatch/handler/document_reply.py +2 -3
  30. telegrinder/bot/dispatch/handler/func.py +55 -87
  31. telegrinder/bot/dispatch/handler/media_group_reply.py +2 -3
  32. telegrinder/bot/dispatch/handler/message_reply.py +2 -3
  33. telegrinder/bot/dispatch/handler/photo_reply.py +2 -3
  34. telegrinder/bot/dispatch/handler/sticker_reply.py +2 -3
  35. telegrinder/bot/dispatch/handler/video_reply.py +2 -3
  36. telegrinder/bot/dispatch/middleware/__init__.py +0 -0
  37. telegrinder/bot/dispatch/middleware/abc.py +79 -55
  38. telegrinder/bot/dispatch/middleware/global_middleware.py +18 -33
  39. telegrinder/bot/dispatch/process.py +84 -105
  40. telegrinder/bot/dispatch/return_manager/__init__.py +0 -0
  41. telegrinder/bot/dispatch/return_manager/abc.py +102 -65
  42. telegrinder/bot/dispatch/return_manager/callback_query.py +4 -5
  43. telegrinder/bot/dispatch/return_manager/inline_query.py +3 -4
  44. telegrinder/bot/dispatch/return_manager/message.py +8 -10
  45. telegrinder/bot/dispatch/return_manager/pre_checkout_query.py +4 -5
  46. telegrinder/bot/dispatch/view/__init__.py +4 -4
  47. telegrinder/bot/dispatch/view/abc.py +6 -16
  48. telegrinder/bot/dispatch/view/base.py +54 -178
  49. telegrinder/bot/dispatch/view/box.py +19 -18
  50. telegrinder/bot/dispatch/view/callback_query.py +4 -8
  51. telegrinder/bot/dispatch/view/chat_join_request.py +5 -6
  52. telegrinder/bot/dispatch/view/chat_member.py +5 -25
  53. telegrinder/bot/dispatch/view/error.py +9 -0
  54. telegrinder/bot/dispatch/view/inline_query.py +4 -8
  55. telegrinder/bot/dispatch/view/message.py +5 -25
  56. telegrinder/bot/dispatch/view/pre_checkout_query.py +4 -8
  57. telegrinder/bot/dispatch/view/raw.py +3 -109
  58. telegrinder/bot/dispatch/waiter_machine/__init__.py +2 -5
  59. telegrinder/bot/dispatch/waiter_machine/actions.py +6 -4
  60. telegrinder/bot/dispatch/waiter_machine/hasher/__init__.py +1 -3
  61. telegrinder/bot/dispatch/waiter_machine/hasher/callback.py +1 -1
  62. telegrinder/bot/dispatch/waiter_machine/hasher/hasher.py +11 -7
  63. telegrinder/bot/dispatch/waiter_machine/hasher/message.py +0 -0
  64. telegrinder/bot/dispatch/waiter_machine/machine.py +43 -60
  65. telegrinder/bot/dispatch/waiter_machine/middleware.py +19 -23
  66. telegrinder/bot/dispatch/waiter_machine/short_state.py +6 -5
  67. telegrinder/bot/polling/__init__.py +0 -0
  68. telegrinder/bot/polling/abc.py +0 -0
  69. telegrinder/bot/polling/polling.py +209 -88
  70. telegrinder/bot/rules/__init__.py +3 -16
  71. telegrinder/bot/rules/abc.py +42 -122
  72. telegrinder/bot/rules/callback_data.py +29 -49
  73. telegrinder/bot/rules/chat_join.py +5 -23
  74. telegrinder/bot/rules/command.py +8 -4
  75. telegrinder/bot/rules/enum_text.py +3 -4
  76. telegrinder/bot/rules/func.py +7 -14
  77. telegrinder/bot/rules/fuzzy.py +3 -4
  78. telegrinder/bot/rules/inline.py +8 -20
  79. telegrinder/bot/rules/integer.py +2 -3
  80. telegrinder/bot/rules/is_from.py +12 -11
  81. telegrinder/bot/rules/logic.py +11 -5
  82. telegrinder/bot/rules/markup.py +22 -14
  83. telegrinder/bot/rules/mention.py +8 -7
  84. telegrinder/bot/rules/message_entities.py +8 -4
  85. telegrinder/bot/rules/node.py +23 -12
  86. telegrinder/bot/rules/payload.py +5 -4
  87. telegrinder/bot/rules/payment_invoice.py +6 -21
  88. telegrinder/bot/rules/regex.py +2 -4
  89. telegrinder/bot/rules/rule_enum.py +8 -7
  90. telegrinder/bot/rules/start.py +5 -6
  91. telegrinder/bot/rules/state.py +1 -1
  92. telegrinder/bot/rules/text.py +4 -15
  93. telegrinder/bot/rules/update.py +3 -4
  94. telegrinder/bot/scenario/__init__.py +0 -0
  95. telegrinder/bot/scenario/abc.py +6 -5
  96. telegrinder/bot/scenario/checkbox.py +1 -1
  97. telegrinder/bot/scenario/choice.py +30 -39
  98. telegrinder/client/__init__.py +3 -5
  99. telegrinder/client/abc.py +11 -6
  100. telegrinder/client/aiohttp.py +141 -27
  101. telegrinder/client/form_data.py +1 -1
  102. telegrinder/model.py +61 -89
  103. telegrinder/modules.py +325 -102
  104. telegrinder/msgspec_utils/__init__.py +40 -0
  105. telegrinder/msgspec_utils/abc.py +18 -0
  106. telegrinder/msgspec_utils/custom_types/__init__.py +6 -0
  107. telegrinder/msgspec_utils/custom_types/datetime.py +24 -0
  108. telegrinder/msgspec_utils/custom_types/enum_meta.py +43 -0
  109. telegrinder/msgspec_utils/custom_types/literal.py +25 -0
  110. telegrinder/msgspec_utils/custom_types/option.py +17 -0
  111. telegrinder/msgspec_utils/decoder.py +389 -0
  112. telegrinder/msgspec_utils/encoder.py +206 -0
  113. telegrinder/{msgspec_json.py → msgspec_utils/json.py} +6 -5
  114. telegrinder/msgspec_utils/tools.py +75 -0
  115. telegrinder/node/__init__.py +24 -7
  116. telegrinder/node/attachment.py +1 -0
  117. telegrinder/node/base.py +154 -72
  118. telegrinder/node/callback_query.py +5 -5
  119. telegrinder/node/collection.py +39 -0
  120. telegrinder/node/command.py +1 -2
  121. telegrinder/node/composer.py +121 -72
  122. telegrinder/node/container.py +11 -8
  123. telegrinder/node/context.py +48 -0
  124. telegrinder/node/either.py +27 -40
  125. telegrinder/node/error.py +41 -0
  126. telegrinder/node/event.py +37 -11
  127. telegrinder/node/exceptions.py +7 -0
  128. telegrinder/node/file.py +0 -0
  129. telegrinder/node/i18n.py +108 -0
  130. telegrinder/node/me.py +3 -2
  131. telegrinder/node/payload.py +1 -1
  132. telegrinder/node/polymorphic.py +63 -28
  133. telegrinder/node/reply_message.py +12 -0
  134. telegrinder/node/rule.py +6 -13
  135. telegrinder/node/scope.py +14 -5
  136. telegrinder/node/session.py +53 -0
  137. telegrinder/node/source.py +41 -9
  138. telegrinder/node/text.py +1 -2
  139. telegrinder/node/tools/__init__.py +0 -0
  140. telegrinder/node/tools/generator.py +3 -5
  141. telegrinder/node/utility.py +16 -0
  142. telegrinder/py.typed +0 -0
  143. telegrinder/rules.py +0 -0
  144. telegrinder/tools/__init__.py +48 -88
  145. telegrinder/tools/aio.py +103 -0
  146. telegrinder/tools/callback_data_serialization/__init__.py +5 -0
  147. telegrinder/tools/{callback_data_serilization → callback_data_serialization}/abc.py +0 -0
  148. telegrinder/tools/{callback_data_serilization → callback_data_serialization}/json_ser.py +2 -3
  149. telegrinder/tools/{callback_data_serilization → callback_data_serialization}/msgpack_ser.py +45 -27
  150. telegrinder/tools/final.py +21 -0
  151. telegrinder/tools/formatting/__init__.py +2 -18
  152. telegrinder/tools/formatting/deep_links/__init__.py +39 -0
  153. telegrinder/tools/formatting/{deep_links.py → deep_links/links.py} +12 -85
  154. telegrinder/tools/formatting/deep_links/parsing.py +90 -0
  155. telegrinder/tools/formatting/deep_links/validators.py +8 -0
  156. telegrinder/tools/formatting/html_formatter.py +18 -45
  157. telegrinder/tools/fullname.py +83 -0
  158. telegrinder/tools/global_context/__init__.py +4 -3
  159. telegrinder/tools/global_context/abc.py +17 -14
  160. telegrinder/tools/global_context/builtin_context.py +39 -0
  161. telegrinder/tools/global_context/global_context.py +138 -39
  162. telegrinder/tools/input_file_directory.py +0 -0
  163. telegrinder/tools/keyboard/__init__.py +39 -0
  164. telegrinder/tools/keyboard/abc.py +159 -0
  165. telegrinder/tools/keyboard/base.py +77 -0
  166. telegrinder/tools/keyboard/buttons/__init__.py +14 -0
  167. telegrinder/tools/keyboard/buttons/base.py +18 -0
  168. telegrinder/tools/{buttons.py → keyboard/buttons/buttons.py} +71 -23
  169. telegrinder/tools/keyboard/buttons/static_buttons.py +56 -0
  170. telegrinder/tools/keyboard/buttons/tools.py +18 -0
  171. telegrinder/tools/keyboard/data.py +20 -0
  172. telegrinder/tools/keyboard/keyboard.py +131 -0
  173. telegrinder/tools/keyboard/static_keyboard.py +83 -0
  174. telegrinder/tools/lifespan.py +87 -51
  175. telegrinder/tools/limited_dict.py +4 -1
  176. telegrinder/tools/loop_wrapper.py +332 -0
  177. telegrinder/tools/magic/__init__.py +32 -0
  178. telegrinder/tools/magic/annotations.py +165 -0
  179. telegrinder/tools/magic/dictionary.py +20 -0
  180. telegrinder/tools/magic/function.py +246 -0
  181. telegrinder/tools/magic/shortcut.py +111 -0
  182. telegrinder/tools/parse_mode.py +9 -3
  183. telegrinder/tools/singleton/__init__.py +4 -0
  184. telegrinder/tools/singleton/abc.py +14 -0
  185. telegrinder/tools/singleton/singleton.py +18 -0
  186. telegrinder/tools/state_storage/__init__.py +0 -0
  187. telegrinder/tools/state_storage/abc.py +6 -1
  188. telegrinder/tools/state_storage/memory.py +1 -1
  189. telegrinder/tools/strings.py +0 -0
  190. telegrinder/types/__init__.py +307 -268
  191. telegrinder/types/enums.py +64 -37
  192. telegrinder/types/input_file.py +3 -3
  193. telegrinder/types/methods.py +5699 -5055
  194. telegrinder/types/methods_utils.py +62 -0
  195. telegrinder/types/objects.py +7846 -7058
  196. telegrinder/verification_utils.py +3 -1
  197. telegrinder-0.5.0.dist-info/METADATA +162 -0
  198. telegrinder-0.5.0.dist-info/RECORD +200 -0
  199. {telegrinder-0.4.2.dist-info → telegrinder-0.5.0.dist-info}/licenses/LICENSE +2 -2
  200. telegrinder/bot/dispatch/waiter_machine/hasher/state.py +0 -20
  201. telegrinder/bot/rules/id.py +0 -24
  202. telegrinder/bot/rules/message.py +0 -15
  203. telegrinder/client/sonic.py +0 -212
  204. telegrinder/msgspec_utils.py +0 -478
  205. telegrinder/tools/adapter/__init__.py +0 -19
  206. telegrinder/tools/adapter/abc.py +0 -49
  207. telegrinder/tools/adapter/dataclass.py +0 -56
  208. telegrinder/tools/adapter/errors.py +0 -5
  209. telegrinder/tools/adapter/event.py +0 -61
  210. telegrinder/tools/adapter/node.py +0 -46
  211. telegrinder/tools/adapter/raw_event.py +0 -27
  212. telegrinder/tools/adapter/raw_update.py +0 -30
  213. telegrinder/tools/callback_data_serilization/__init__.py +0 -5
  214. telegrinder/tools/error_handler/__init__.py +0 -10
  215. telegrinder/tools/error_handler/abc.py +0 -30
  216. telegrinder/tools/error_handler/error.py +0 -9
  217. telegrinder/tools/error_handler/error_handler.py +0 -179
  218. telegrinder/tools/formatting/spec_html_formats.py +0 -75
  219. telegrinder/tools/functional.py +0 -8
  220. telegrinder/tools/global_context/telegrinder_ctx.py +0 -27
  221. telegrinder/tools/i18n/__init__.py +0 -12
  222. telegrinder/tools/i18n/abc.py +0 -32
  223. telegrinder/tools/i18n/middleware/__init__.py +0 -3
  224. telegrinder/tools/i18n/middleware/abc.py +0 -22
  225. telegrinder/tools/i18n/simple.py +0 -43
  226. telegrinder/tools/keyboard.py +0 -132
  227. telegrinder/tools/loop_wrapper/__init__.py +0 -4
  228. telegrinder/tools/loop_wrapper/abc.py +0 -20
  229. telegrinder/tools/loop_wrapper/loop_wrapper.py +0 -169
  230. telegrinder/tools/magic.py +0 -344
  231. telegrinder-0.4.2.dist-info/METADATA +0 -151
  232. telegrinder-0.4.2.dist-info/RECORD +0 -182
  233. {telegrinder-0.4.2.dist-info → telegrinder-0.5.0.dist-info}/WHEEL +0 -0
@@ -1,62 +1,59 @@
1
- import typing
2
-
3
- from fntypes.result import Result
4
-
5
- from telegrinder.api.api import API, APIError
6
- from telegrinder.bot.cute_types.base import BaseCute
7
- from telegrinder.bot.cute_types.chat_member_updated import ChatMemberShortcuts, chat_member_interaction
8
- from telegrinder.tools.magic import shortcut
9
- from telegrinder.types.objects import *
10
-
11
-
12
- class ChatJoinRequestCute(BaseCute[ChatJoinRequest], ChatJoinRequest, ChatMemberShortcuts, kw_only=True):
13
- api: API
14
-
15
- @property
16
- def from_user(self) -> User:
17
- return self.from_
18
-
19
- @property
20
- def user_id(self) -> int:
21
- return self.from_user.id
22
-
23
- @shortcut(
24
- "approve_chat_join_request",
25
- executor=chat_member_interaction,
26
- custom_params={"chat_id", "user_id"},
27
- )
28
- async def approve(
29
- self,
30
- *,
31
- chat_id: int | str | None = None,
32
- user_id: int | None = None,
33
- **other: typing.Any,
34
- ) -> Result[bool, APIError]:
35
- """Shortcut `API.approve_chat_join_request()`, see the [documentation](https://core.telegram.org/bots/api#approvechatjoinrequest)
36
-
37
- Use this method to approve a chat join request. The bot must be an administrator
38
- in the chat for this to work and must have the can_invite_users administrator
39
- right. Returns True on success."""
40
- ...
41
-
42
- @shortcut(
43
- "decline_chat_join_request",
44
- executor=chat_member_interaction,
45
- custom_params={"chat_id", "user_id"},
46
- )
47
- async def decline(
48
- self,
49
- *,
50
- chat_id: int | str | None = None,
51
- user_id: int | None = None,
52
- **other: typing.Any,
53
- ) -> Result[bool, APIError]:
54
- """Shortcut `API.decline_chat_join_request()`, see the [documentation](https://core.telegram.org/bots/api#declinechatjoinrequest)
55
-
56
- Use this method to decline a chat join request. The bot must be an administrator
57
- in the chat for this to work and must have the can_invite_users administrator
58
- right. Returns True on success."""
59
- ...
60
-
61
-
62
- __all__ = ("ChatJoinRequestCute",)
1
+ import typing
2
+
3
+ from fntypes.result import Result
4
+
5
+ from telegrinder.api.api import APIError
6
+ from telegrinder.bot.cute_types.base import BaseCute, shortcut
7
+ from telegrinder.bot.cute_types.chat_member_updated import ChatMemberShortcuts, chat_member_interaction
8
+ from telegrinder.types.objects import *
9
+
10
+
11
+ class ChatJoinRequestCute(BaseCute[ChatJoinRequest], ChatJoinRequest, ChatMemberShortcuts, kw_only=True):
12
+ @property
13
+ def from_user(self) -> User:
14
+ return self.from_
15
+
16
+ @property
17
+ def user_id(self) -> int:
18
+ return self.from_user.id
19
+
20
+ @shortcut(
21
+ "approve_chat_join_request",
22
+ executor=chat_member_interaction,
23
+ custom_params={"chat_id", "user_id"},
24
+ )
25
+ async def approve(
26
+ self,
27
+ *,
28
+ chat_id: int | str | None = None,
29
+ user_id: int | None = None,
30
+ **other: typing.Any,
31
+ ) -> Result[bool, APIError]:
32
+ """Shortcut `API.approve_chat_join_request()`, see the [documentation](https://core.telegram.org/bots/api#approvechatjoinrequest)
33
+
34
+ Use this method to approve a chat join request. The bot must be an administrator
35
+ in the chat for this to work and must have the can_invite_users administrator
36
+ right. Returns True on success."""
37
+ ...
38
+
39
+ @shortcut(
40
+ "decline_chat_join_request",
41
+ executor=chat_member_interaction,
42
+ custom_params={"chat_id", "user_id"},
43
+ )
44
+ async def decline(
45
+ self,
46
+ *,
47
+ chat_id: int | str | None = None,
48
+ user_id: int | None = None,
49
+ **other: typing.Any,
50
+ ) -> Result[bool, APIError]:
51
+ """Shortcut `API.decline_chat_join_request()`, see the [documentation](https://core.telegram.org/bots/api#declinechatjoinrequest)
52
+
53
+ Use this method to decline a chat join request. The bot must be an administrator
54
+ in the chat for this to work and must have the can_invite_users administrator
55
+ right. Returns True on success."""
56
+ ...
57
+
58
+
59
+ __all__ = ("ChatJoinRequestCute",)
@@ -1,157 +1,154 @@
1
- import typing
2
- from datetime import datetime
3
-
4
- from fntypes.result import Result
5
-
6
- from telegrinder.api.api import API, APIError
7
- from telegrinder.bot.cute_types.base import BaseCute, compose_method_params
8
- from telegrinder.model import get_params
9
- from telegrinder.tools.magic import shortcut
10
- from telegrinder.types.objects import *
11
-
12
-
13
- async def chat_member_interaction(
14
- update: BaseCute[typing.Any],
15
- method_name: str,
16
- params: dict[str, typing.Any],
17
- ) -> Result[typing.Any, APIError]:
18
- params = compose_method_params(
19
- get_params(locals()),
20
- update,
21
- default_params={"chat_id", "user_id"},
22
- )
23
- return await getattr(update.ctx_api, method_name)(**params)
24
-
25
-
26
- class ChatMemberShortcuts:
27
- """Shortcut methods for `ChatMemberUpdatedCute`, `ChatJoinRequestCute` objects."""
28
-
29
- @shortcut("ban_chat_member", executor=chat_member_interaction, custom_params={"chat_id", "user_id"})
30
- async def ban_chat_member(
31
- self,
32
- *,
33
- chat_id: int | str | None = None,
34
- revoke_messages: bool | None = None,
35
- until_date: datetime | int | None = None,
36
- user_id: int | None = None,
37
- **other: typing.Any,
38
- ) -> Result[bool, APIError]:
39
- """Shortcut `API.ban_chat_member()`, see the [documentation](https://core.telegram.org/bots/api#banchatmember)
40
-
41
- Use this method to ban a user in a group, a supergroup or a channel. In the case
42
- of supergroups and channels, the user will not be able to return to the chat
43
- on their own using invite links, etc., unless unbanned first. The bot must
44
- be an administrator in the chat for this to work and must have the appropriate
45
- administrator rights. Returns True on success."""
46
- ...
47
-
48
- @shortcut("unban_chat_member", executor=chat_member_interaction, custom_params={"chat_id", "user_id"})
49
- async def unban_chat_member(
50
- self,
51
- *,
52
- chat_id: int | str | None = None,
53
- only_if_banned: bool | None = None,
54
- user_id: int | None = None,
55
- **other: typing.Any,
56
- ) -> Result[bool, APIError]:
57
- """Shortcut `API.unban_chat_member()`, see the [documentation](https://core.telegram.org/bots/api#unbanchatmember)
58
-
59
- Use this method to unban a previously banned user in a supergroup or channel.
60
- The user will not return to the group or channel automatically, but will
61
- be able to join via link, etc. The bot must be an administrator for this to
62
- work. By default, this method guarantees that after the call the user is
63
- not a member of the chat, but will be able to join it. So if the user is a member
64
- of the chat they will also be removed from the chat. If you don't want this,
65
- use the parameter only_if_banned. Returns True on success."""
66
- ...
67
-
68
- @shortcut(
69
- "restrict_chat_member",
70
- executor=chat_member_interaction,
71
- custom_params={"chat_id", "user_id"},
72
- )
73
- async def restrict_chat_member(
74
- self,
75
- *,
76
- permissions: ChatPermissions,
77
- chat_id: int | str | None = None,
78
- until_date: datetime | int | None = None,
79
- use_independent_chat_permissions: bool | None = None,
80
- user_id: int | None = None,
81
- **other: typing.Any,
82
- ) -> Result[bool, APIError]:
83
- """Shortcut `API.restrict_chat_member()`, see the [documentation](https://core.telegram.org/bots/api#restrictchatmember)
84
-
85
- Use this method to restrict a user in a supergroup. The bot must be an administrator
86
- in the supergroup for this to work and must have the appropriate administrator
87
- rights. Pass True for all permissions to lift restrictions from a user.
88
- Returns True on success."""
89
- ...
90
-
91
- @shortcut("promote_chat_member", executor=chat_member_interaction, custom_params={"chat_id", "user_id"})
92
- async def promote_chat_member(
93
- self,
94
- *,
95
- can_change_info: bool | None = None,
96
- can_delete_messages: bool | None = None,
97
- can_delete_stories: bool | None = None,
98
- can_edit_messages: bool | None = None,
99
- can_edit_stories: bool | None = None,
100
- can_invite_users: bool | None = None,
101
- can_manage_chat: bool | None = None,
102
- can_manage_topics: bool | None = None,
103
- can_manage_video_chats: bool | None = None,
104
- can_pin_messages: bool | None = None,
105
- can_post_messages: bool | None = None,
106
- can_post_stories: bool | None = None,
107
- can_promote_members: bool | None = None,
108
- can_restrict_members: bool | None = None,
109
- chat_id: int | str | None = None,
110
- is_anonymous: bool | None = None,
111
- user_id: int | None = None,
112
- **other: typing.Any,
113
- ) -> Result[bool, APIError]:
114
- """Shortcut `API.promote_chat_member()`, see the [documentation](https://core.telegram.org/bots/api#promotechatmember)
115
-
116
- Use this method to promote or demote a user in a supergroup or a channel. The
117
- bot must be an administrator in the chat for this to work and must have the
118
- appropriate administrator rights. Pass False for all boolean parameters
119
- to demote a user. Returns True on success."""
120
- ...
121
-
122
- @shortcut(
123
- "set_chat_administrator_custom_title",
124
- executor=chat_member_interaction,
125
- custom_params={"chat_id", "user_id"},
126
- )
127
- async def set_chat_administrator_custom_title(
128
- self,
129
- *,
130
- custom_title: str,
131
- chat_id: int | str | None = None,
132
- user_id: int | None = None,
133
- **other: typing.Any,
134
- ) -> Result[bool, APIError]:
135
- """Shortcut `API.set_chat_administrator_custom_title()`, see the [documentation](https://core.telegram.org/bots/api#setchatadministratorcustomtitle)
136
-
137
- Use this method to set a custom title for an administrator in a supergroup
138
- promoted by the bot. Returns True on success."""
139
- ...
140
-
141
-
142
- class ChatMemberUpdatedCute(BaseCute[ChatMemberUpdated], ChatMemberUpdated, ChatMemberShortcuts, kw_only=True):
143
- api: API
144
-
145
- @property
146
- def from_user(self) -> User:
147
- return self.from_
148
-
149
- @property
150
- def user_id(self) -> int:
151
- return self.from_user.id
152
-
153
-
154
- __all__ = (
155
- "ChatMemberShortcuts",
156
- "ChatMemberUpdatedCute",
157
- )
1
+ import typing
2
+ from datetime import datetime
3
+
4
+ from fntypes.result import Result
5
+
6
+ from telegrinder.api.api import APIError
7
+ from telegrinder.bot.cute_types.base import BaseCute, compose_method_params, shortcut
8
+ from telegrinder.types.methods_utils import get_params
9
+ from telegrinder.types.objects import *
10
+
11
+
12
+ async def chat_member_interaction(
13
+ update: typing.Any,
14
+ method_name: str,
15
+ params: dict[str, typing.Any],
16
+ ) -> Result[typing.Any, APIError]:
17
+ params = compose_method_params(
18
+ get_params(params),
19
+ update,
20
+ default_params={"chat_id", "user_id"},
21
+ )
22
+ return await getattr(update.ctx_api, method_name)(**params)
23
+
24
+
25
+ class ChatMemberShortcuts:
26
+ """Shortcut methods for `ChatMemberUpdatedCute`, `ChatJoinRequestCute` objects."""
27
+
28
+ @shortcut("ban_chat_member", executor=chat_member_interaction, custom_params={"chat_id", "user_id"})
29
+ async def ban_chat_member(
30
+ self,
31
+ *,
32
+ chat_id: int | str | None = None,
33
+ revoke_messages: bool | None = None,
34
+ until_date: datetime | int | None = None,
35
+ user_id: int | None = None,
36
+ **other: typing.Any,
37
+ ) -> Result[bool, APIError]:
38
+ """Shortcut `API.ban_chat_member()`, see the [documentation](https://core.telegram.org/bots/api#banchatmember)
39
+
40
+ Use this method to ban a user in a group, a supergroup or a channel. In the case
41
+ of supergroups and channels, the user will not be able to return to the chat
42
+ on their own using invite links, etc., unless unbanned first. The bot must
43
+ be an administrator in the chat for this to work and must have the appropriate
44
+ administrator rights. Returns True on success."""
45
+ ...
46
+
47
+ @shortcut("unban_chat_member", executor=chat_member_interaction, custom_params={"chat_id", "user_id"})
48
+ async def unban_chat_member(
49
+ self,
50
+ *,
51
+ chat_id: int | str | None = None,
52
+ only_if_banned: bool | None = None,
53
+ user_id: int | None = None,
54
+ **other: typing.Any,
55
+ ) -> Result[bool, APIError]:
56
+ """Shortcut `API.unban_chat_member()`, see the [documentation](https://core.telegram.org/bots/api#unbanchatmember)
57
+
58
+ Use this method to unban a previously banned user in a supergroup or channel.
59
+ The user will not return to the group or channel automatically, but will
60
+ be able to join via link, etc. The bot must be an administrator for this to
61
+ work. By default, this method guarantees that after the call the user is
62
+ not a member of the chat, but will be able to join it. So if the user is a member
63
+ of the chat they will also be removed from the chat. If you don't want this,
64
+ use the parameter only_if_banned. Returns True on success."""
65
+ ...
66
+
67
+ @shortcut(
68
+ "restrict_chat_member",
69
+ executor=chat_member_interaction,
70
+ custom_params={"chat_id", "user_id"},
71
+ )
72
+ async def restrict_chat_member(
73
+ self,
74
+ *,
75
+ permissions: ChatPermissions,
76
+ chat_id: int | str | None = None,
77
+ until_date: datetime | int | None = None,
78
+ use_independent_chat_permissions: bool | None = None,
79
+ user_id: int | None = None,
80
+ **other: typing.Any,
81
+ ) -> Result[bool, APIError]:
82
+ """Shortcut `API.restrict_chat_member()`, see the [documentation](https://core.telegram.org/bots/api#restrictchatmember)
83
+
84
+ Use this method to restrict a user in a supergroup. The bot must be an administrator
85
+ in the supergroup for this to work and must have the appropriate administrator
86
+ rights. Pass True for all permissions to lift restrictions from a user.
87
+ Returns True on success."""
88
+ ...
89
+
90
+ @shortcut("promote_chat_member", executor=chat_member_interaction, custom_params={"chat_id", "user_id"})
91
+ async def promote_chat_member(
92
+ self,
93
+ *,
94
+ can_change_info: bool | None = None,
95
+ can_delete_messages: bool | None = None,
96
+ can_delete_stories: bool | None = None,
97
+ can_edit_messages: bool | None = None,
98
+ can_edit_stories: bool | None = None,
99
+ can_invite_users: bool | None = None,
100
+ can_manage_chat: bool | None = None,
101
+ can_manage_topics: bool | None = None,
102
+ can_manage_video_chats: bool | None = None,
103
+ can_pin_messages: bool | None = None,
104
+ can_post_messages: bool | None = None,
105
+ can_post_stories: bool | None = None,
106
+ can_promote_members: bool | None = None,
107
+ can_restrict_members: bool | None = None,
108
+ chat_id: int | str | None = None,
109
+ is_anonymous: bool | None = None,
110
+ user_id: int | None = None,
111
+ **other: typing.Any,
112
+ ) -> Result[bool, APIError]:
113
+ """Shortcut `API.promote_chat_member()`, see the [documentation](https://core.telegram.org/bots/api#promotechatmember)
114
+
115
+ Use this method to promote or demote a user in a supergroup or a channel. The
116
+ bot must be an administrator in the chat for this to work and must have the
117
+ appropriate administrator rights. Pass False for all boolean parameters
118
+ to demote a user. Returns True on success."""
119
+ ...
120
+
121
+ @shortcut(
122
+ "set_chat_administrator_custom_title",
123
+ executor=chat_member_interaction,
124
+ custom_params={"chat_id", "user_id"},
125
+ )
126
+ async def set_chat_administrator_custom_title(
127
+ self,
128
+ *,
129
+ custom_title: str,
130
+ chat_id: int | str | None = None,
131
+ user_id: int | None = None,
132
+ **other: typing.Any,
133
+ ) -> Result[bool, APIError]:
134
+ """Shortcut `API.set_chat_administrator_custom_title()`, see the [documentation](https://core.telegram.org/bots/api#setchatadministratorcustomtitle)
135
+
136
+ Use this method to set a custom title for an administrator in a supergroup
137
+ promoted by the bot. Returns True on success."""
138
+ ...
139
+
140
+
141
+ class ChatMemberUpdatedCute(BaseCute[ChatMemberUpdated], ChatMemberUpdated, ChatMemberShortcuts, kw_only=True):
142
+ @property
143
+ def from_user(self) -> User:
144
+ return self.from_
145
+
146
+ @property
147
+ def user_id(self) -> int:
148
+ return self.from_user.id
149
+
150
+
151
+ __all__ = (
152
+ "ChatMemberShortcuts",
153
+ "ChatMemberUpdatedCute",
154
+ )
@@ -1,44 +1,41 @@
1
- import typing
2
-
3
- from fntypes.result import Result
4
-
5
- from telegrinder.api.api import API, APIError
6
- from telegrinder.bot.cute_types.base import BaseCute, compose_method_params
7
- from telegrinder.model import get_params
8
- from telegrinder.tools.magic import shortcut
9
- from telegrinder.types.objects import *
10
-
11
-
12
- class InlineQueryCute(BaseCute[InlineQuery], InlineQuery, kw_only=True):
13
- api: API
14
-
15
- @property
16
- def from_user(self) -> User:
17
- return self.from_
18
-
19
- @shortcut("answer_inline_query", custom_params={"results", "inline_query_id"})
20
- async def answer(
21
- self,
22
- results: InlineQueryResult | list[InlineQueryResult],
23
- *,
24
- button: InlineQueryResultsButton | None = None,
25
- cache_time: int | None = None,
26
- inline_query_id: str | None = None,
27
- is_personal: bool | None = None,
28
- next_offset: str | None = None,
29
- **other: typing.Any,
30
- ) -> Result[bool, APIError]:
31
- """Shortcut `API.answer_inline_query()`, see the [documentation](https://core.telegram.org/bots/api#answerinlinequery)
32
-
33
- Use this method to send answers to an inline query. On success, True is returned.
34
- No more than 50 results per query are allowed."""
35
- params = compose_method_params(
36
- get_params(locals()),
37
- self,
38
- default_params={("inline_query_id", "id")},
39
- )
40
- params["results"] = [results] if not isinstance(results, list) else results
41
- return await self.ctx_api.answer_inline_query(**params)
42
-
43
-
44
- __all__ = ("InlineQueryCute",)
1
+ import typing
2
+
3
+ from fntypes.result import Result
4
+
5
+ from telegrinder.api.api import APIError
6
+ from telegrinder.bot.cute_types.base import BaseCute, compose_method_params, shortcut
7
+ from telegrinder.types.methods_utils import get_params
8
+ from telegrinder.types.objects import *
9
+
10
+
11
+ class InlineQueryCute(BaseCute[InlineQuery], InlineQuery, kw_only=True):
12
+ @property
13
+ def from_user(self) -> User:
14
+ return self.from_
15
+
16
+ @shortcut("answer_inline_query", custom_params={"results", "inline_query_id"})
17
+ async def answer(
18
+ self,
19
+ results: InlineQueryResult | list[InlineQueryResult],
20
+ *,
21
+ button: InlineQueryResultsButton | None = None,
22
+ cache_time: int | None = None,
23
+ inline_query_id: str | None = None,
24
+ is_personal: bool | None = None,
25
+ next_offset: str | None = None,
26
+ **other: typing.Any,
27
+ ) -> Result[bool, APIError]:
28
+ """Shortcut `API.answer_inline_query()`, see the [documentation](https://core.telegram.org/bots/api#answerinlinequery)
29
+
30
+ Use this method to send answers to an inline query. On success, True is returned.
31
+ No more than 50 results per query are allowed."""
32
+ params = compose_method_params(
33
+ get_params(locals()),
34
+ self,
35
+ default_params={("inline_query_id", "id")},
36
+ )
37
+ params["results"] = [results] if not isinstance(results, list) else results
38
+ return await self.ctx_api.answer_inline_query(**params)
39
+
40
+
41
+ __all__ = ("InlineQueryCute",)