Compare commits
2 Commits
aca61b8c1a
...
91a1d7e349
Author | SHA1 | Date | |
---|---|---|---|
91a1d7e349 | |||
366a1d9201 |
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"module": null,
|
"module": null,
|
||||||
|
"mode": "both",
|
||||||
"locale": "en",
|
"locale": "en",
|
||||||
"locale_fallback": "en",
|
"locale_fallback": "en",
|
||||||
"admin": 0,
|
"admin": 0,
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"last_id": 0,
|
||||||
"sent": [],
|
"sent": [],
|
||||||
"captions": {}
|
"captions": {}
|
||||||
}
|
}
|
@ -4,6 +4,7 @@
|
|||||||
"rules": "Photos submission rules"
|
"rules": "Photos submission rules"
|
||||||
},
|
},
|
||||||
"commands_admin": {
|
"commands_admin": {
|
||||||
|
"forwards": "Check post forwards",
|
||||||
"reboot": "Restart the bot"
|
"reboot": "Restart the bot"
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
"rules": "Правила пропонування фото"
|
"rules": "Правила пропонування фото"
|
||||||
},
|
},
|
||||||
"commands_admin": {
|
"commands_admin": {
|
||||||
|
"forwards": "Переглянути репости",
|
||||||
"reboot": "Перезапустити бота"
|
"reboot": "Перезапустити бота"
|
||||||
},
|
},
|
||||||
"message": {
|
"message": {
|
||||||
|
2
loop.bat
2
loop.bat
@ -4,7 +4,7 @@ REM You can cd to your directory here, if you want
|
|||||||
REM cd C:\Users\user\TelegramPoster
|
REM cd C:\Users\user\TelegramPoster
|
||||||
|
|
||||||
:start
|
:start
|
||||||
python main.py
|
python poster.py
|
||||||
echo To completely stop TelegramPoster now, please press Ctrl+C during the countdown!
|
echo To completely stop TelegramPoster now, please press Ctrl+C during the countdown!
|
||||||
echo Restarting in 5 seconds...
|
echo Restarting in 5 seconds...
|
||||||
Timeout /t 5
|
Timeout /t 5
|
||||||
|
2
loop.sh
2
loop.sh
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
while true
|
while true
|
||||||
do
|
do
|
||||||
python main.py
|
python poster.py
|
||||||
echo "To completely stop TelegramPoster now, please press Ctrl+C during the countdown!"
|
echo "To completely stop TelegramPoster now, please press Ctrl+C during the countdown!"
|
||||||
echo "Restarting in:"
|
echo "Restarting in:"
|
||||||
for i in 5 4 3 2 1
|
for i in 5 4 3 2 1
|
||||||
|
@ -12,37 +12,47 @@ with open(os.getcwd()+os.path.sep+"config.json", "r", encoding='utf8') as file:
|
|||||||
file.close()
|
file.close()
|
||||||
|
|
||||||
# Check latest log size
|
# Check latest log size
|
||||||
def checkSize():
|
def checkSize(debug=False):
|
||||||
|
|
||||||
global log_folder
|
global log_folder
|
||||||
|
|
||||||
|
if debug:
|
||||||
|
log_file = "debug.log"
|
||||||
|
else:
|
||||||
|
log_file = "latest.log"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
os.makedirs(log_folder, exist_ok=True)
|
os.makedirs(log_folder, exist_ok=True)
|
||||||
log = os.stat(os.path.join(log_folder, "latest.log"))
|
log = os.stat(os.path.join(log_folder, log_file))
|
||||||
if (log.st_size / 1024) > log_size:
|
if (log.st_size / 1024) > log_size:
|
||||||
with open(os.path.join(log_folder, "latest.log"), 'rb') as f_in:
|
with open(os.path.join(log_folder, log_file), 'rb') as f_in:
|
||||||
with gzip.open(os.path.join(log_folder, f'{datetime.now().strftime("%d.%m.%Y_%H:%M:%S")}.log.gz'), 'wb') as f_out:
|
with gzip.open(os.path.join(log_folder, f'{datetime.now().strftime("%d.%m.%Y_%H:%M:%S")}.log.gz'), 'wb') as f_out:
|
||||||
shutil.copyfileobj(f_in, f_out)
|
shutil.copyfileobj(f_in, f_out)
|
||||||
print(f'Copied {os.path.join(log_folder, datetime.now().strftime("%d.%m.%Y_%H:%M:%S"))}.log.gz')
|
print(f'Copied {os.path.join(log_folder, datetime.now().strftime("%d.%m.%Y_%H:%M:%S"))}.log.gz')
|
||||||
open(os.path.join(log_folder, "latest.log"), 'w').close()
|
open(os.path.join(log_folder, log_file), 'w').close()
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
print(f'Log file {os.path.join(log_folder, "latest.log")} does not exist')
|
print(f'Log file {os.path.join(log_folder, log_file)} does not exist')
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# Append string to log
|
# Append string to log
|
||||||
def logAppend(message):
|
def logAppend(message, debug=False):
|
||||||
|
|
||||||
global log_folder
|
global log_folder
|
||||||
|
|
||||||
message_formatted = f'[{datetime.now().strftime("%d.%m.%Y")}] [{datetime.now().strftime("%H:%M:%S")}] {message}'
|
message_formatted = f'[{datetime.now().strftime("%d.%m.%Y")}] [{datetime.now().strftime("%H:%M:%S")}] {message}'
|
||||||
checkSize()
|
checkSize(debug=debug)
|
||||||
|
|
||||||
log = open(os.path.join(log_folder, "latest.log"), 'a')
|
if debug:
|
||||||
|
log_file = "debug.log"
|
||||||
|
else:
|
||||||
|
log_file = "latest.log"
|
||||||
|
|
||||||
|
log = open(os.path.join(log_folder, log_file), 'a')
|
||||||
log.write(f'{message_formatted}\n')
|
log.write(f'{message_formatted}\n')
|
||||||
log.close()
|
log.close()
|
||||||
|
|
||||||
# Print to stdout and then to log
|
# Print to stdout and then to log
|
||||||
def logWrite(message):
|
def logWrite(message, debug=False):
|
||||||
# save to log file and rotation is to be done
|
# save to log file and rotation is to be done
|
||||||
logAppend(f'{message}')
|
logAppend(f'{message}', debug=debug)
|
||||||
print(f"{message}", flush=True)
|
print(f"{message}", flush=True)
|
@ -61,6 +61,8 @@ try:
|
|||||||
import schedule # type: ignore
|
import schedule # type: ignore
|
||||||
from pyrogram import Client, filters, idle # type: ignore
|
from pyrogram import Client, filters, idle # type: ignore
|
||||||
from pyrogram.types import ChatPermissions, ReplyKeyboardMarkup, InlineKeyboardMarkup, InlineKeyboardButton, BotCommand, BotCommandScopeChat # type: ignore
|
from pyrogram.types import ChatPermissions, ReplyKeyboardMarkup, InlineKeyboardMarkup, InlineKeyboardButton, BotCommand, BotCommandScopeChat # type: ignore
|
||||||
|
from pyrogram.raw.types import UpdateChannelMessageForwards, InputChannel, InputPeerChannel
|
||||||
|
from pyrogram.raw.functions.stats import GetMessagePublicForwards
|
||||||
except ModuleNotFoundError:
|
except ModuleNotFoundError:
|
||||||
print(locale("deps_missing", "console", locale=configGet("locale")), flush=True)
|
print(locale("deps_missing", "console", locale=configGet("locale")), flush=True)
|
||||||
sys.exit()
|
sys.exit()
|
||||||
@ -71,16 +73,47 @@ pid = os.getpid()
|
|||||||
app = Client("duptsiaposter", bot_token=configGet("bot_token", "bot"), api_id=configGet("api_id", "bot"), api_hash=configGet("api_hash", "bot"))
|
app = Client("duptsiaposter", bot_token=configGet("bot_token", "bot"), api_id=configGet("api_id", "bot"), api_hash=configGet("api_hash", "bot"))
|
||||||
|
|
||||||
|
|
||||||
|
# Work in progress
|
||||||
|
# def check_forwards(app):
|
||||||
|
|
||||||
|
# try:
|
||||||
|
|
||||||
|
# index = jsonLoad(configGet("index", "locations"))
|
||||||
|
# channel = app.get_chat(configGet("channel", "posting"))
|
||||||
|
|
||||||
|
# peer = app.resolve_peer(configGet("channel", "posting"))
|
||||||
|
# print(peer, flush=True)
|
||||||
|
|
||||||
|
# posts_list = [i for i in range(index["last_id"]-100,index["last_id"])]
|
||||||
|
# last_posts = app.get_messages(configGet("channel", "posting"), message_ids=posts_list)
|
||||||
|
|
||||||
|
# for post in last_posts:
|
||||||
|
# post_forwards = GetMessagePublicForwards(channel=peer, msg_id=post.id, offset_peer=peer, offset_rate=0, offset_id=0, limit=100)
|
||||||
|
# print(post_forwards, flush=True)
|
||||||
|
# for forward in post_forwards:
|
||||||
|
# print(forward, flush=True)
|
||||||
|
|
||||||
|
# except Exception as exp:
|
||||||
|
|
||||||
|
# logWrite("Could not get last posts forwards due to {0} with traceback {1}".format(str(exp), traceback.format_exc()), debug=True)
|
||||||
|
|
||||||
|
# if configGet("error", "reports"):
|
||||||
|
# app.send_message(configGet("admin"), traceback.format_exc()) # type: ignore
|
||||||
|
|
||||||
|
# pass
|
||||||
|
|
||||||
|
|
||||||
def send_content():
|
def send_content():
|
||||||
|
|
||||||
|
# Send post to channel
|
||||||
try:
|
try:
|
||||||
|
|
||||||
list_sent = jsonLoad(configGet("index", "locations"))
|
index = jsonLoad(configGet("index", "locations"))
|
||||||
list_queue = os.listdir(configGet("queue", "locations"))
|
list_queue = os.listdir(configGet("queue", "locations"))
|
||||||
|
|
||||||
for file in list_queue:
|
for file in list_queue:
|
||||||
|
|
||||||
if not file in list_sent["sent"]:
|
if not file in index["sent"]:
|
||||||
|
|
||||||
ext_match = False
|
ext_match = False
|
||||||
|
|
||||||
@ -111,8 +144,6 @@ def send_content():
|
|||||||
app.send_message(configGet("admin"), locale("post_empty", "message", locale=configGet("locale"))) # type: ignore
|
app.send_message(configGet("admin"), locale("post_empty", "message", locale=configGet("locale"))) # type: ignore
|
||||||
return
|
return
|
||||||
|
|
||||||
index = jsonLoad(configGet("index", "locations"))
|
|
||||||
|
|
||||||
if candidate_file in index["captions"]:
|
if candidate_file in index["captions"]:
|
||||||
caption = index["captions"][candidate_file]
|
caption = index["captions"][candidate_file]
|
||||||
else:
|
else:
|
||||||
@ -149,8 +180,10 @@ def send_content():
|
|||||||
else:
|
else:
|
||||||
return
|
return
|
||||||
|
|
||||||
list_sent["sent"].append(candidate_file)
|
index["sent"].append(candidate_file)
|
||||||
jsonSave(list_sent, configGet("index", "locations"))
|
index["last_id"] = sent.id
|
||||||
|
|
||||||
|
jsonSave(index, configGet("index", "locations"))
|
||||||
|
|
||||||
if configGet("move_sent", "posting"):
|
if configGet("move_sent", "posting"):
|
||||||
shutil.move(candidate, configGet("sent", "locations")+os.sep+candidate_file)
|
shutil.move(candidate, configGet("sent", "locations")+os.sep+candidate_file)
|
||||||
@ -169,15 +202,26 @@ def send_content():
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
@app.on_message(~ filters.scheduled & filters.command(["start"], prefixes="/"))
|
# Work in progress
|
||||||
def cmd_start(app, msg):
|
# Check last posts forwards
|
||||||
if msg.from_user.id not in jsonLoad(configGet("blocked", "locations")):
|
# check_forwards(app)
|
||||||
msg.reply_text(locale("start", "message", locale=msg.from_user.language_code))
|
|
||||||
|
|
||||||
@app.on_message(~ filters.scheduled & filters.command(["rules", "help"], prefixes="/"))
|
if configGet("mode") in ["both", "submit"]:
|
||||||
def cmd_rules(app, msg):
|
@app.on_message(~ filters.scheduled & filters.command(["start"], prefixes="/"))
|
||||||
if msg.from_user.id not in jsonLoad(configGet("blocked", "locations")):
|
def cmd_start(app, msg):
|
||||||
msg.reply_text(locale("rules", "message", locale=msg.from_user.language_code))
|
if msg.from_user.id not in jsonLoad(configGet("blocked", "locations")):
|
||||||
|
msg.reply_text(locale("start", "message", locale=msg.from_user.language_code))
|
||||||
|
|
||||||
|
if configGet("mode") in ["both", "submit"]:
|
||||||
|
@app.on_message(~ filters.scheduled & filters.command(["rules", "help"], prefixes="/"))
|
||||||
|
def cmd_rules(app, msg):
|
||||||
|
if msg.from_user.id not in jsonLoad(configGet("blocked", "locations")):
|
||||||
|
msg.reply_text(locale("rules", "message", locale=msg.from_user.language_code))
|
||||||
|
|
||||||
|
# Work in progress
|
||||||
|
# @app.on_message(~ filters.scheduled & filters.command(["forwards"], prefixes="/"))
|
||||||
|
# def cmd_forwards(app, msg):
|
||||||
|
# check_forwards(app)
|
||||||
|
|
||||||
@app.on_message(~ filters.scheduled & filters.command(["kill", "die", "reboot"], prefixes=["", "/"]))
|
@app.on_message(~ filters.scheduled & filters.command(["kill", "die", "reboot"], prefixes=["", "/"]))
|
||||||
def cmd_kill(app, msg):
|
def cmd_kill(app, msg):
|
||||||
@ -219,76 +263,77 @@ def subUnblock(user):
|
|||||||
blocked.remove(user)
|
blocked.remove(user)
|
||||||
jsonSave(blocked, configGet("blocked", "locations"))
|
jsonSave(blocked, configGet("blocked", "locations"))
|
||||||
|
|
||||||
@app.on_message(~ filters.scheduled & filters.photo | filters.video | filters.animation | filters.document)
|
if configGet("mode") in ["both", "submit"]:
|
||||||
def get_submission(_, msg):
|
@app.on_message(~ filters.scheduled & filters.photo | filters.video | filters.animation | filters.document)
|
||||||
try:
|
def get_submission(_, msg):
|
||||||
if msg.from_user.id not in jsonLoad(configGet("blocked", "locations")):
|
try:
|
||||||
user_locale = msg.from_user.language_code
|
if msg.from_user.id not in jsonLoad(configGet("blocked", "locations")):
|
||||||
if not subLimited(msg.from_user):
|
user_locale = msg.from_user.language_code
|
||||||
|
if not subLimited(msg.from_user):
|
||||||
|
|
||||||
if msg.document != None:
|
if msg.document != None:
|
||||||
if msg.document.mime_type not in configGet("mime_types", "submission"):
|
if msg.document.mime_type not in configGet("mime_types", "submission"):
|
||||||
msg.reply_text(locale("mime_not_allowed", "message", locale=user_locale), quote=True)
|
msg.reply_text(locale("mime_not_allowed", "message", locale=user_locale), quote=True)
|
||||||
return
|
return
|
||||||
if msg.document.file_size > configGet("file_size", "submission"):
|
if msg.document.file_size > configGet("file_size", "submission"):
|
||||||
msg.reply_text(locale("document_too_large", "message", locale=user_locale).format(str(configGet("file_size", "submission")/1024/1024)), quote=True)
|
msg.reply_text(locale("document_too_large", "message", locale=user_locale).format(str(configGet("file_size", "submission")/1024/1024)), quote=True)
|
||||||
return
|
return
|
||||||
|
|
||||||
if msg.video != None:
|
if msg.video != None:
|
||||||
if msg.video.file_size > configGet("file_size", "submission"):
|
if msg.video.file_size > configGet("file_size", "submission"):
|
||||||
msg.reply_text(locale("document_too_large", "message", locale=user_locale).format(str(configGet("file_size", "submission")/1024/1024)), quote=True)
|
msg.reply_text(locale("document_too_large", "message", locale=user_locale).format(str(configGet("file_size", "submission")/1024/1024)), quote=True)
|
||||||
return
|
return
|
||||||
|
|
||||||
buttons = [
|
buttons = [
|
||||||
[
|
|
||||||
InlineKeyboardButton(text=locale("sub_yes", "button", locale=configGet("locale")), callback_data=f"sub_yes_{msg.from_user.id}_{msg.id}")
|
|
||||||
]
|
|
||||||
]
|
|
||||||
|
|
||||||
if msg.caption != None:
|
|
||||||
caption = str(msg.caption)
|
|
||||||
buttons[0].append(
|
|
||||||
InlineKeyboardButton(text=locale("sub_yes_caption", "button", locale=configGet("locale")), callback_data=f"sub_yes_{msg.from_user.id}_{msg.id}_caption")
|
|
||||||
)
|
|
||||||
buttons[0].append(
|
|
||||||
InlineKeyboardButton(text=locale("sub_no", "button", locale=configGet("locale")), callback_data=f"sub_no_{msg.from_user.id}_{msg.id}")
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
caption = ""
|
|
||||||
buttons[0].append(
|
|
||||||
InlineKeyboardButton(text=locale("sub_no", "button", locale=configGet("locale")), callback_data=f"sub_no_{msg.from_user.id}_{msg.id}")
|
|
||||||
)
|
|
||||||
|
|
||||||
caption += locale("sub_by", "message", locale=locale(configGet("locale")))
|
|
||||||
|
|
||||||
if msg.from_user.first_name != None:
|
|
||||||
caption += f" {msg.from_user.first_name}"
|
|
||||||
if msg.from_user.last_name != None:
|
|
||||||
caption += f" {msg.from_user.last_name}"
|
|
||||||
if msg.from_user.username != None:
|
|
||||||
caption += f" (@{msg.from_user.username})"
|
|
||||||
if msg.from_user.phone_number != None:
|
|
||||||
caption += f" ({msg.from_user.phone_number})"
|
|
||||||
|
|
||||||
msg.copy(configGet("admin"), caption=caption, reply_markup=InlineKeyboardMarkup(buttons))
|
|
||||||
|
|
||||||
if msg.from_user.id != configGet("admin"):
|
|
||||||
buttons += [
|
|
||||||
[
|
[
|
||||||
InlineKeyboardButton(text=locale("sub_block", "button", locale=configGet("locale")), callback_data=f"sub_block_{msg.from_user.id}")
|
InlineKeyboardButton(text=locale("sub_yes", "button", locale=configGet("locale")), callback_data=f"sub_yes_{msg.from_user.id}_{msg.id}")
|
||||||
],
|
|
||||||
[
|
|
||||||
InlineKeyboardButton(text=locale("sub_unblock", "button", locale=configGet("locale")), callback_data=f"sub_unblock_{msg.from_user.id}")
|
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
|
||||||
msg.reply_text(locale("sub_sent", "message", locale=user_locale), quote=True)
|
if msg.caption != None:
|
||||||
subLimit(msg.from_user)
|
caption = str(msg.caption)
|
||||||
|
buttons[0].append(
|
||||||
|
InlineKeyboardButton(text=locale("sub_yes_caption", "button", locale=configGet("locale")), callback_data=f"sub_yes_{msg.from_user.id}_{msg.id}_caption")
|
||||||
|
)
|
||||||
|
buttons[0].append(
|
||||||
|
InlineKeyboardButton(text=locale("sub_no", "button", locale=configGet("locale")), callback_data=f"sub_no_{msg.from_user.id}_{msg.id}")
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
caption = ""
|
||||||
|
buttons[0].append(
|
||||||
|
InlineKeyboardButton(text=locale("sub_no", "button", locale=configGet("locale")), callback_data=f"sub_no_{msg.from_user.id}_{msg.id}")
|
||||||
|
)
|
||||||
|
|
||||||
else:
|
caption += locale("sub_by", "message", locale=locale(configGet("locale")))
|
||||||
msg.reply_text(locale("sub_cooldown", "message", locale=user_locale).format(str(configGet("timeout", "submission"))))
|
|
||||||
except AttributeError:
|
if msg.from_user.first_name != None:
|
||||||
logWrite(f"from_user in function get_submission does not seem to contain id")
|
caption += f" {msg.from_user.first_name}"
|
||||||
|
if msg.from_user.last_name != None:
|
||||||
|
caption += f" {msg.from_user.last_name}"
|
||||||
|
if msg.from_user.username != None:
|
||||||
|
caption += f" (@{msg.from_user.username})"
|
||||||
|
if msg.from_user.phone_number != None:
|
||||||
|
caption += f" ({msg.from_user.phone_number})"
|
||||||
|
|
||||||
|
msg.copy(configGet("admin"), caption=caption, reply_markup=InlineKeyboardMarkup(buttons))
|
||||||
|
|
||||||
|
if msg.from_user.id != configGet("admin"):
|
||||||
|
buttons += [
|
||||||
|
[
|
||||||
|
InlineKeyboardButton(text=locale("sub_block", "button", locale=configGet("locale")), callback_data=f"sub_block_{msg.from_user.id}")
|
||||||
|
],
|
||||||
|
[
|
||||||
|
InlineKeyboardButton(text=locale("sub_unblock", "button", locale=configGet("locale")), callback_data=f"sub_unblock_{msg.from_user.id}")
|
||||||
|
]
|
||||||
|
]
|
||||||
|
|
||||||
|
msg.reply_text(locale("sub_sent", "message", locale=user_locale), quote=True)
|
||||||
|
subLimit(msg.from_user)
|
||||||
|
|
||||||
|
else:
|
||||||
|
msg.reply_text(locale("sub_cooldown", "message", locale=user_locale).format(str(configGet("timeout", "submission"))))
|
||||||
|
except AttributeError:
|
||||||
|
logWrite(f"from_user in function get_submission does not seem to contain id")
|
||||||
|
|
||||||
@app.on_callback_query(filters.regex("sub_yes_[\s\S]*_[\s\S]*")) # type: ignore
|
@app.on_callback_query(filters.regex("sub_yes_[\s\S]*_[\s\S]*")) # type: ignore
|
||||||
def callback_query_yes(app, clb): # type: ignore
|
def callback_query_yes(app, clb): # type: ignore
|
||||||
@ -340,6 +385,14 @@ def callback_query_unblock(app, clb): # type: ignore
|
|||||||
clb.answer(text=locale("sub_unblock", "callback", locale=user_locale).format(fullclb[2]), show_alert=True)
|
clb.answer(text=locale("sub_unblock", "callback", locale=user_locale).format(fullclb[2]), show_alert=True)
|
||||||
#===========================================================================================================================================
|
#===========================================================================================================================================
|
||||||
|
|
||||||
|
@app.on_raw_update()
|
||||||
|
def fwd_got(app, update, users, chats):
|
||||||
|
if isinstance(update, UpdateChannelMessageForwards):
|
||||||
|
logWrite(f'Forward count increased to {update["forwards"]} on post {update["id"]} in channel {update["channel_id"]}')
|
||||||
|
logWrite(str(users), debug=True)
|
||||||
|
logWrite(str(chats), debug=True)
|
||||||
|
# else:
|
||||||
|
# logWrite(f"Got raw update of type {type(update)} with contents {update}", debug=True)
|
||||||
|
|
||||||
for entry in configGet("time", "posting"):
|
for entry in configGet("time", "posting"):
|
||||||
schedule.every().day.at(entry).do(send_content)
|
schedule.every().day.at(entry).do(send_content)
|
||||||
@ -369,27 +422,30 @@ if __name__ == "__main__":
|
|||||||
if configGet("startup", "reports"):
|
if configGet("startup", "reports"):
|
||||||
app.send_message(configGet("admin"), locale("startup", "message", locale=configGet("locale")).format(str(pid))) # type: ignore
|
app.send_message(configGet("admin"), locale("startup", "message", locale=configGet("locale")).format(str(pid))) # type: ignore
|
||||||
|
|
||||||
t = Thread(target=background_task)
|
if configGet("mode") in ["both", "post"]:
|
||||||
t.start()
|
t = Thread(target=background_task)
|
||||||
|
t.start()
|
||||||
|
|
||||||
# Registering user commands
|
if configGet("mode") in ["both", "submit"]:
|
||||||
for entry in os.listdir(configGet("locale", "locations")):
|
# Registering user commands
|
||||||
if entry.endswith(".json"):
|
for entry in os.listdir(configGet("locale", "locations")):
|
||||||
commands_list = []
|
if entry.endswith(".json"):
|
||||||
for command in configGet("commands"):
|
commands_list = []
|
||||||
commands_list.append(BotCommand(command, locale(command, "commands", locale=entry.replace(".json", ""))))
|
for command in configGet("commands"):
|
||||||
app.set_bot_commands(commands_list, language_code=entry.replace(".json", "")) # type: ignore
|
commands_list.append(BotCommand(command, locale(command, "commands", locale=entry.replace(".json", ""))))
|
||||||
|
app.set_bot_commands(commands_list, language_code=entry.replace(".json", "")) # type: ignore
|
||||||
|
|
||||||
# Registering user commands for fallback locale
|
# Registering user commands for fallback locale
|
||||||
commands_list = []
|
commands_list = []
|
||||||
for command in configGet("commands"):
|
for command in configGet("commands"):
|
||||||
commands_list.append(BotCommand(command, locale(command, "commands", locale=configGet("locale_fallback"))))
|
commands_list.append(BotCommand(command, locale(command, "commands", locale=configGet("locale_fallback"))))
|
||||||
app.set_bot_commands(commands_list) # type: ignore
|
app.set_bot_commands(commands_list) # type: ignore
|
||||||
|
|
||||||
# Registering admin commands
|
# Registering admin commands
|
||||||
commands_admin_list = []
|
commands_admin_list = []
|
||||||
for command in configGet("commands"):
|
if configGet("mode") in ["both", "submit"]:
|
||||||
commands_admin_list.append(BotCommand(command, locale(command, "commands", locale=configGet("locale"))))
|
for command in configGet("commands"):
|
||||||
|
commands_admin_list.append(BotCommand(command, locale(command, "commands", locale=configGet("locale"))))
|
||||||
for command in configGet("commands_admin"):
|
for command in configGet("commands_admin"):
|
||||||
commands_admin_list.append(BotCommand(command, locale(command, "commands_admin", locale=configGet("locale"))))
|
commands_admin_list.append(BotCommand(command, locale(command, "commands_admin", locale=configGet("locale"))))
|
||||||
app.set_bot_commands(commands_admin_list, scope=BotCommandScopeChat(chat_id=configGet("admin"))) # type: ignore
|
app.set_bot_commands(commands_admin_list, scope=BotCommandScopeChat(chat_id=configGet("admin"))) # type: ignore
|
@ -3,4 +3,4 @@
|
|||||||
REM You can cd to your directory here, if you want
|
REM You can cd to your directory here, if you want
|
||||||
REM cd C:\Users\user\TelegramPoster
|
REM cd C:\Users\user\TelegramPoster
|
||||||
|
|
||||||
python main.py
|
python poster.py
|
Reference in New Issue
Block a user