forked from OrudoCA/qBitDownload-Bot
Add multi language support
This commit is contained in:
parent
eb7487a43f
commit
fd39f0c48d
51
bot/bot.py
51
bot/bot.py
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
import func, telebot, os
|
import func, telebot, os
|
||||||
from db import PATH
|
from db import PATH
|
||||||
|
from lang import LANG as msg
|
||||||
|
|
||||||
TOKEN = os.environ["TOKEN"]
|
TOKEN = os.environ["TOKEN"]
|
||||||
bot = telebot.TeleBot(TOKEN)
|
bot = telebot.TeleBot(TOKEN)
|
||||||
|
@ -14,15 +15,15 @@ dir = None
|
||||||
def welcome(message):
|
def welcome(message):
|
||||||
id = message.from_user.id
|
id = message.from_user.id
|
||||||
if func.auth_check(id):
|
if func.auth_check(id):
|
||||||
bot.reply_to(message,'Выберите тип загрузки:',reply_markup=home())
|
bot.reply_to(message,str(msg.get('type')),reply_markup=home())
|
||||||
else:
|
else:
|
||||||
bot.reply_to(message,'Этот бот запривачен, гнида, блять')
|
bot.reply_to(message,str(msg.get('adeny')))
|
||||||
|
|
||||||
# Keyboard: Homepage
|
# Keyboard: Homepage
|
||||||
def home():
|
def home():
|
||||||
keyboard = telebot.types.ReplyKeyboardMarkup(resize_keyboard=True, one_time_keyboard=True)
|
keyboard = telebot.types.ReplyKeyboardMarkup(resize_keyboard=True, one_time_keyboard=True)
|
||||||
file = telebot.types.KeyboardButton('Файл')
|
file = telebot.types.KeyboardButton(str(msg.get('file')))
|
||||||
magnet = telebot.types.KeyboardButton('Magnet-ссылка')
|
magnet = telebot.types.KeyboardButton(str(msg.get('magnet')))
|
||||||
keyboard.add(file,magnet)
|
keyboard.add(file,magnet)
|
||||||
return keyboard
|
return keyboard
|
||||||
|
|
||||||
|
@ -31,8 +32,8 @@ def home():
|
||||||
def login(message):
|
def login(message):
|
||||||
id = message.from_user.id
|
id = message.from_user.id
|
||||||
passwd = message.text.replace('/login ', '')
|
passwd = message.text.replace('/login ', '')
|
||||||
f = func.u_auth(id,passwd)
|
f = str(func.u_auth(id,passwd))
|
||||||
if f == 'Вы успешно авторизировались' or f == 'Вы уже авторизированны':
|
if f == str(msg.get('sucauth')) or f == str(msg.get('alauth')):
|
||||||
bot.reply_to(message,f,reply_markup=home())
|
bot.reply_to(message,f,reply_markup=home())
|
||||||
else:
|
else:
|
||||||
bot.reply_to(message,f)
|
bot.reply_to(message,f)
|
||||||
|
@ -65,9 +66,9 @@ def add(message):
|
||||||
if len(txt) == 3:
|
if len(txt) == 3:
|
||||||
key = txt[1]
|
key = txt[1]
|
||||||
path = txt[2]
|
path = txt[2]
|
||||||
f = func.add_dir(id,key,path)
|
f = str(func.add_dir(id,key,path))
|
||||||
else:
|
else:
|
||||||
f = 'Неверные аргументы'
|
f = str(msg.get('aerr'))
|
||||||
bot.reply_to(message,f,reply_markup=home())
|
bot.reply_to(message,f,reply_markup=home())
|
||||||
|
|
||||||
# Folder del
|
# Folder del
|
||||||
|
@ -79,7 +80,7 @@ def rm(message):
|
||||||
bot.reply_to(message,str(f),reply_markup=home())
|
bot.reply_to(message,str(f),reply_markup=home())
|
||||||
|
|
||||||
# Magnet
|
# Magnet
|
||||||
@bot.message_handler(func=lambda message: message.text == 'Magnet-ссылка')
|
@bot.message_handler(func=lambda message: message.text == str(msg.get('magnet')))
|
||||||
def magnet(message):
|
def magnet(message):
|
||||||
id = message.from_user.id
|
id = message.from_user.id
|
||||||
if func.auth_check(id):
|
if func.auth_check(id):
|
||||||
|
@ -87,14 +88,14 @@ def magnet(message):
|
||||||
type = 'magnet'
|
type = 'magnet'
|
||||||
f = folder_menu()
|
f = folder_menu()
|
||||||
if f == None:
|
if f == None:
|
||||||
bot.reply_to(message,'Папок не обнаруженно, воспользуйтесь коммандой /add')
|
bot.reply_to(message,str(msg.get('cff')))
|
||||||
else:
|
else:
|
||||||
bot.reply_to(message,'Выберите папку:',reply_markup=f)
|
bot.reply_to(message,str(msg.get('chf')),reply_markup=f)
|
||||||
else:
|
else:
|
||||||
bot.reply_to(message,'Этот бот запривачен, гнида, блять')
|
bot.reply_to(message,str(msg.get('adeny')))
|
||||||
|
|
||||||
# File
|
# File
|
||||||
@bot.message_handler(func=lambda message: message.text == 'Файл')
|
@bot.message_handler(func=lambda message: message.text == str(msg.get('file')))
|
||||||
def file(message):
|
def file(message):
|
||||||
id = message.from_user.id
|
id = message.from_user.id
|
||||||
if func.auth_check(id):
|
if func.auth_check(id):
|
||||||
|
@ -102,11 +103,11 @@ def file(message):
|
||||||
type = 'file'
|
type = 'file'
|
||||||
f = folder_menu()
|
f = folder_menu()
|
||||||
if f == None:
|
if f == None:
|
||||||
bot.reply_to(message,'Папок не обнаруженно, воспользуйтесь коммандой /add')
|
bot.reply_to(message,str(msg.get('cff')))
|
||||||
else:
|
else:
|
||||||
bot.reply_to(message,'Выберите папку:',reply_markup=f)
|
bot.reply_to(message,str(msg.get('chf')),reply_markup=f)
|
||||||
else:
|
else:
|
||||||
bot.reply_to(message,'Этот бот запривачен, гнида, блять')
|
bot.reply_to(message,str(msg.get('adeny')))
|
||||||
|
|
||||||
# File download
|
# File download
|
||||||
@bot.message_handler(content_types=['document'])
|
@bot.message_handler(content_types=['document'])
|
||||||
|
@ -122,23 +123,23 @@ def download(message):
|
||||||
file_name = os.path.join(PATH, message.document.file_name)
|
file_name = os.path.join(PATH, message.document.file_name)
|
||||||
with open(file_name, 'wb') as dl:
|
with open(file_name, 'wb') as dl:
|
||||||
dl.write(file)
|
dl.write(file)
|
||||||
f = func.file(id,file_name,dir)
|
f = str(func.file(id,file_name,dir))
|
||||||
dir, type, folder_list = None,None,[]
|
dir, type, folder_list = None,None,[]
|
||||||
bot.reply_to(message,f)
|
bot.reply_to(message,f)
|
||||||
else:
|
else:
|
||||||
bot.reply_to(message,'Неверное расширение файла')
|
bot.reply_to(message,str(msg.get('ntorr')))
|
||||||
bot.reply_to(message,'Выберите тип загрузки:',reply_markup=home())
|
bot.reply_to(message,str(msg.get('type')),reply_markup=home())
|
||||||
else:
|
else:
|
||||||
bot.reply_to(message,'Этот бот запривачен, гнида, блять')
|
bot.reply_to(message,str(msg.get('adeny')))
|
||||||
|
|
||||||
# Dir choose
|
# Dir choose
|
||||||
def dirchoose(message):
|
def dirchoose(message):
|
||||||
global dir
|
global dir
|
||||||
dir = message.text
|
dir = message.text
|
||||||
if type == 'magnet':
|
if type == 'magnet':
|
||||||
bot.reply_to(message,'Отправте Magnet-ссылку')
|
bot.reply_to(message,str(msg.get('sendm')))
|
||||||
if type == 'file':
|
if type == 'file':
|
||||||
bot.reply_to(message,'Отправте .torrent файл')
|
bot.reply_to(message,str(msg.get('sendf')))
|
||||||
|
|
||||||
# Unknown message
|
# Unknown message
|
||||||
@bot.message_handler(func=lambda message: True)
|
@bot.message_handler(func=lambda message: True)
|
||||||
|
@ -151,12 +152,12 @@ def unknown(message):
|
||||||
dirchoose(message)
|
dirchoose(message)
|
||||||
return None
|
return None
|
||||||
if dir != None and type == 'magnet':
|
if dir != None and type == 'magnet':
|
||||||
f = func.magnet(id,txt,dir)
|
f = str(func.magnet(id,txt,dir))
|
||||||
dir, type, folder_list = None,None,[]
|
dir, type, folder_list = None,None,[]
|
||||||
bot.reply_to(message,f)
|
bot.reply_to(message,f)
|
||||||
bot.reply_to(message,'Выберите тип загрузки:',reply_markup=home())
|
bot.reply_to(message,str(msg.get('type')),reply_markup=home())
|
||||||
else:
|
else:
|
||||||
bot.reply_to(message,'Этот бот запривачен, гнида, блять')
|
bot.reply_to(message,str(msg.get('adeny')))
|
||||||
|
|
||||||
func.qbt()
|
func.qbt()
|
||||||
bot.polling()
|
bot.polling()
|
||||||
|
|
29
bot/func.py
29
bot/func.py
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
import db, os
|
import db, os
|
||||||
from db import *
|
from db import *
|
||||||
|
from lang import LANG as msg
|
||||||
|
|
||||||
def qbt():
|
def qbt():
|
||||||
url = os.environ['QURL']
|
url = os.environ['QURL']
|
||||||
|
@ -21,14 +22,14 @@ def u_auth(id,passwd):
|
||||||
if db.check('obj',AUTH_FILE):
|
if db.check('obj',AUTH_FILE):
|
||||||
list = db.read(AUTH_FILE)
|
list = db.read(AUTH_FILE)
|
||||||
if id in list:
|
if id in list:
|
||||||
return 'Вы уже авторизированны'
|
return msg.get('alauth')
|
||||||
else:
|
else:
|
||||||
if passwd == os.environ['PASS']:
|
if passwd == os.environ['PASS']:
|
||||||
list.append(id)
|
list.append(id)
|
||||||
db.write(list,AUTH_FILE)
|
db.write(list,AUTH_FILE)
|
||||||
return 'Вы успешно авторизировались'
|
return msg.get('sucauth')
|
||||||
else:
|
else:
|
||||||
return 'Неверный пароль'
|
return msg.get('wrauth')
|
||||||
|
|
||||||
def auth_check(id):
|
def auth_check(id):
|
||||||
if db.check('obj',AUTH_FILE):
|
if db.check('obj',AUTH_FILE):
|
||||||
|
@ -41,16 +42,16 @@ def auth_check(id):
|
||||||
def add_dir(id,dir,path):
|
def add_dir(id,dir,path):
|
||||||
if auth_check(id):
|
if auth_check(id):
|
||||||
if os.path.exists(path) == False:
|
if os.path.exists(path) == False:
|
||||||
return f"Директории '{path}' не сушествует на сервере"
|
return str(msg.get('pne')).format(path)
|
||||||
if db.check('obj',DIR_FILE):
|
if db.check('obj',DIR_FILE):
|
||||||
dict = db.read(DIR_FILE)
|
dict = db.read(DIR_FILE)
|
||||||
else:
|
else:
|
||||||
dict = {}
|
dict = {}
|
||||||
dict.setdefault(dir,path)
|
dict.setdefault(dir,path)
|
||||||
db.write(dict,DIR_FILE)
|
db.write(dict,DIR_FILE)
|
||||||
return f"Папка {dir} успешно добавлена"
|
return str(msg.get('fsa')).format(dir)
|
||||||
else:
|
else:
|
||||||
return 'Этот бот запривачен, гнида, блять'
|
return msg.get('adeny')
|
||||||
|
|
||||||
def del_dir(id,dir):
|
def del_dir(id,dir):
|
||||||
if auth_check(id):
|
if auth_check(id):
|
||||||
|
@ -61,21 +62,21 @@ def del_dir(id,dir):
|
||||||
if dir in dict:
|
if dir in dict:
|
||||||
del dict[dir]
|
del dict[dir]
|
||||||
db.write(dict,DIR_FILE)
|
db.write(dict,DIR_FILE)
|
||||||
return f"Папка {dir} успешно удалена"
|
return str(msg.get('frm')).format(dir)
|
||||||
else:
|
else:
|
||||||
return f"Папки {dir} не существует"
|
return str(msg.get('fne')).format(dir)
|
||||||
else:
|
else:
|
||||||
return 'Этот бот запривачен, гнида, блять'
|
return msg.get('adeny')
|
||||||
|
|
||||||
def magnet(id,link,dir):
|
def magnet(id,link,dir):
|
||||||
if auth_check(id):
|
if auth_check(id):
|
||||||
dict = db.read(DIR_FILE)
|
dict = db.read(DIR_FILE)
|
||||||
path = dict[dir]
|
path = dict[dir]
|
||||||
command = f'''qbt torrent add url "{link} -f {path}"'''
|
command = f'''qbt torrent add url "{link}" -f "{path}"'''
|
||||||
os.system(f"bash -c '{command}'")
|
os.system(f"bash -c '{command}'")
|
||||||
return 'Torrent добавлен в очередь'
|
return msg.get('add')
|
||||||
else:
|
else:
|
||||||
return 'Этот бот запривачен, гнида, блять'
|
return msg.get('adeny')
|
||||||
|
|
||||||
def file(id,file,dir):
|
def file(id,file,dir):
|
||||||
if auth_check(id):
|
if auth_check(id):
|
||||||
|
@ -84,9 +85,9 @@ def file(id,file,dir):
|
||||||
command = f'''qbt torrent add file "{file}" -f {path}'''
|
command = f'''qbt torrent add file "{file}" -f {path}'''
|
||||||
os.system(f"bash -c '{command}'")
|
os.system(f"bash -c '{command}'")
|
||||||
os.remove(file)
|
os.remove(file)
|
||||||
return 'Torrent добавлен в очередь'
|
return msg.get('add')
|
||||||
else:
|
else:
|
||||||
return 'Этот бот запривачен, гнида, блять'
|
return msg.get('adeny')
|
||||||
|
|
||||||
def dirlist():
|
def dirlist():
|
||||||
dirs = {}
|
dirs = {}
|
||||||
|
|
40
bot/lang.py
40
bot/lang.py
|
@ -3,15 +3,35 @@
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
def main():
|
langs = ['RU']
|
||||||
lang = {}
|
|
||||||
env = os.environ['LANG']
|
|
||||||
if env == None:
|
|
||||||
lang = russian
|
|
||||||
return lang
|
|
||||||
|
|
||||||
# RU
|
# Russian
|
||||||
russian = {}
|
RU = {
|
||||||
|
'alauth': 'Вы уже авторизированны',
|
||||||
|
'sucauth': 'Вы успешно авторизировались',
|
||||||
|
'wrauth': 'Неверный пароль',
|
||||||
|
'pne': "Директории '{}' не сушествует на сервере",
|
||||||
|
'fsa': "Папка '{}' успешно добавлена",
|
||||||
|
'frm': "Папка '{}' успешно удалена",
|
||||||
|
'fne': "Папки '{}' не существует",
|
||||||
|
'add': 'Torrent добавлен в очередь',
|
||||||
|
'type': 'Выберите тип загрузки:',
|
||||||
|
'magnet': 'Magnet-ссылка',
|
||||||
|
'file': 'Файл',
|
||||||
|
'aerr': 'Неверные аргументы',
|
||||||
|
'cff': 'Папок не обнаруженно, воспользуйтесь коммандой /add',
|
||||||
|
'chf': 'Выберите папку:',
|
||||||
|
'ntorr': 'Неверное расширение файла',
|
||||||
|
'sendm': 'Отправте Magnet-ссылку',
|
||||||
|
'sendf': 'Отправте .torrent файл',
|
||||||
|
'adeny': 'Этот бот запривачен, гнида, блять'
|
||||||
|
}
|
||||||
|
|
||||||
# ENG
|
# English
|
||||||
english = {}
|
ENG = {}
|
||||||
|
|
||||||
|
for i in langs:
|
||||||
|
if i == os.environ['LANG']:
|
||||||
|
LANG = globals()[i]
|
||||||
|
else:
|
||||||
|
LANG = RU
|
||||||
|
|
Loading…
Reference in New Issue