-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.py
474 lines (365 loc) · 14.4 KB
/
bot.py
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
from pyrogram import Client, filters
import os
import io
import tempfile
import shutil
import utilsfunc as fn
from pyrogram.raw.types import InputDocument
from pyrogram.raw.functions.stickers import RemoveStickerFromSet
import pyrogram.errors.exceptions as pyroexception
import pyrogram.enums as pyroenum
import imgbbpy
from pyrogram.file_id import FileId
from pymongo import MongoClient
from dotenv import load_dotenv
from PIL import Image
import sys
from pool import run_in_thread
try:
DEBUG_MODE = bool(sys.argv[1])
except IndexError:
DEBUG_MODE = False
g_dbctx = MongoClient(os.getenv("MONGO_URI"))
load_dotenv()
app = Client(
"my_bot",
api_id=os.getenv("API_ID"), api_hash=os.getenv("API_HASH"),
bot_token=os.getenv("TOKEN"),
)
@run_in_thread
def convert_to_gif(paths):
os.system(f"./venv/bin/lottie_convert.py {paths} {paths}.gif")
async def show_debug_text(msg):
await msg.reply_text("Debug mode enabled, sorry for the convenience. Try again later")
async def check_debug(msg):
if DEBUG_MODE == True:
if msg.from_user.id != int(os.getenv("AUTHOR_ID")):
await show_debug_text(msg)
return -1
@app.on_message(filters.command(['start']))
async def startfunc(client, msg):
await msg.reply_text("Hello!")
@app.on_message(filters.command(['debug_json']))
async def test(client, msg):
if await check_debug(msg) == -1:
return
dirpath = tempfile.mkdtemp()
fulldirpath = dirpath + '/' + "ret.json"
with open(fulldirpath, "w+") as dbgstr:
dbgstr.write(str(msg))
await client.send_document(document=fulldirpath, chat_id=msg.chat.id)
shutil.rmtree(dirpath)
@app.on_message(filters.command(['debug_file_id']))
async def testfid(client, msg):
if await check_debug(msg) == -1:
return
if msg.reply_to_message == None:
await msg.reply_text("you must reply to another message")
return;
await msg.reply_text(fn.get_file_id(msg))
@app.on_message(filters.command(['debug_img']))
async def testfid(client, msg):
if await check_debug(msg) == -1:
return
bytesio_ret = await client.download_media(
message=msg.reply_to_message,
in_memory=True
)
imctx = Image.open(bytesio_ret)
width, height = imctx.size
closest = fn.closest_num(imctx.size, 512)
if width == closest:
width = 512
if height == closest:
height = 512
await msg.reply_text(f"width: {width}; height: {height}; close: {closest}")
@app.on_message(filters.command(['debug_msg']))
async def testfn(client, msg):
if await check_debug(msg) == -1:
return
dirpath = tempfile.mkdtemp()
fulldirpath = dirpath + '/' + "ret.json"
# start
# end
with open(fulldirpath, "w+") as dbgstr:
dbgstr.write(str(msg))
await client.send_document(document=fulldirpath, chat_id=msg.chat.id)
shutil.rmtree(dirpath)
async def create_new_stickerpack(client, msg, sanitized_input, collection):
packraw = fn.genrand_stickerpack_name(msg)
packname = packraw[0]
packshort = packraw[1]
try:
ret = await client.create_sticker_set(
title=packname,
short_name=packshort,
sticker=fn.get_file_id(msg),
user_id=msg.from_user.id,
emoji=sanitized_input["ret"]
)
msgdata = await msg.reply_text(f"<a href='https://t.me/addstickers/{ret.short_name}'>Kanged!</a>")
return [
packshort, msgdata
]
except pyroexception.bad_request_400.PeerIdInvalid as e:
await msg.reply_text("Peer id invalid or not known yet, Please PM first")
return -1
except pyroexception.bad_request_400.StickerPngDimensions:
await msg.reply_text("sticker dimension is invalid. Please send valid image, not too small or too big")
return -1
except Exception as e:
# await msg.reply_text(e)
await fn.send_trace(e, msg)
return -1
@app.on_message(filters.command(['kang']))
async def kangfunc(client, msg):
if await check_debug(msg) == -1:
return
if msg.reply_to_message == None or msg.reply_to_message.sticker == None:
await msg.reply_text("you must reply to another sticker, not a message")
return;
database = g_dbctx["kangutils"]
collection = database["stickerpack_state"]
# find current sticker set
dbquery = collection.find_one({'user_id': msg.from_user.id});
print(dbquery)
sanitized_input = fn.sanitize_emoji(msg)
if sanitized_input["err"] == 1:
await msg.reply_text(sanitized_input["msg"])
return;
if dbquery == None:
fnret = await create_new_stickerpack(client, msg, sanitized_input, collection)
if fnret != -1:
collection.insert_one(
{
'user_id': msg.from_user.id,
'current': fnret[0]
}
)
return fnret[1]
else:
packshort = dbquery["current"]
try:
ret = await client.add_sticker_to_set(
set_short_name=packshort,
sticker=fn.get_file_id(msg),
user_id=msg.from_user.id,
emoji=sanitized_input["ret"]
)
await fn.rename_sticker(packshort, client)
msgret = await msg.reply_text(f"<a href='https://t.me/addstickers/{ret.short_name}'>Kanged!</a>")
return msgret
except (pyroexception.bad_request_400.StickersTooMuch,
pyroexception.bad_request_400.StickersetInvalid):
fnret = await create_new_stickerpack(client, msg, sanitized_input, collection)
if fnret != -1:
collection.update_one(
{
'user_id': msg.from_user.id
},
{
'$set': {
'current': fnret[0]
}
}
)
except pyroexception.bad_request_400.StickerPngDimensions:
await msg.reply_text("sticker dimension is invalid. Please send valid image, not too small or too big")
return -1
except Exception as e:
await fn.send_trace(e, msg)
# @app.on_message(filters.command(['kang2']))
# async def kang2func(client, msg):
# if msg.reply_to_message == None:
# await msg.reply_text("you must reply to sticker or photo")
# else:
# msgret = await to_tsfunc(client, msg)
# print(msgret)
# await msg.reply_text("test")
@app.on_message(filters.command(['unkang']))
async def unkangfunc(client, msg):
if await check_debug(msg) == -1:
return
if msg.reply_to_message == None:
await msg.reply_text("you must reply to another message")
return;
try:
decoded = FileId.decode(fn.get_file_id(msg))
except TypeError:
await msg.reply_text("Invalid reply, can't detect media")
except Exception as e:
await fn.send_trace(e, msg)
try:
await client.invoke(RemoveStickerFromSet(
sticker=InputDocument(
id=decoded.media_id,
access_hash=decoded.access_hash,
file_reference=decoded.file_reference
)
))
await msg.reply_text("sticker unkanged!")
except pyroexception.bad_request_400.StickersetInvalid:
await msg.reply_text("This sticker is not yours, can't unkang. make sure you do /fork then /unkang")
@app.on_message(filters.command(['fork']))
async def forkfunc(client, msg):
if await check_debug(msg) == -1:
return
if msg.reply_to_message == None or msg.reply_to_message.sticker == None:
await msg.reply_text("you must reply to another sticker")
return;
await msg.reply_text("Processing... It's takes a littebit of time.")
await client.send_chat_action(
chat_id=msg.chat.id,
action=pyroenum.ChatAction.TYPING
)
is_first = True
packraw = fn.genrand_stickerpack_name(msg)
packname = packraw[0]
packshort = packraw[1]
# stickerset = await fn.get_stickers(client, msg.reply_to_message.sticker.set_name)
for s in await fn.get_stickers(client, msg.reply_to_message.sticker.set_name):
print(f"forking: {s.file_id} {packshort}")
if is_first == True:
await client.create_sticker_set(
title=packname,
short_name=packshort,
sticker=s.file_id,
user_id=msg.from_user.id,
emoji=s.emoji
)
is_first = False
else:
try:
await client.add_sticker_to_set(
set_short_name=packshort,
sticker=s.file_id,
user_id=msg.from_user.id,
emoji=s.emoji
)
except:
print(f"err forking: {s.file_id} {packshort}")
# print(stickerset)
await msg.reply_text(f"sticker <a href='https://t.me/addstickers/{packshort}'>forked!</a>")
@app.on_message(filters.command(['to_ts', 'ts', 'tosticker', 'to_sticker']))
async def to_tsfunc(client, msg):
if await check_debug(msg) == -1:
return
if msg.reply_to_message == None or msg.reply_to_message.photo == None:
await msg.reply_text("you must reply to photo")
return;
bytesio_ret = await client.download_media(
message=msg.reply_to_message,
in_memory=True
)
# size = 512, 512
iomem = io.BytesIO()
iomem.name = "rand.webp"
imctx = Image.open(bytesio_ret)
# width, height = imctx.size
# closest = fn.closest_num(imctx.size, 512)
# if width == closest:
# if closest > 512:
# # trim
# width, height = [512, height - (closest - 512) ]
# else:
# width, height = [512, height + (closest - 512) ]
# if height == closest:
# # height = 512
# if closest > 512:
# # trim
# width, height = [width - (closest - 512), 512 ]
# else:
# width, height = [width + (closest - 512), 512 ]
width, height = imctx.size
if width > height:
new_width = 512
new_height = int((512 / width) * height)
else:
new_height = 512
new_width = int((512 / height) * width)
imctx = imctx.convert('RGB')
imctx = imctx.resize((new_width, new_height), Image.Resampling.LANCZOS)
imctx.save(iomem, 'webp')
return await client.send_sticker(
chat_id=msg.chat.id,
sticker=iomem,
reply_to_message_id=msg.reply_to_message.id
)
@app.on_message(filters.command(['packinfo', 'info', 'stickerpack']))
async def packinfofunc(client, msg):
if await check_debug(msg) == -1:
return
if msg.reply_to_message == None or msg.reply_to_message.sticker == None:
await msg.reply_text("you must reply to sticker")
return;
data = await client.get_sticker_set(
msg.reply_to_message.sticker.set_name
)
await msg.reply_text(
f"id: {data.id}\n" +
f"title: {data.title}\n" +
f"short_name: {data.short_name}\n" +
f"total: {data.count}\n"
)
@app.on_message(filters.command(['del', 'delete', 'rm', 'remove']))
async def msgdel(client, msg):
if await check_debug(msg) == -1:
return
await client.delete_messages(
chat_id=msg.chat.id,
message_ids=msg.reply_to_message.id
)
@app.on_message(filters.command(['toimg', 'img', 'timg', 'tm']))
async def toimgfunc(client, msg):
if await check_debug(msg) == -1:
return
if msg.reply_to_message == None or msg.reply_to_message.sticker == None:
await msg.reply_text("you must reply to sticker")
return;
if msg.reply_to_message.sticker.is_animated == False and msg.reply_to_message.sticker.is_video == False:
byteres = await client.download_media(msg.reply_to_message, in_memory=True)
bytepng = io.BytesIO();
im = Image.open(byteres)
im.save(bytepng, "png")
await client.send_photo(
chat_id=msg.chat.id,
photo=bytepng,
reply_to_message_id=msg.reply_to_message.id
)
elif msg.reply_to_message.sticker.is_animated == False and msg.reply_to_message.sticker.is_video == True:
webppath = await client.download_media(msg.reply_to_message, in_memory=True)
await client.send_animation(
chat_id=msg.chat.id,
animation=webppath,
reply_to_message_id=msg.reply_to_message.id
)
# print("end")
elif msg.reply_to_message.sticker.is_animated == True and msg.reply_to_message.sticker.is_video == False:
await msg.reply_text("please be patient, rendering your animation")
animationpath = await client.download_media(msg.reply_to_message)
await convert_to_gif(animationpath)
await client.send_document(
chat_id=msg.chat.id,
document=animationpath + ".gif",
reply_to_message_id=msg.reply_to_message.id
)
os.remove(animationpath)
os.remove(animationpath + ".gif")
# print("end")
@app.on_message(filters.command(['sauce', 'source', 'reverse']))
async def reverseimg(client, msg):
if await check_debug(msg) == -1:
return
if msg.reply_to_message != None:
if msg.reply_to_message.sticker != None or msg.reply_to_message.photo != None:
byteres = await client.download_media(msg.reply_to_message)
client = imgbbpy.AsyncClient(os.getenv("IMGBB_API"))
image = await client.upload(file=byteres)
formatstr = f"""<a href="https://saucenao.com/search.php?url={image.url}">saucenao</a><br>
<a href="https://lens.google.com/uploadbyurl?url={image.url}">google</a>"""
await msg.reply_text(formatstr)
os.remove(byteres)
else:
await msg.reply_text("you must reply to a sticker / image")
return;
app.run()