Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
737 lines (605 loc) · 23.6 KB

File metadata and controls

737 lines (605 loc) · 23.6 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
# This file is part of Pyrogram.
#
# Pyrogram 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.
#
# Pyrogram 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 Pyrogram. If not, see <http://www.gnu.org/licenses/>.
import asyncio
import base64
import functools
import hashlib
import os
import re
import struct
from concurrent.futures.thread import ThreadPoolExecutor
from datetime import datetime, timezone
from getpass import getpass
from io import BytesIO
from typing import Union, Optional
import pyrogram
from pyrogram import raw, enums
from pyrogram import types
from pyrogram.file_id import FileId, FileType, PHOTO_TYPES, DOCUMENT_TYPES
def get_event_loop() -> asyncio.AbstractEventLoop:
try:
loop = asyncio.get_event_loop()
except RuntimeError:
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
return loop
async def ainput(prompt: str = "", *, hide: bool = False, loop: Optional[asyncio.AbstractEventLoop] = None):
"""Just like the built-in input, but async"""
if loop is None:
loop = get_event_loop()
with ThreadPoolExecutor(1) as executor:
func = functools.partial(getpass if hide else input, prompt)
return await loop.run_in_executor(executor, func)
def get_input_media_from_file_id(
file_id: str,
expected_file_type: FileType = None,
ttl_seconds: int = None,
has_spoiler: bool = None
) -> Union["raw.types.InputMediaPhoto", "raw.types.InputMediaDocument"]:
try:
decoded = FileId.decode(file_id)
except Exception:
raise ValueError(
f'Failed to decode "{file_id}". The value does not represent an existing local file, '
f"HTTP URL, or valid file id."
)
file_type = decoded.file_type
if expected_file_type is not None and file_type != expected_file_type:
raise ValueError(f"Expected {expected_file_type.name}, got {file_type.name} file id instead")
if file_type in (FileType.THUMBNAIL, FileType.CHAT_PHOTO):
raise ValueError(f"This file id can only be used for download: {file_id}")
if file_type in PHOTO_TYPES:
return raw.types.InputMediaPhoto(
id=raw.types.InputPhoto(
id=decoded.media_id,
access_hash=decoded.access_hash,
file_reference=decoded.file_reference
),
ttl_seconds=ttl_seconds,
spoiler=has_spoiler
)
if file_type in DOCUMENT_TYPES:
return raw.types.InputMediaDocument(
id=raw.types.InputDocument(
id=decoded.media_id,
access_hash=decoded.access_hash,
file_reference=decoded.file_reference
),
ttl_seconds=ttl_seconds,
spoiler=has_spoiler
)
raise ValueError(f"Unknown file id: {file_id}")
async def parse_messages(
client,
messages: "raw.types.messages.Messages",
is_scheduled: bool = False,
replies: int = 1,
business_connection_id: str = "",
r: "raw.base.Updates" = None
) -> list["types.Message"]:
parsed_messages = []
if not messages and r:
users = {i.id: i for i in getattr(r, "users", [])}
chats = {i.id: i for i in getattr(r, "chats", [])}
for u in getattr(r, "updates", []):
if isinstance(
u,
(
raw.types.UpdateNewMessage,
raw.types.UpdateNewChannelMessage,
raw.types.UpdateNewScheduledMessage,
)
):
parsed_messages.append(
await types.Message._parse(
client,
u.message,
users,
chats,
is_scheduled=isinstance(u, raw.types.UpdateNewScheduledMessage),
replies=replies
)
)
elif isinstance(
u,
(
raw.types.UpdateBotNewBusinessMessage,
)
):
parsed_messages.append(
await types.Message._parse(
client,
u.message,
users,
chats,
business_connection_id=getattr(u, "connection_id", business_connection_id),
raw_reply_to_message=u.reply_to_message,
replies=0
)
)
return types.List(parsed_messages)
users = {i.id: i for i in messages.users}
chats = {i.id: i for i in messages.chats}
if not messages.messages:
return types.List()
for message in messages.messages:
parsed_messages.append(
await types.Message._parse(
client,
message,
users,
chats,
is_scheduled=is_scheduled,
replies=replies
)
)
if replies and False: # TODO
messages_with_replies = {
# TODO: fix this logic someday
i.id: i.reply_to.reply_to_msg_id
for i in messages.messages
if not isinstance(i, raw.types.MessageEmpty) and i.reply_to
}
if messages_with_replies:
# We need a chat id, but some messages might be empty (no chat attribute available)
# Scan until we find a message with a chat available (there must be one, because we are fetching replies)
for m in parsed_messages:
if m.chat:
chat_id = m.chat.id
break
else:
chat_id = 0
reply_messages = await client.get_replied_message(
chat_id=chat_id,
message_ids=messages_with_replies.keys(),
replies=replies - 1
)
for message in parsed_messages:
reply_id = messages_with_replies.get(message.id, None)
for reply in reply_messages:
if reply.id == reply_id:
message.reply_to_message = reply
return types.List(parsed_messages)
def pack_inline_message_id(msg_id: "raw.base.InputBotInlineMessageID"):
if isinstance(msg_id, raw.types.InputBotInlineMessageID):
inline_message_id_packed = struct.pack(
"<iqq",
msg_id.dc_id,
msg_id.id,
msg_id.access_hash
)
else:
inline_message_id_packed = struct.pack(
"<iqiq",
msg_id.dc_id,
msg_id.owner_id,
msg_id.id,
msg_id.access_hash
)
return base64.urlsafe_b64encode(inline_message_id_packed).decode().rstrip("=")
def unpack_inline_message_id(inline_message_id: str) -> "raw.base.InputBotInlineMessageID":
padded = inline_message_id + "=" * (-len(inline_message_id) % 4)
decoded = base64.urlsafe_b64decode(padded)
if len(decoded) == 20:
unpacked = struct.unpack("<iqq", decoded)
return raw.types.InputBotInlineMessageID(
dc_id=unpacked[0],
id=unpacked[1],
access_hash=unpacked[2]
)
else:
unpacked = struct.unpack("<iqiq", decoded)
return raw.types.InputBotInlineMessageID64(
dc_id=unpacked[0],
owner_id=unpacked[1],
id=unpacked[2],
access_hash=unpacked[3]
)
MIN_CHANNEL_ID_OLD = -1002147483647
MIN_CHANNEL_ID = -1997852516352
MAX_CHANNEL_ID = -1000000000000
MIN_CHAT_ID_OLD = -2147483647
MIN_CHAT_ID = -999999999999
MAX_USER_ID_OLD = 2147483647
MAX_USER_ID = 999999999999
MIN_MONOFORUM_CHANNEL_ID = 1002147483649
MAX_MONOFORUM_CHANNEL_ID = 3000000000000
def get_raw_peer_id(peer: raw.base.Peer) -> Optional[int]:
"""Get the raw peer id from a Peer object"""
if isinstance(peer, raw.types.PeerUser):
return peer.user_id
if isinstance(peer, raw.types.PeerChat):
return peer.chat_id
if isinstance(peer, raw.types.PeerChannel):
return peer.channel_id
return None
def get_peer_id(peer: raw.base.Peer) -> int:
"""Get the non-raw peer id from a Peer object"""
if isinstance(peer, raw.types.PeerUser):
return peer.user_id
if isinstance(peer, raw.types.PeerChat):
return -peer.chat_id
if isinstance(peer, raw.types.PeerChannel):
if MIN_MONOFORUM_CHANNEL_ID <= peer.channel_id < MAX_MONOFORUM_CHANNEL_ID:
return peer.channel_id
return MAX_CHANNEL_ID - peer.channel_id
raise ValueError(f"Peer type invalid: {peer}")
def get_peer_type(peer_id: int) -> str:
if peer_id < 0:
if MIN_CHAT_ID <= peer_id:
return "chat"
if MIN_CHANNEL_ID <= peer_id < MAX_CHANNEL_ID:
return "channel"
elif 0 < peer_id <= MAX_USER_ID:
return "user"
elif MIN_MONOFORUM_CHANNEL_ID <= peer_id < MAX_MONOFORUM_CHANNEL_ID:
return "monoforum"
raise ValueError(f"Peer id invalid: {peer_id}")
def get_channel_id(peer_id: int) -> int:
if MIN_MONOFORUM_CHANNEL_ID <= peer_id < MAX_MONOFORUM_CHANNEL_ID:
return MAX_CHANNEL_ID - peer_id
return MAX_CHANNEL_ID - peer_id
def btoi(b: bytes) -> int:
return int.from_bytes(b, "big")
def itob(i: int) -> bytes:
return i.to_bytes(256, "big")
def sha256(data: bytes) -> bytes:
return hashlib.sha256(data).digest()
def xor(a: bytes, b: bytes) -> bytes:
return bytes(i ^ j for i, j in zip(a, b))
def compute_password_hash(
algo: raw.types.PasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow,
password: str
) -> bytes:
hash1 = sha256(algo.salt1 + password.encode() + algo.salt1)
hash2 = sha256(algo.salt2 + hash1 + algo.salt2)
hash3 = hashlib.pbkdf2_hmac("sha512", hash2, algo.salt1, 100000)
return sha256(algo.salt2 + hash3 + algo.salt2)
# noinspection PyPep8Naming
def compute_password_check(
r: raw.types.account.Password,
password: str
) -> raw.types.InputCheckPasswordSRP:
algo = r.current_algo
p_bytes = algo.p
p = btoi(algo.p)
g_bytes = itob(algo.g)
g = algo.g
B_bytes = r.srp_B
B = btoi(B_bytes)
srp_id = r.srp_id
x_bytes = compute_password_hash(algo, password)
x = btoi(x_bytes)
g_x = pow(g, x, p)
k_bytes = sha256(p_bytes + g_bytes)
k = btoi(k_bytes)
kg_x = (k * g_x) % p
while True:
a_bytes = os.urandom(256)
a = btoi(a_bytes)
A = pow(g, a, p)
A_bytes = itob(A)
u = btoi(sha256(A_bytes + B_bytes))
if u > 0:
break
g_b = (B - kg_x) % p
ux = u * x
a_ux = a + ux
S = pow(g_b, a_ux, p)
S_bytes = itob(S)
K_bytes = sha256(S_bytes)
M1_bytes = sha256(
xor(sha256(p_bytes), sha256(g_bytes))
+ sha256(algo.salt1)
+ sha256(algo.salt2)
+ A_bytes
+ B_bytes
+ K_bytes
)
return raw.types.InputCheckPasswordSRP(srp_id=srp_id, A=A_bytes, M1=M1_bytes)
async def parse_text_entities(
client: "pyrogram.Client",
text: str,
parse_mode: Optional[enums.ParseMode],
entities: list["types.MessageEntity"]
) -> dict[str, Union[str, list[raw.base.MessageEntity]]]:
if entities:
# Inject the client instance because parsing user mentions requires it
for entity in entities:
entity._client = client
text, entities = text, [await entity.write() for entity in entities] or None
else:
text, entities = (await client.parser.parse(text, parse_mode)).values()
return {
"message": text,
"entities": entities
}
async def parse_deleted_messages(client, update, users, chats) -> list["types.Message"]:
messages = update.messages
channel_id = getattr(update, "channel_id", None)
business_connection_id = getattr(update, "connection_id", None)
raw_business_peer = getattr(update, "peer", None)
delete_chat = None
if channel_id is not None:
chan_id = get_channel_id(channel_id)
# try:
# TODO
# delete_chat = await client.get_chat(chan_id, False)
# except pyrogram.errors.RPCError:
delete_chat = types.Chat(
id=chan_id,
type=enums.ChatType.CHANNEL,
client=client
)
elif raw_business_peer is not None:
chat_id = get_raw_peer_id(raw_business_peer)
# yet another TODO comment here
if chat_id:
if isinstance(raw_business_peer, raw.types.PeerUser):
delete_chat = types.Chat._parse_user_chat(client, users[chat_id])
elif isinstance(raw_business_peer, raw.types.PeerChat):
delete_chat = types.Chat._parse_chat_chat(client, chats[chat_id])
else:
delete_chat = types.Chat._parse_channel_chat(
client, chats[chat_id]
)
parsed_messages = []
for message in messages:
parsed_messages.append(
types.Message(
id=message,
chat=delete_chat,
business_connection_id=business_connection_id,
client=client
)
)
return types.List(parsed_messages)
def zero_datetime() -> datetime:
return datetime.fromtimestamp(0, timezone.utc)
def timestamp_to_datetime(ts: Optional[int]) -> Optional[datetime]:
return datetime.fromtimestamp(ts, tz=timezone.utc) if ts else None
def datetime_to_timestamp(dt: Optional[datetime]) -> Optional[int]:
return int(dt.timestamp()) if dt else None
async def _get_reply_message_parameters(
client: "pyrogram.Client",
message_thread_id: int = None,
reply_parameters: "types.ReplyParameters" = None
) -> "raw.base.InputReplyTo":
reply_to = raw.types.InputReplyToMessage(
reply_to_msg_id=0
)
if not reply_parameters:
if message_thread_id:
reply_to = raw.types.InputReplyToMessage(
reply_to_msg_id=message_thread_id,
top_msg_id=message_thread_id
)
return reply_to
if (
reply_parameters and
reply_parameters.story_id and
reply_parameters.chat_id
):
return raw.types.InputReplyToStory(
peer=await client.resolve_peer(reply_parameters.chat_id),
story_id=reply_parameters.story_id
)
reply_to_message_id = reply_parameters.message_id
if not reply_to_message_id:
if reply_parameters.direct_messages_topic_id:
return raw.types.InputReplyToMonoForum(
monoforum_peer_id=await client.resolve_peer(
reply_parameters.direct_messages_topic_id
)
)
return reply_to
reply_to = raw.types.InputReplyToMessage(
reply_to_msg_id=reply_to_message_id
)
if message_thread_id:
reply_to.top_msg_id = message_thread_id
# TODO
quote = reply_parameters.quote
if quote is not None:
quote_parse_mode = reply_parameters.quote_parse_mode
quote_entities = reply_parameters.quote_entities
message, entities = (await parse_text_entities(
client,
quote,
quote_parse_mode,
quote_entities
)).values()
reply_to.quote_text = message
reply_to.quote_entities = entities
if reply_parameters.chat_id:
reply_to.reply_to_peer_id = await client.resolve_peer(reply_parameters.chat_id)
if reply_parameters.quote_position:
reply_to.quote_offset = reply_parameters.quote_position
if reply_parameters.direct_messages_topic_id:
reply_to.monoforum_peer_id = await client.resolve_peer(
reply_parameters.direct_messages_topic_id
)
if reply_parameters.checklist_task_id:
reply_to.todo_item_id = reply_parameters.checklist_task_id
return reply_to
def _get_reply_to_message_quote_ids(
reply_parameters: "types.ReplyParameters" = None,
message_id: int = None,
chat_type: "enums.ChatType" = None,
direct_messages_topic_id: int = None,
quote: bool = None,
reply_to_message_id: int = None,
) -> tuple[int, "types.ReplyParameters"]:
if quote is None:
quote = chat_type != enums.ChatType.PRIVATE
if not reply_parameters and quote:
if reply_to_message_id:
reply_parameters = types.ReplyParameters(
message_id=reply_to_message_id
)
else:
reply_parameters = types.ReplyParameters(
message_id=message_id
)
reply_to_message_id = None
if direct_messages_topic_id:
if reply_parameters:
reply_parameters.direct_messages_topic_id = direct_messages_topic_id
else:
reply_parameters = types.ReplyParameters(
direct_messages_topic_id=direct_messages_topic_id
)
reply_to_message_id = None
return reply_to_message_id, reply_parameters
def is_plain_domain(url):
# https://github.com/tdlib/td/blob/d963044/td/telegram/MessageEntity.cpp#L1778
return (
url.find('/') >= len(url) and
url.find('?') >= len(url) and
url.find('#') >= len(url)
)
def get_first_url(
message: Union[
"raw.types.Message",
"raw.types.DraftMessage"
]
) -> str:
text = message.message
entities = message.entities
# duplicate code copied from parser.
text = re.sub(r"^\s*(<[\w<>=\s\"]*>)\s*", r"\1", text)
text = re.sub(r"\s*(</[\w</>]*>)\s*$", r"\1", text)
SMP_RE = re.compile(r"[\U00010000-\U0010FFFF]")
text_ = SMP_RE.sub(
lambda match: # Split SMP in two surrogates
"".join(
chr(i) for i in struct.unpack(
"<HH", match.group().encode("utf-16le")
)
),
text
)
url = None
for entity in entities:
if isinstance(entity, raw.types.MessageEntityTextUrl):
url = entity.url
if len(url) <= 4:
url = None
continue
else:
break
elif isinstance(entity, raw.types.MessageEntityUrl):
url = text_[entity.offset:entity.offset+entity.length+1]
if len(url) <= 4:
url = None
continue
else:
break
text = text_.encode("utf-16", "surrogatepass").decode("utf-16")
if url:
if (
url.startswith((
"ton:", "tg:", "ftp:"
)) or
is_plain_domain(url)
):
return None
return url
return None
def fix_up_voice_audio_uri(
client: "pyrogram.Client",
file_name: str,
dinxe: int
) -> str:
un_posi_mt = [
"application/zip", # 0
# https://t.me/c/1220993104/1360174
"audio/mpeg", # 1
"audio/ogg", # 2
]
mime_type = client.guess_mime_type(file_name) or un_posi_mt[dinxe]
# BEWARE: https://t.me/c/1279877202/31475
if dinxe == 1 and mime_type == "audio/ogg":
mime_type = "audio/opus"
elif dinxe == 2 and mime_type == "audio/mpeg":
mime_type = "audio/ogg"
# BEWARE: https://t.me/c/1279877202/74
return mime_type
def expand_inline_bytes(bytes_data: bytes):
# https://github.com/telegramdesktop/tdesktop/blob/1757dd856/Telegram/SourceFiles/ui/image/image.cpp#L43-L94
if len(bytes_data) < 3 or bytes_data[0] != 0x01:
return bytearray()
header = bytearray(
b"\xff\xd8\xff\xe0\x00\x10\x4a\x46\x49"
b"\x46\x00\x01\x01\x00\x00\x01\x00\x01\x00\x00\xff\xdb\x00\x43\x00\x28\x1c"
b"\x1e\x23\x1e\x19\x28\x23\x21\x23\x2d\x2b\x28\x30\x3c\x64\x41\x3c\x37\x37"
b"\x3c\x7b\x58\x5d\x49\x64\x91\x80\x99\x96\x8f\x80\x8c\x8a\xa0\xb4\xe6\xc3"
b"\xa0\xaa\xda\xad\x8a\x8c\xc8\xff\xcb\xda\xee\xf5\xff\xff\xff\x9b\xc1\xff"
b"\xff\xff\xfa\xff\xe6\xfd\xff\xf8\xff\xdb\x00\x43\x01\x2b\x2d\x2d\x3c\x35"
b"\x3c\x76\x41\x41\x76\xf8\xa5\x8c\xa5\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8"
b"\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8"
b"\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8"
b"\xf8\xf8\xf8\xf8\xf8\xff\xc0\x00\x11\x08\x00\x00\x00\x00\x03\x01\x22\x00"
b"\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1f\x00\x00\x01\x05\x01\x01\x01\x01"
b"\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x02\x03\x04\x05\x06\x07\x08"
b"\x09\x0a\x0b\xff\xc4\x00\xb5\x10\x00\x02\x01\x03\x03\x02\x04\x03\x05\x05"
b"\x04\x04\x00\x00\x01\x7d\x01\x02\x03\x00\x04\x11\x05\x12\x21\x31\x41\x06"
b"\x13\x51\x61\x07\x22\x71\x14\x32\x81\x91\xa1\x08\x23\x42\xb1\xc1\x15\x52"
b"\xd1\xf0\x24\x33\x62\x72\x82\x09\x0a\x16\x17\x18\x19\x1a\x25\x26\x27\x28"
b"\x29\x2a\x34\x35\x36\x37\x38\x39\x3a\x43\x44\x45\x46\x47\x48\x49\x4a\x53"
b"\x54\x55\x56\x57\x58\x59\x5a\x63\x64\x65\x66\x67\x68\x69\x6a\x73\x74\x75"
b"\x76\x77\x78\x79\x7a\x83\x84\x85\x86\x87\x88\x89\x8a\x92\x93\x94\x95\x96"
b"\x97\x98\x99\x9a\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xb2\xb3\xb4\xb5\xb6"
b"\xb7\xb8\xb9\xba\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xd2\xd3\xd4\xd5\xd6"
b"\xd7\xd8\xd9\xda\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf1\xf2\xf3\xf4"
b"\xf5\xf6\xf7\xf8\xf9\xfa\xff\xc4\x00\x1f\x01\x00\x03\x01\x01\x01\x01\x01"
b"\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x01\x02\x03\x04\x05\x06\x07\x08"
b"\x09\x0a\x0b\xff\xc4\x00\xb5\x11\x00\x02\x01\x02\x04\x04\x03\x04\x07\x05"
b"\x04\x04\x00\x01\x02\x77\x00\x01\x02\x03\x11\x04\x05\x21\x31\x06\x12\x41"
b"\x51\x07\x61\x71\x13\x22\x32\x81\x08\x14\x42\x91\xa1\xb1\xc1\x09\x23\x33"
b"\x52\xf0\x15\x62\x72\xd1\x0a\x16\x24\x34\xe1\x25\xf1\x17\x18\x19\x1a\x26"
b"\x27\x28\x29\x2a\x35\x36\x37\x38\x39\x3a\x43\x44\x45\x46\x47\x48\x49\x4a"
b"\x53\x54\x55\x56\x57\x58\x59\x5a\x63\x64\x65\x66\x67\x68\x69\x6a\x73\x74"
b"\x75\x76\x77\x78\x79\x7a\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x92\x93\x94"
b"\x95\x96\x97\x98\x99\x9a\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xb2\xb3\xb4"
b"\xb5\xb6\xb7\xb8\xb9\xba\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xd2\xd3\xd4"
b"\xd5\xd6\xd7\xd8\xd9\xda\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf2\xf3\xf4"
b"\xf5\xf6\xf7\xf8\xf9\xfa\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00"
b"\x3f\x00"
)
footer = bytearray(b"\xff\xd9")
header[164] = bytes_data[1]
header[166] = bytes_data[2]
return header + bytes_data[3:] + footer
def from_inline_bytes(data: bytes, file_name: str = None) -> BytesIO:
b = BytesIO()
b.write(data)
b.name = file_name if file_name else f"photo_{datetime.now().strftime('%Y-%m-%d_%H-%M-%S')}.jpg"
return b
def is_list_like(obj):
"""
Returns `True` if the given object looks like a list.
Ported from https://github.com/LonamiWebs/Telethon/blob/1cb5ff1dd54ecfad41711fc5a4ecf36d2ad8eaf6/telethon/utils.py#L902
"""
return isinstance(obj, (list, tuple, set, dict, range))
def get_premium_duration_month_count(day_count: int) -> int:
return max(1, day_count // 30)
def get_premium_duration_day_count(month_count: int) -> int:
if month_count <= 0 or month_count > 10000000:
return 7
return month_count * 30 + month_count // 3 + month_count // 12
Morty Proxy This is a proxified and sanitized view of the page, visit original site.