-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmp.py
1602 lines (1133 loc) · 51.2 KB
/
tmp.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
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
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# |========> Import necessary libraries <========|
import random
import re
import os
from time import time
from pyrogram import Client, filters, errors
from pyrogram.enums import ChatType, UserStatus
import logging
import asyncio
import psutil
from apscheduler.schedulers.asyncio import AsyncIOScheduler
from pysondb import db
# |========> Config telegram account <========|
logging.basicConfig(format='[%(levelname) 5s/%(asctime)s] %(name)s: %(message)s',
level=logging.WARNING)
with open("api_hash_code.txt", "r", encoding='utf8') as api_hash_code:
data = api_hash_code.readline().split(":")
api_id = data[0]
hash_id = data[1]
app = Client("session_file", api_id=api_id, api_hash=hash_id)
# |========> Global variables <========|
# آیدی عددی ادمین اولیه رو اینجا قرار بده
main_admin_id = 0000000000
# لیست لینکدونی ها را اینجا قرار بده
linkdoni_list = ["@linkdoni","@linkdoniXe","@linkdoniVe","@mehdiLinkdonii","@linkdoni24h","@liinkdooniiraniian","@LinkdoniCactus","@Li_mc","@linkdooni_iraniann", ]
# لیست پیام های پیام خودکار را اینجا قرار بده میتونید هر چقد که میخواید اضافه کنید. ","," با اینا.
auto_chat_texts = ["بچها نفر چنتا استیکر بفرستین پیوی مه از ریپورتی در بیام ممنون:|", "من رل هیچ پسری نیستم(پروفایل 90 درصد دخترا چند سال پیش)😂🐈", "منم اصلا به زندگیم رل نزدم و نمیزنم هیچ موقع😒🥹", "ادمین گروه تو دزد داره همش لینک میفرستن پیوی🐈","احسان جو هستی بیا پی کارت دارم","بچها برای ترم اخر کدوم بخش خوبه؟؟😐","خوشگلم و هزارتا خاطر خا دارم🐈⬛️🦋","کاش بشه دوباره برم هرات جو خو🥲👩🦯","رل گدا پی🐈⬛️","ابجی یه دیقه میایی پیوی کارت دارم🥹","مخو از هراتم شماها از کجایم بچه ها🫤","خستههه شدمممممم","رل چیش ساوز پی👀","بچها برای ترم اخر کدوم بخش خوبه؟؟😐","طرف اماده پیوی سین نمیزنم میگه تو رباتی😔😂🦶🏻","بچها یک فیلتر خوبی بفرستین برام یا پروکسی🥲🥲","چقد هوا سرده کسیو نداریم بغلش گرم بشیم😏😂","بچها شماره خو ایشته مخفی کنم کسی بلده بگه بهم🥹","پشماام قابلیت جدید تلگرامو دیدین؟؟","همی خره ریمو کن هعی پیوی فحش میده😕😕","امشاو میگن شب جمعس🙈😂❤️","فیلم جدید هنانه رو دیدی؟ 🥹💦","کانال عاشقانه دارین بفرستین بهم🥲❣","کی میره خودی مه بریم کلاس زبان؟😐🦋","🐈میو میو","سلامم خار دشت؟😏🐈"]
auto_forward_message = None
auto_send_message = None
is_init_need = True
# |========> Setup config.json <========|
ConfigAcc = db.getDb('config.json')
# Get account info from config.json
check = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})
# Keep default config
default_config = {
'admin_list': [main_admin_id],
'ignore_pvs': [main_admin_id],
'saved_links': [],
'secretary_text': "",
'auto_chat': {'status': 1, 'time': 550},
'auto_join': 1,
'auto_clear': 1,
'save_links': 1,
'main_admin_id': main_admin_id
}
# Add account default config to config.json if it not exists
if not check:
ConfigAcc.add(default_config)
# |========> Setup scheduler <========|
scheduler = AsyncIOScheduler()
scheduler.start()
# |========> New Message Handler <========|
@app.on_message(filters.command('usage'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
await message.reply("در حال بررسی...♻️", quote=True)
txt = f"""
❈ Ram Status :
┈┅┅┅┈ 𖣔 ┈┅┅┅┈
•|🎗️|• RAM Size:﹝ {psutil.virtual_memory().total // (1024 ** 2):,d} MB﹞
┈┅┅┅┈ 𖣔 ┈┅┅┅┈
•|🎗️|• RAM Available :﹝ {psutil.virtual_memory().available // (1024 ** 2):,d} MB﹞
┈┅┅┅┈ 𖣔 ┈┅┅┅┈
•|🎗️|• RAM Used:﹝ {psutil.virtual_memory().used // (1024 ** 2):,d} MB﹞
┈┅┅┅┈ 𖣔 ┈┅┅┅┈
•|🎗️|• RAM Usage:﹝ {psutil.virtual_memory().percent}%﹞
┈┅┅┅┈ 𖣔 ┈┅┅┅┈
•|🎗️|• CPU Usage:﹝ {psutil.cpu_percent(4)}%﹞
┈┅┅┅┈ 𖣔 ┈┅┅┅┈
𓏺 Bʏ ⌯ @m3dpy 𓏺
"""
await message.reply(txt, quote=True)
@app.on_message(filters.command('bot'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
await message.reply("Online!", quote=True)
@app.on_message(filters.command('init'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
init(datas)
await message.reply("❈ تنظیمات اولیه انجام شد.", quote=True)
def init(datas):
if datas['auto_chat']['status']:
this_job = scheduler.get_job(job_id="autochat")
if this_job is not None:
scheduler.remove_job(job_id="autochat")
scheduler.add_job(auto_chat_job, "interval", seconds=datas['auto_chat']['time'], id="autochat")
if datas['save_links']:
this_job = scheduler.get_job(job_id="savelink")
if this_job is not None:
scheduler.remove_job(job_id="savelink")
scheduler.add_job(join_saved_job, "interval", seconds=150, id="savelink")
if datas['auto_clear']:
this_job = scheduler.get_job(job_id="autoclear")
if this_job is not None:
scheduler.remove_job(job_id="autoclear")
scheduler.add_job(auto_clear_job, "interval", seconds=900, id="autoclear")
@app.on_message(filters.command('ping'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
t1 = time()
await app.get_me()
t2 = time()
await message.reply(f"❈ Ping : {round((t2 - t1) * 1000, 1)} ms", quote=True)
@app.on_message(filters.command('binfo'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
my_acc = await app.get_me()
txt = f"""
❈ My Information ❈
❈ Profile Name:﹝ `{my_acc.first_name}` ﹞
❈ UserID:﹝ `{my_acc.id}` ﹞
❈ Phone Number:﹝ `+{my_acc.phone_number}` ﹞
❈ Folder Location:﹝ `{os.getcwd()}` ﹞
┈┅┅┅┈ 𖣔 ┈┅┅┅┈
𓏺 Bʏ ⌯ @m3dpy
"""
await message.reply(txt, quote=True)
@app.on_message(filters.command('help'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
txt = """
❈ راهنماے تبچے ❈
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/init`
🎖️ راه اندازی اولیه تبچی
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/ping` ▫️ `/bot`
🎖️ دریافت وضعیت ربات
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/usage`
🎖️ نمایش مصرف منابع تبچی
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/binfo`
🎖️ دریافت اطلاعات اکانت
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/amar`
🎖️ دریافت آمار اکانت
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/clear` ▫️ پاکسازی
🎖️ خروج از گروه هایے که سکوت کردند و حذف کاربران مسدود از لیست
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/autoclear` ▫️⟮𝖮𝖭 𓏺 𝖮𝖥𝖥⟯
🎖️ پاکسازی اکانت در هر 15 دقیقه
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/dellinks`
🎖️ خالی کردن لینک های درصف انتظار برای عضویت
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/addadmin` ▫️⟮𝗂𝖣⟯
🎖️ افزودن ادمین جدید
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/adminlist`
🎖️ لیست ادمین ها
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/deladmin` ▫️⟮𝗂𝖣⟯
🎖️ حذف ادمین از لیست
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/addpv2contact`
🎖️ افزودن همه ے افرادے که در پیوے هستن به مخاطبین
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/clearcontacts`
🎖️ خالی کردن لیست مخاطبین
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/addpvs` ▫️⟮LINK⟯
🎖️ ادد کردن همه ے افرادے که در پیوے هستن به یڪ گروه
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/f2pv` ▫️⟮𝖱𝖾𝗉𝗅𝖺𝗒⟯
🎖️ فروارد کردن پیام ریپلاے شده به همه کاربران
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/s2pvs` ▫️⟮𝖱𝖾𝗉𝗅𝖺𝗒⟯
🎖️ ارسال کردن پیام ریپلاے شده به همه کاربران
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/f2sgps` ▫️⟮𝖱𝖾𝗉𝗅𝖺𝗒⟯
🎖️ فروارد کردن پیام ریپلاے شده به همه سوپرگروه ها
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/s2sgps` ▫️⟮𝖱𝖾𝗉𝗅𝖺𝗒⟯
🎖️ ارسال کردن پیام ریپلاے شده به تمامی سوپر گروه ها
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/setFtime` ▫️⟮𝖱𝖾𝗉𝗅𝖺𝗒⟯
🎖️ فعالسازے فروارد خودکار
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/setStime` ▫️⟮𝖱𝖾𝗉𝗅𝖺𝗒⟯
🎖️ فعالسازے ارسال خودکار
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/delFtime`
🎖️ حذف فروارد خودکار
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/delStime`
🎖️ حذف ارسال خودکار
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/SetId` ❗⟮𝖳𝖤𝖷𝖳⟯
🎖️ تنظیم نام کاربرے (آیدے)ربات
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/name` ❗⟮𝖳𝖤𝖷𝖳⟯
🎖️ تنظیم نام پروفایل ربات
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/lastname` ❗⟮𝖳𝖤𝖷𝖳⟯
🎖️ تنظیم فامیلی پروفایل ربات
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/setbio` ❗⟮𝖳𝖤𝖷𝖳⟯
🎖️ تنظیم بیو پروفایل ربات
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/setPhoto` ▫️⟮𝖱𝖾𝗉𝗅𝖺𝗒⟯
🎖️ اپلود عکس پروفایل جدید با ریپلای روی عکس
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/delPhoto`
🎖️ حذف آخرین عکس پروفایل اکانت
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/join` ▫️⟮𝖴𝗌𝖾𝗋𝖭𝖺𝗆𝖾⟯
🎖️ عضویت در یڪ آیدی
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/delchs`
🎖️ خروج از همه ے کانال ها
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/delgps` ❗⟮𝖭𝖴𝖬𝖡𝖱⟯ ▫️ all
🎖️ خروج از گروه ها به تعداد موردنظر یا همه
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/autochat` ▫️⟮𝖮𝖭 𓏺 𝖮𝖥𝖥⟯ ▫️ (زمان وقفه)
🎖️ فعال یا خاموش کردن چت خودکار
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/savelink` ▫️⟮𝖮𝖭 𓏺 𝖮𝖥𝖥⟯
🎖️ فعال یا خاموش کردن عضویت در لینک های ذخیره شده بعد از فلود
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/autojoin` ▫️⟮𝖮𝖭 𓏺 𝖮𝖥𝖥⟯
🎖️ فعال یا خاموش کردن عضویت خودکار در لینک های پیام های جدید کانال ها
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/slinks` ▫️⟮𝖴𝗌𝖾𝗋𝖭𝖺𝗆𝖾⟯
🎖️ دریافت، بررسی و ذخیره 500 لینک آخر یک لینکدونی
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/monshi` ▫️⟮𝖱𝖾𝗉𝗅𝖺𝗒⟯
🎖️ تنظیم بنر منشی خودکار (ارسال یک بنر بصورت خودکار به افرادی که جدیدا پیوی ربات پیام میدهند)
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/delMonshi`
🎖️ حذف و غیرفعالسازی منشی خودکار
┈┅┅┅┈ ✿ ┈┅┅┅┈
💠 `/linkdooni`
🎖️ جوین در لینکدونی ها
┈┅┅┅┅┅┅┈
❈ **By : @m3dpy ▪️
┈┅┅┅┅┅┅┈
"""
await message.reply(txt, quote=True)
@app.on_message(filters.command('amar'))
async def new_message_handler(client, message):
global main_admin_id
global auto_forward_message
global auto_send_message
global is_init_need
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
await message.reply("⌛️", quote=True)
dialogs = await all_chat()
contacts = await app.get_contacts()
txt = f"""
❈ Tabchi Status :
❈ All : `{len(dialogs['group_id_list']) + len(dialogs['channel_id_list']) + len(dialogs['private_id_list'])}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Groups : `{len(dialogs['group_id_list'])}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Channels : `{len(dialogs['channel_id_list'])}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Private : `{len(dialogs['private_id_list'])}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Auto Chat : `{f'on --> {datas["auto_chat"]["time"]}s' if datas['auto_chat']['status'] else 'off'}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Auto Join : `{'on' if datas['auto_join'] else 'off'}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Auto Clear : `{'on' if datas['auto_clear'] else 'off'}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Join Saved Links : `{'on' if datas['save_links'] else 'off'}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Monshi : `{'on' if (datas['secretary_text'] != "") else 'off'}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Auto Forward : `{'on' if (auto_forward_message is not None) else 'off'}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Auto Send : `{'on' if (auto_send_message is not None) else 'off'}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Number of admins : `{len(datas['admin_list'])}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Number of contacts : `{len(contacts)}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
❈ Number of saved links : `{len(datas['saved_links'])}`
┈┅┅┅┈ ✿ ┈┅┅┅┈
𓏺 Bʏ ⌯ @m3dpy 𓏺
"""
if is_init_need:
txt = "لطفا دستور `/init` را ارسال کنید!!!"
is_init_need = False
await message.reply(txt, quote=True)
@app.on_message(filters.command('addpv2contact'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
await message.reply("❈ در حال اضافه کردن.", quote=True)
all_chats = await all_chat()
all_pvs_id = all_chats['private_id_list']
contacts = await app.get_contacts()
for contact in contacts:
if contact.id in all_pvs_id:
all_pvs_id.remove(contact.id)
for pv_id in all_pvs_id:
try:
await app.add_contact(pv_id, "User")
await asyncio.sleep(0.1)
except:
pass
await message.reply("تمام افرادی که پیوی هستن به مخاطبین اضافه شدن ✅", quote=True)
@app.on_message(filters.command('clearcontacts'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
await message.reply("❈ در حال حذف کردن.", quote=True)
contacts = await app.get_contacts()
contacts_id = []
for contact in contacts:
contacts_id.append(contact.id)
await app.delete_contacts(contacts_id)
await message.reply("تمام افرادی که پیوی هستن به مخاطبین حذف شدن ❌", quote=True)
@app.on_message(filters.command('addadmin'))
async def new_message_handler(client, message):
global main_admin_id
if message.from_user is None or message.from_user.id != main_admin_id:
return
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
# Keep new message text in 'msg'
msg = message.text
msg = msg.split()
# Skip if input is invalid
if len(msg) != 2:
return
# Skip if given_account_id is invalid
given_account_id = msg[1]
try:
given_account_id = int(given_account_id)
except ValueError:
return
if given_account_id in datas['admin_list']:
txt = "**❈ کاربر مورد نظر در حال حاضر ادمین است.**"
else:
datas['admin_list'].append(given_account_id)
# Update config
ConfigAcc.updateByQuery({'main_admin_id': main_admin_id}, {'admin_list': datas['admin_list']})
txt = "**❈ کاربر مورد نظر به لیست ادمین ها اضافه شد.**"
await message.reply(txt, quote=True)
@app.on_message(filters.command('deladmin'))
async def new_message_handler(client, message):
global main_admin_id
if message.from_user is None or message.from_user.id != main_admin_id:
return
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
# Keep new message text in 'msg'
msg = message.text
msg = msg.split()
# Skip if input is invalid
if len(msg) != 2:
return
# Skip if given_account_id is invalid
given_account_id = msg[1]
try:
given_account_id = int(given_account_id)
except ValueError:
return
if given_account_id not in datas['admin_list']:
txt = "**❈ کاربر مورد نظر در حال حاضر ادمین نیست.**"
else:
datas['admin_list'].remove(given_account_id)
# Update config
ConfigAcc.updateByQuery({'main_admin_id': main_admin_id}, {'admin_list': datas['admin_list']})
txt = "**❈ کاربر مورد نظر از لیست ادمین ها حذف شد.**"
await message.reply(txt, quote=True)
@app.on_message(filters.command('adminlist'))
async def new_message_handler(client, message):
global main_admin_id
if message.from_user is None or message.from_user.id != main_admin_id:
return
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
txt = "**ادمین اصلی :**"
for admin in datas['admin_list']:
txt += f"`❈ : {admin}`\n"
await message.reply(txt, quote=True)
@app.on_message(filters.command('addpvs'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
# Keep new message text in 'msg'
msg = message.text
msg = msg.split()
# Skip if input is invalid
if len(msg) != 2:
return
msg = msg[1]
await message.reply("❈ در حال ادد زدن.", quote=True)
try:
await app.join_chat(msg)
except:
pass
try:
gap = await app.get_chat(msg)
except:
await message.reply("Can't find gap!", quote=True)
return
all_chats = await all_chat()
all_pvs_id = all_chats['private_id_list']
counter = 0
for pv_id in all_pvs_id:
try:
await app.add_chat_members(chat_id=gap.id, user_ids=pv_id)
counter += 1
await asyncio.sleep(5)
except:
pass
await message.reply(f"{counter} members added!", quote=True)
@app.on_message(filters.command('f2sgps'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list'] or message.reply_to_message is None:
return
message = message.reply_to_message
await message.reply("❈ در حال فروارد .", quote=True)
all_chats = await all_chat()
all_groups_id = all_chats['group_id_list']
for group_id in all_groups_id:
try:
await message.forward(group_id)
await asyncio.sleep(5)
except:
pass
await message.reply("❈ با موفقیت پیام ریپلی شده به تمام گپها فروارد شد.", quote=True)
@app.on_message(filters.command('f2pv'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list'] or message.reply_to_message is None:
return
message = message.reply_to_message
await message.reply("❈ در حال فروارد .", quote=True)
all_chats = await all_chat()
all_pvs_id = all_chats['private_id_list']
for pv_id in all_pvs_id:
try:
await message.forward(pv_id)
await asyncio.sleep(5)
except:
pass
await message.reply("❈ با موفقیت پیام ریپلی شده به تمام پیوی ها فروارد شد.", quote=True)
@app.on_message(filters.command('setFtime'))
async def new_message_handler(client, message):
global main_admin_id
global auto_forward_message
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list'] or message.reply_to_message is None:
return
replied_message = message.reply_to_message
this_job = scheduler.get_job(job_id="setFtime")
if this_job is not None:
scheduler.remove_job(job_id="setFtime")
auto_forward_message = replied_message
scheduler.add_job(setFtime_job, "interval", seconds=900, id="setFtime")
txt = "پیام ریپلای شده هر 15 دقیقه در همه گپ ها فوروارد خواهد شد!"
await message.reply(txt, quote=True)
@app.on_message(filters.command('delFtime'))
async def new_message_handler(client, message):
global main_admin_id
global auto_forward_message
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
this_job = scheduler.get_job(job_id="setFtime")
if this_job is not None:
auto_forward_message = None
scheduler.remove_job(job_id="setFtime")
txt = "فوروارد خودکار با موفقیت خاموش شد!"
else:
txt = "فوروارد خودکار خاموش بوده است!"
await message.reply(txt, quote=True)
async def setFtime_job():
global auto_forward_message
if auto_forward_message is None:
return
all_chats = await all_chat()
all_id = all_chats['group_id_list']
for given_id in all_id:
try:
await auto_forward_message.forward(given_id)
await asyncio.sleep(5)
except:
pass
@app.on_message(filters.command('s2sgps'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list'] or message.reply_to_message is None:
return
text = message.reply_to_message.text
await message.reply("❈ در حال ارسال .", quote=True)
all_chats = await all_chat()
all_groups_id = all_chats['group_id_list']
for group_id in all_groups_id:
try:
await app.send_message(group_id, text)
await asyncio.sleep(5)
except:
pass
await message.reply("❈ با موفقیت پیام ریپلی شده به تمام گپها ارسال شد.", quote=True)
@app.on_message(filters.command('s2pvs'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list'] or message.reply_to_message is None:
return
text = message.reply_to_message.text
await message.reply("❈ در حال ارسال .", quote=True)
all_chats = await all_chat()
all_pvs_id = all_chats['private_id_list']
for pv_id in all_pvs_id:
try:
await app.send_message(pv_id, text)
await asyncio.sleep(5)
except:
pass
await message.reply("❈ با موفقیت پیام ریپلی شده به تمام پیوی ها ارسال شد.", quote=True)
@app.on_message(filters.command('setStime'))
async def new_message_handler(client, message):
global main_admin_id
global auto_send_message
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list'] or message.reply_to_message is None:
return
replied_message_text = message.reply_to_message.text
this_job = scheduler.get_job(job_id="setStime")
if this_job is not None:
scheduler.remove_job(job_id="setStime")
auto_send_message = replied_message_text
scheduler.add_job(setStime_job, "interval", seconds=900, id="setStime")
txt = "پیام ریپلای شده هر 15 دقیقه در همه گپ ها ارسال خواهد شد!"
await message.reply(txt, quote=True)
@app.on_message(filters.command('delStime'))
async def new_message_handler(client, message):
global main_admin_id
global auto_send_message
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
this_job = scheduler.get_job(job_id="setStime")
if this_job is not None:
auto_send_message = None
scheduler.remove_job(job_id="setStime")
txt = "ارسال خودکار با موفقیت خاموش شد!"
else:
txt = "ارسال خودکار خاموش بوده است!"
await message.reply(txt, quote=True)
async def setStime_job():
global auto_send_message
if auto_send_message is None:
return
all_chats = await all_chat()
all_id = all_chats['group_id_list']
for given_id in all_id:
try:
await app.send_message(chat_id=given_id, text=auto_send_message)
await asyncio.sleep(5)
except:
pass
@app.on_message(filters.command('name'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
# Keep new message text in 'msg'
msg = message.text
msg = msg.replace("/name ", "")
try:
await app.update_profile(first_name=msg)
await message.reply("❈ اسم با موفقیت تغیر کرد.", quote=True)
except:
await message.reply("Not changed!", quote=True)
@app.on_message(filters.command('lastname'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
# Keep new message text in 'msg'
msg = message.text
msg = msg.replace("/lastname ", "")
try:
await app.update_profile(last_name=msg)
await message.reply("❈ فامیلی با موفقیت تغیر کرد.", quote=True)
except:
await message.reply("Not changed!", quote=True)
@app.on_message(filters.command('setbio'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
# Keep new message text in 'msg'
msg = message.text
msg = msg.replace("/setbio ", "")
try:
await app.update_profile(bio=msg)
await message.reply("❈ بیو با موفقیت تغیر کرد.", quote=True)
except:
await message.reply("Not changed!", quote=True)
@app.on_message(filters.command('SetId'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
# Keep new message text in 'msg'
msg = message.text
msg = msg.split()
# Skip if input is invalid
if len(msg) != 2:
return
msg = msg[1]
try:
await app.set_username(msg)
await message.reply("❈ آیدی با موفقیت تغیر کرد.", quote=True)
except:
await message.reply("Not changed!", quote=True)
@app.on_message(filters.command('setPhoto'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list'] or message.reply_to_message is None:
return
photo = message.reply_to_message
if photo.photo is None:
return
try:
await message.reply("❈ کمی صبر کنید ..", quote=True)
photo = await app.download_media(photo, in_memory=True)
await app.set_profile_photo(photo=photo)
await message.reply("❈ پروفایل با موفقیت اضافه شد.", quote=True)
except:
await message.reply("Not changed!", quote=True)
@app.on_message(filters.command('delPhoto'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
try:
await message.reply("❈ کمی صبر کنید ..", quote=True)
# Get the photos to be deleted
photo = None
async for photo in app.get_chat_photos("me"):
photo = photo.file_id
break
if photo is None:
await message.reply("Empty!", quote=True)
return
# Delete one photo
await app.delete_profile_photos(photo)
await message.reply("❈ پروفایل با موفقیت حذف شد.", quote=True)
except:
await message.reply("Not changed!", quote=True)
@app.on_message(filters.command('join'))
async def new_message_handler(client, message):
global main_admin_id
# Get account info from config
datas = ConfigAcc.getByQuery({'main_admin_id': main_admin_id})[0]
if message.from_user is None or message.from_user.id not in datas['admin_list']:
return
# Keep new message text in 'msg'
msg = message.text