forked from hydrogram/hydrogram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.py
More file actions
417 lines (318 loc) · 13.8 KB
/
user.py
File metadata and controls
417 lines (318 loc) · 13.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
# Hydrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2023 Dan <https://github.com/delivrance>
# Copyright (C) 2023-present Hydrogram <https://hydrogram.org>
#
# This file is part of Hydrogram.
#
# Hydrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Hydrogram is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Hydrogram. If not, see <http://www.gnu.org/licenses/>.
import html
from datetime import datetime
from typing import Optional
import hydrogram
from hydrogram import enums, raw, types, utils
from hydrogram.types.object import Object
from hydrogram.types.update import Update
class Link(str):
HTML = "<a href={url}>{text}</a>"
MARKDOWN = "[{text}]({url})"
def __init__(self, url: str, text: str, style: enums.ParseMode):
super().__init__()
self.url = url
self.text = text
self.style = style
@staticmethod
def format(url: str, text: str, style: enums.ParseMode):
fmt = Link.MARKDOWN if style == enums.ParseMode.MARKDOWN else Link.HTML
return fmt.format(url=url, text=html.escape(text))
def __new__(cls, url, text, style):
return str.__new__(cls, Link.format(url, text, style))
def __call__(self, other: Optional[str] = None, *, style: Optional[str] = None):
return Link.format(self.url, other or self.text, style or self.style)
def __str__(self):
return Link.format(self.url, self.text, self.style)
class User(Object, Update):
"""A Telegram user or bot.
Parameters:
id (``int``):
Unique identifier for this user or bot.
is_self(``bool``, *optional*):
True, if this user is you yourself.
is_contact(``bool``, *optional*):
True, if this user is in your contacts.
is_mutual_contact(``bool``, *optional*):
True, if you both have each other's contact.
is_deleted(``bool``, *optional*):
True, if this user is deleted.
is_bot (``bool``, *optional*):
True, if this user is a bot.
is_verified (``bool``, *optional*):
True, if this user has been verified by Telegram.
is_restricted (``bool``, *optional*):
True, if this user has been restricted. Bots only.
See *restriction_reason* for details.
is_scam (``bool``, *optional*):
True, if this user has been flagged for scam.
is_fake (``bool``, *optional*):
True, if this user has been flagged for impersonation.
is_support (``bool``, *optional*):
True, if this user is part of the Telegram support team.
is_premium (``bool``, *optional*):
True, if this user is a premium user.
first_name (``str``, *optional*):
User's or bot's first name.
last_name (``str``, *optional*):
User's or bot's last name.
full_name (``str``, *property*):
Full name of the other party in a private chat.
status (:obj:`~hydrogram.enums.UserStatus`, *optional*):
User's last seen & online status. ``None``, for bots.
last_online_date (:py:obj:`~datetime.datetime`, *optional*):
Last online date of a user. Only available in case status is :obj:`~hydrogram.enums.UserStatus.OFFLINE`.
next_offline_date (:py:obj:`~datetime.datetime`, *optional*):
Date when a user will automatically go offline. Only available in case status is :obj:`~hydrogram.enums.UserStatus.ONLINE`.
username (``str``, *optional*):
User's or bot's username.
active_usernames (List of ``str``, *optional*):
If non-empty, the list of all active chat usernames; for private chats, supergroups and channels.
usernames (List of :obj:`~hydrogram.types.Username`, *optional*):
The list of user's collectible (and basic) usernames if availables.
language_code (``str``, *optional*):
IETF language tag of the user's language.
emoji_status (:obj:`~hydrogram.types.EmojiStatus`, *optional*):
Emoji status.
dc_id (``int``, *optional*):
User's or bot's assigned DC (data center). Available only in case the user has set a public profile photo.
Note that this information is approximate; it is based on where Telegram stores a user profile pictures and
does not by any means tell you the user location (i.e. a user might travel far away, but will still connect
to its assigned DC). More info at `FAQs </faq#what-are-the-ip-addresses-of-telegram-data-centers>`_.
phone_number (``str``, *optional*):
User's phone number.
photo (:obj:`~hydrogram.types.ChatPhoto`, *optional*):
User's or bot's current profile photo. Suitable for downloads only.
restrictions (List of :obj:`~hydrogram.types.Restriction`, *optional*):
The list of reasons why this bot might be unavailable to some users.
This field is available only in case *is_restricted* is True.
mention (``str``, *property*):
Generate a text mention for this user.
You can use ``user.mention()`` to mention the user using their first name (styled using html), or
``user.mention("another name")`` for a custom name. To choose a different style
("HTML" or "MARKDOWN") use ``user.mention(style=ParseMode.MARKDOWN)``.
"""
def __init__(
self,
*,
client: "hydrogram.Client" = None,
id: int,
is_self: Optional[bool] = None,
is_contact: Optional[bool] = None,
is_mutual_contact: Optional[bool] = None,
is_deleted: Optional[bool] = None,
is_bot: Optional[bool] = None,
is_verified: Optional[bool] = None,
is_restricted: Optional[bool] = None,
is_scam: Optional[bool] = None,
is_fake: Optional[bool] = None,
is_support: Optional[bool] = None,
is_premium: Optional[bool] = None,
first_name: Optional[str] = None,
last_name: Optional[str] = None,
status: "enums.UserStatus" = None,
last_online_date: Optional[datetime] = None,
next_offline_date: Optional[datetime] = None,
username: Optional[str] = None,
active_usernames: Optional[str] = None,
usernames: Optional[list["types.Username"]] = None,
language_code: Optional[str] = None,
emoji_status: Optional["types.EmojiStatus"] = None,
dc_id: Optional[int] = None,
phone_number: Optional[str] = None,
photo: "types.ChatPhoto" = None,
restrictions: Optional[list["types.Restriction"]] = None,
):
super().__init__(client)
self.id = id
self.is_self = is_self
self.is_contact = is_contact
self.is_mutual_contact = is_mutual_contact
self.is_deleted = is_deleted
self.is_bot = is_bot
self.is_verified = is_verified
self.is_restricted = is_restricted
self.is_scam = is_scam
self.is_fake = is_fake
self.is_support = is_support
self.is_premium = is_premium
self.first_name = first_name
self.last_name = last_name
self.status = status
self.last_online_date = last_online_date
self.next_offline_date = next_offline_date
self.username = username
self.active_usernames = active_usernames
self.usernames = usernames
self.language_code = language_code
self.emoji_status = emoji_status
self.dc_id = dc_id
self.phone_number = phone_number
self.photo = photo
self.restrictions = restrictions
@property
def full_name(self) -> str:
return " ".join(filter(None, [self.first_name, self.last_name])) or None
@property
def mention(self):
return Link(
f"tg://user?id={self.id}",
self.first_name or "Deleted Account",
self._client.parse_mode,
)
@staticmethod
def _parse(client, user: "raw.base.User") -> Optional["User"]:
if user is None or isinstance(user, raw.types.UserEmpty):
return None
return User(
id=user.id,
is_self=user.is_self,
is_contact=user.contact,
is_mutual_contact=user.mutual_contact,
is_deleted=user.deleted,
is_bot=user.bot,
is_verified=user.verified,
is_restricted=user.restricted,
is_scam=user.scam,
is_fake=user.fake,
is_support=user.support,
is_premium=user.premium,
first_name=user.first_name,
last_name=user.last_name,
**User._parse_status(user.status, user.bot),
username=user.usernames[0].username if user.usernames else user.username,
active_usernames=types.List([
username.username for username in user.usernames if username.active
])
or None,
usernames=types.List([types.Username._parse(r) for r in user.usernames]) or None,
language_code=user.lang_code,
emoji_status=types.EmojiStatus._parse(client, user.emoji_status),
dc_id=getattr(user.photo, "dc_id", None),
phone_number=user.phone,
photo=types.ChatPhoto._parse(client, user.photo, user.id, user.access_hash),
restrictions=types.List([types.Restriction._parse(r) for r in user.restriction_reason])
or None,
client=client,
)
@staticmethod
def _parse_status(user_status: "raw.base.UserStatus", is_bot: bool = False):
if isinstance(user_status, raw.types.UserStatusOnline):
status, date = enums.UserStatus.ONLINE, user_status.expires
elif isinstance(user_status, raw.types.UserStatusOffline):
status, date = enums.UserStatus.OFFLINE, user_status.was_online
elif isinstance(user_status, raw.types.UserStatusRecently):
status, date = enums.UserStatus.RECENTLY, None
elif isinstance(user_status, raw.types.UserStatusLastWeek):
status, date = enums.UserStatus.LAST_WEEK, None
elif isinstance(user_status, raw.types.UserStatusLastMonth):
status, date = enums.UserStatus.LAST_MONTH, None
else:
status, date = enums.UserStatus.LONG_AGO, None
last_online_date = None
next_offline_date = None
if is_bot:
status = None
if status == enums.UserStatus.ONLINE:
next_offline_date = utils.timestamp_to_datetime(date)
if status == enums.UserStatus.OFFLINE:
last_online_date = utils.timestamp_to_datetime(date)
return {
"status": status,
"last_online_date": last_online_date,
"next_offline_date": next_offline_date,
}
@staticmethod
def _parse_user_status(client, user_status: "raw.types.UpdateUserStatus"):
return User(
id=user_status.user_id,
**User._parse_status(user_status.status),
client=client,
)
async def archive(self):
"""Bound method *archive* of :obj:`~hydrogram.types.User`.
Use as a shortcut for:
.. code-block:: python
await client.archive_chats(123456789)
Example:
.. code-block:: python
await user.archive()
Returns:
True on success.
Raises:
RPCError: In case of a Telegram RPC error.
"""
return await self._client.archive_chats(self.id)
async def unarchive(self):
"""Bound method *unarchive* of :obj:`~hydrogram.types.User`.
Use as a shortcut for:
.. code-block:: python
await client.unarchive_chats(123456789)
Example:
.. code-block:: python
await user.unarchive()
Returns:
True on success.
Raises:
RPCError: In case of a Telegram RPC error.
"""
return await self._client.unarchive_chats(self.id)
def block(self):
"""Bound method *block* of :obj:`~hydrogram.types.User`.
Use as a shortcut for:
.. code-block:: python
await client.block_user(123456789)
Example:
.. code-block:: python
await user.block()
Returns:
True on success.
Raises:
RPCError: In case of a Telegram RPC error.
"""
return self._client.block_user(self.id)
def unblock(self):
"""Bound method *unblock* of :obj:`~hydrogram.types.User`.
Use as a shortcut for:
.. code-block:: python
client.unblock_user(123456789)
Example:
.. code-block:: python
user.unblock()
Returns:
True on success.
Raises:
RPCError: In case of a Telegram RPC error.
"""
return self._client.unblock_user(self.id)
def get_common_chats(self):
"""Bound method *get_common_chats* of :obj:`~hydrogram.types.User`.
Use as a shortcut for:
.. code-block:: python
client.get_common_chats(123456789)
Example:
.. code-block:: python
user.get_common_chats()
Returns:
True on success.
Raises:
RPCError: In case of a Telegram RPC error.
"""
return self._client.get_common_chats(self.id)