-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.py
50 lines (40 loc) · 1.65 KB
/
main.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
import os
import logging
from telegram.ext import Application, CommandHandler, MessageHandler, filters
from dotenv import load_dotenv
from message_forwarder import MessageForwarder
from command_handler import CommandHandler as BotCommandHandler
# Load environment variables
load_dotenv()
# Enhanced logging configuration with file handler
logging.basicConfig(
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
level=logging.INFO,
handlers=[
logging.StreamHandler() # Log to console
]
)
logger = logging.getLogger(__name__)
# Constants section
BOT_TOKEN = os.getenv('BOT_TOKEN') # Telegram Bot API token from .env file
def main():
if not BOT_TOKEN:
logger.error("Bot token not found in environment variables!")
return
# Initialize core components
forwarder = MessageForwarder()
command_handler = BotCommandHandler(forwarder)
# Initialize application
application = Application.builder().token(BOT_TOKEN).build()
# Add command handlers
application.add_handler(CommandHandler("start", command_handler.start))
application.add_handler(CommandHandler("help", command_handler.help_command))
application.add_handler(CommandHandler("setsource", command_handler.set_source))
application.add_handler(CommandHandler("setdestination", command_handler.set_destination))
application.add_handler(CommandHandler("config", command_handler.show_config))
# Add message handler for forwarding
application.add_handler(MessageHandler(filters.ALL & ~filters.COMMAND, forwarder.forward_message))
# Start the bot
application.run_polling()
if __name__ == '__main__':
main()