1
1
# This file is part of the ChannelAutoForwarder distribution (https://github.com/xditya/ChannelAutoForwarder).
2
- # Copyright (c) 2021 Adiya
2
+ # Copyright (c) 2021-2022 Aditya
3
3
#
4
4
# This program is free software: you can redistribute it and/or modify
5
5
# it under the terms of the GNU General Public License as published by
16
16
import asyncio
17
17
from telethon import TelegramClient , events , Button
18
18
from decouple import config
19
- from telethon .tl .functions .users import GetFullUserRequest
20
19
21
20
logging .basicConfig (format = '[%(levelname) 5s/%(asctime)s] %(name)s: %(message)s' , level = logging .INFO )
22
21
26
25
apiid = config ("APP_ID" , cast = int )
27
26
apihash = config ("API_HASH" )
28
27
bottoken = config ("BOT_TOKEN" )
29
- frm = config ("FROM_CHANNEL" , cast = int )
30
- tochnl = config ("TO_CHANNEL" , cast = int )
28
+ frm = config ("FROM_CHANNEL" , cast = lambda x : [ int ( _ ) for _ in x . split ( " " )] )
29
+ tochnl = config ("TO_CHANNEL" , cast = lambda x : [ int ( _ ) for _ in x . split ( " " )] )
31
30
datgbot = TelegramClient ('bot' , apiid , apihash ).start (bot_token = bottoken )
32
31
except :
33
32
print ("Environment vars are missing! Kindly recheck." )
@@ -46,7 +45,7 @@ async def helpp(event):
46
45
47
46
@datgbot .on (events .NewMessage (incoming = True , chats = frm ))
48
47
async def _ (event ):
49
- if not event . is_private :
48
+ for tochnl in tochnl :
50
49
try :
51
50
if event .poll :
52
51
return
@@ -57,10 +56,10 @@ async def _(event):
57
56
try :
58
57
if event .media .webpage :
59
58
await datgbot .send_message (tochnl , event .text , link_preview = False )
60
- return
61
59
except :
62
60
media = event .media .document
63
61
await datgbot .send_file (tochnl , media , caption = event .text , link_preview = False )
62
+ finally :
64
63
return
65
64
else :
66
65
await datgbot .send_message (tochnl , event .text , link_preview = False )
0 commit comments