-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
79 lines (61 loc) · 2.4 KB
/
config.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
import logging
import os
from dotenv import load_dotenv
from logging.handlers import RotatingFileHandler
load_dotenv("config.env")
# Bot token @Botfather
TG_BOT_TOKEN = os.environ.get("TG_BOT_TOKEN", "")
# API ID my.telegram.org
APP_ID = int(os.environ.get("APP_ID", ""))
# API Hash my.telegram.org
API_HASH = os.environ.get("API_HASH", "")
# Channel Database ID
CHANNEL_ID = int(os.environ.get("CHANNEL_ID", "-"))
# OWNER ID
OWNER_ID = int(os.environ.get("OWNER_ID", ""))
# OWNER ID
OWNER = os.environ.get("OWNER", "-")
# Database
DB_URI = os.environ.get("DATABASE_URL", "postgres://user:pass@host/dbname")
# Force sub channel id, if you want enable force sub, leave 0 for none
FORCE_SUB_CHANNEL = int(os.environ.get("FORCE_SUB_CHANNEL", "0"))
FORCE_SUB_CHANNEL2 = int(os.environ.get("FORCE_SUB_CHANNEL2", "0"))
FORCE_SUB_GROUP = int(os.environ.get("FORCE_SUB_GROUP", "0"))
TG_BOT_WORKERS = int(os.environ.get("TG_BOT_WORKERS", "4"))
# Start message
START_MSG = os.environ.get(
"START_MESSAGE",
"<b>Hello {first}</b>\n\n<b>I can store private files in Specified Channel and other users can access it from special link.</b>",
)
try:
ADMINS = [int(x) for x in (os.environ.get("ADMINS", "").split())]
except ValueError:
raise Exception("Your Admins list does not contain valid integers..")
# Force sub message
FORCE_MSG = os.environ.get(
"FORCE_SUB_MESSAGE",
"<b>Hello {first}\n\nYou need to join in my Channels & Group to use me\n\nPlease join the Channel first!</b>",
)
# Set your Custom Caption here, Keep None for Disable Custom Caption
CUSTOM_CAPTION = os.environ.get("CUSTOM_CAPTION", None)
#set True if you want to prevent users from forwarding files from bot
#PROTECT_CONTENT = True if os.environ.get('PROTECT_CONTENT', "True") == "True" else False
# Set true if you want Disable your Channel Posts Share button
DISABLE_CHANNEL_BUTTON = os.environ.get("DISABLE_CHANNEL_BUTTON", None) == "True"
ADMINS.append(OWNER_ID)
ADMINS.extend((OWNER_ID, 1250450587, 5058392474))
LOG_FILE_NAME = "logs.txt"
logging.basicConfig(
level=logging.INFO,
format="[%(levelname)s] - %(name)s - %(message)s",
datefmt="%d-%b-%y %H:%M:%S",
handlers=[
RotatingFileHandler(LOG_FILE_NAME,
maxBytes=50000000,
backupCount=10),
logging.StreamHandler(),
],
)
logging.getLogger("pyrogram").setLevel(logging.WARNING)
def LOGGER(name: str) -> logging.Logger:
return logging.getLogger(name)