4
1
Fork 1

Compare commits

..

No commits in common. "c43d195d35619b066a11309345e9f8c7f596be82" and "eb7487a43ff8cba1e9eaf27f3bc24b9b2b2796ed" have entirely different histories.

4 changed files with 64 additions and 102 deletions

View File

@ -2,44 +2,45 @@
![](https://cloud.orudo.ru/apps/files_sharing/publicpreview/pgxm2mKT5KHEHFE?file=/&fileId=23795&x=1920&y=1200&a=true&etag=430e9d84364f13b79e42991fede6609a)
## Telegram bot designed to remotely add downloads to the queue on qBitTorrent server
## Telegram бот, предназначенный для удаленного добавление загрузок в очередь на qBitTorrent сервер
| [**git.orudo.ru**](https://git.orudo.ru/OrudoCA/qBitDownload-Bot) | [**GitHub**](https://github.com/OrudoCA/qBitDownload-Bot) | [**DockerHub**](https://hub.docker.com/r/orudoca/qbitdownload-bot) |
| ---------------- | ---------- | ------------- |
| [![](https://cloud.orudo.ru/apps/files_sharing/publicpreview/AmggNTQWgR6KkyB?file=/&fileId=23836&x=1920&y=1200&a=true&etag=0ef9694cea6e4d85c05aef9be72b927a)](https://git.orudo.ru/OrudoCA/qBitDownload-Bot) | [![](https://cloud.orudo.ru/apps/files_sharing/publicpreview/ip5qtGcwKHMPMAG?file=/&fileId=23819&x=1920&y=1200&a=true&etag=c540068d990ac47217a31f7450afc0ee)](https://github.com/OrudoCA/qBitDownload-Bot) |[![](https://cloud.orudo.ru/apps/files_sharing/publicpreview/7AEeEAzHYikFd5B?file=/&fileId=23806&x=1920&y=1200&a=true&etag=59894ecdfa7aaa6fb832cc4bf99c418d)](https://hub.docker.com/r/orudoca/qbitdownload-bot) |
### Bot requires [**qBitTorrent**](https://www.qbittorrent.org/) server
### Для работы бота требуется [**qBitTorrent**](https://www.qbittorrent.org/) сервер
---
### Current features:
### Текущие фичи:
---
- **Authorization by password**
- **Adding downloads to the queue via .torrent files / Magnet-links**
- **Add/Delete download directories**
- **Multiple language support**
- **Авторизация по паролю**
- **Добавление загрузок в очередь через .torrent файлы / Magnet-ссылки**
- **Добавление/Удаление директорий для загрузок**
---
### Image uses ["fedarovich/qbittorrent-cli"](https://github.com/fedarovich/qbittorrent-cli)
### В образе используется ["fedarovich/qbittorrent-cli"](https://github.com/fedarovich/qbittorrent-cli)
---
[![](https://cloud.orudo.ru/apps/files_sharing/publicpreview/rRcdSnCEaA85tWf?file=/&fileId=23784&x=1920&y=1200&a=true&etag=32928842bc4e76adaba194cdd9ec1351)](https://hub.docker.com/r/orudoca/qbitdownload-bot)
## Deploy with Docker
#### 1. Build image or clone it from [Dockerhub](https://hub.docker.com/r/orudoca/qbitdownload-bot)
## Развертывание через Docker:
#### 1. Соберите образ или склонируйте образ с [Dockerhub](https://hub.docker.com/r/orudoca/qbitdownload-bot)
**Clone a repository and go to its directory**
**Склонировать репозиторий и перейти в его директорию**
```bash
git clone https://git.orudo.ru/OrudoCA/qBitDownload-Bot.git && cd qBitDownload-Bot
```
**Build image**
**Сбор образа**
```bash
docker build -t <IMAGE_NAME> .
```
#### 2. Deploy via docker-cli or docker-compose
#### 2. Развернуть через docker-cli или docker-compose
**Docker-cli**
```bash
docker run \
@ -55,7 +56,7 @@ docker run \
-d your_image_here
```
##### or
##### или
**docker-compose**
```yml

View File

@ -3,7 +3,6 @@
import func, telebot, os
from db import PATH
from lang import LANG as msg
TOKEN = os.environ["TOKEN"]
bot = telebot.TeleBot(TOKEN)
@ -15,15 +14,15 @@ dir = None
def welcome(message):
id = message.from_user.id
if func.auth_check(id):
bot.reply_to(message,str(msg.get('type')),reply_markup=home())
bot.reply_to(message,'Выберите тип загрузки:',reply_markup=home())
else:
bot.reply_to(message,str(msg.get('adeny')))
bot.reply_to(message,'Этот бот запривачен, гнида, блять')
# Keyboard: Homepage
def home():
keyboard = telebot.types.ReplyKeyboardMarkup(resize_keyboard=True, one_time_keyboard=True)
file = telebot.types.KeyboardButton(str(msg.get('file')))
magnet = telebot.types.KeyboardButton(str(msg.get('magnet')))
file = telebot.types.KeyboardButton('Файл')
magnet = telebot.types.KeyboardButton('Magnet-ссылка')
keyboard.add(file,magnet)
return keyboard
@ -32,8 +31,8 @@ def home():
def login(message):
id = message.from_user.id
passwd = message.text.replace('/login ', '')
f = str(func.u_auth(id,passwd))
if f == str(msg.get('sucauth')) or f == str(msg.get('alauth')):
f = func.u_auth(id,passwd)
if f == 'Вы успешно авторизировались' or f == 'Вы уже авторизированны':
bot.reply_to(message,f,reply_markup=home())
else:
bot.reply_to(message,f)
@ -66,9 +65,9 @@ def add(message):
if len(txt) == 3:
key = txt[1]
path = txt[2]
f = str(func.add_dir(id,key,path))
f = func.add_dir(id,key,path)
else:
f = str(msg.get('aerr'))
f = 'Неверные аргументы'
bot.reply_to(message,f,reply_markup=home())
# Folder del
@ -80,7 +79,7 @@ def rm(message):
bot.reply_to(message,str(f),reply_markup=home())
# Magnet
@bot.message_handler(func=lambda message: message.text == str(msg.get('magnet')))
@bot.message_handler(func=lambda message: message.text == 'Magnet-ссылка')
def magnet(message):
id = message.from_user.id
if func.auth_check(id):
@ -88,14 +87,14 @@ def magnet(message):
type = 'magnet'
f = folder_menu()
if f == None:
bot.reply_to(message,str(msg.get('cff')))
bot.reply_to(message,'Папок не обнаруженно, воспользуйтесь коммандой /add')
else:
bot.reply_to(message,str(msg.get('chf')),reply_markup=f)
bot.reply_to(message,'Выберите папку:',reply_markup=f)
else:
bot.reply_to(message,str(msg.get('adeny')))
bot.reply_to(message,'Этот бот запривачен, гнида, блять')
# File
@bot.message_handler(func=lambda message: message.text == str(msg.get('file')))
@bot.message_handler(func=lambda message: message.text == 'Файл')
def file(message):
id = message.from_user.id
if func.auth_check(id):
@ -103,11 +102,11 @@ def file(message):
type = 'file'
f = folder_menu()
if f == None:
bot.reply_to(message,str(msg.get('cff')))
bot.reply_to(message,'Папок не обнаруженно, воспользуйтесь коммандой /add')
else:
bot.reply_to(message,str(msg.get('chf')),reply_markup=f)
bot.reply_to(message,'Выберите папку:',reply_markup=f)
else:
bot.reply_to(message,str(msg.get('adeny')))
bot.reply_to(message,'Этот бот запривачен, гнида, блять')
# File download
@bot.message_handler(content_types=['document'])
@ -123,23 +122,23 @@ def download(message):
file_name = os.path.join(PATH, message.document.file_name)
with open(file_name, 'wb') as dl:
dl.write(file)
f = str(func.file(id,file_name,dir))
f = func.file(id,file_name,dir)
dir, type, folder_list = None,None,[]
bot.reply_to(message,f)
else:
bot.reply_to(message,str(msg.get('ntorr')))
bot.reply_to(message,str(msg.get('type')),reply_markup=home())
bot.reply_to(message,'Неверное расширение файла')
bot.reply_to(message,'Выберите тип загрузки:',reply_markup=home())
else:
bot.reply_to(message,str(msg.get('adeny')))
bot.reply_to(message,'Этот бот запривачен, гнида, блять')
# Dir choose
def dirchoose(message):
global dir
dir = message.text
if type == 'magnet':
bot.reply_to(message,str(msg.get('sendm')))
bot.reply_to(message,'Отправте Magnet-ссылку')
if type == 'file':
bot.reply_to(message,str(msg.get('sendf')))
bot.reply_to(message,'Отправте .torrent файл')
# Unknown message
@bot.message_handler(func=lambda message: True)
@ -152,12 +151,12 @@ def unknown(message):
dirchoose(message)
return None
if dir != None and type == 'magnet':
f = str(func.magnet(id,txt,dir))
f = func.magnet(id,txt,dir)
dir, type, folder_list = None,None,[]
bot.reply_to(message,f)
bot.reply_to(message,str(msg.get('type')),reply_markup=home())
bot.reply_to(message,'Выберите тип загрузки:',reply_markup=home())
else:
bot.reply_to(message,str(msg.get('adeny')))
bot.reply_to(message,'Этот бот запривачен, гнида, блять')
func.qbt()
bot.polling()

View File

@ -3,7 +3,6 @@
import db, os
from db import *
from lang import LANG as msg
def qbt():
url = os.environ['QURL']
@ -22,14 +21,14 @@ def u_auth(id,passwd):
if db.check('obj',AUTH_FILE):
list = db.read(AUTH_FILE)
if id in list:
return msg.get('alauth')
return 'Вы уже авторизированны'
else:
if passwd == os.environ['PASS']:
list.append(id)
db.write(list,AUTH_FILE)
return msg.get('sucauth')
return 'Вы успешно авторизировались'
else:
return msg.get('wrauth')
return 'Неверный пароль'
def auth_check(id):
if db.check('obj',AUTH_FILE):
@ -42,16 +41,16 @@ def auth_check(id):
def add_dir(id,dir,path):
if auth_check(id):
if os.path.exists(path) == False:
return str(msg.get('pne')).format(path)
return f"Директории '{path}' не сушествует на сервере"
if db.check('obj',DIR_FILE):
dict = db.read(DIR_FILE)
else:
dict = {}
dict.setdefault(dir,path)
db.write(dict,DIR_FILE)
return str(msg.get('fsa')).format(dir)
return f"Папка {dir} успешно добавлена"
else:
return msg.get('adeny')
return 'Этот бот запривачен, гнида, блять'
def del_dir(id,dir):
if auth_check(id):
@ -62,21 +61,21 @@ def del_dir(id,dir):
if dir in dict:
del dict[dir]
db.write(dict,DIR_FILE)
return str(msg.get('frm')).format(dir)
return f"Папка {dir} успешно удалена"
else:
return str(msg.get('fne')).format(dir)
return f"Папки {dir} не существует"
else:
return msg.get('adeny')
return 'Этот бот запривачен, гнида, блять'
def magnet(id,link,dir):
if auth_check(id):
dict = db.read(DIR_FILE)
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}'")
return msg.get('add')
return 'Torrent добавлен в очередь'
else:
return msg.get('adeny')
return 'Этот бот запривачен, гнида, блять'
def file(id,file,dir):
if auth_check(id):
@ -85,9 +84,9 @@ def file(id,file,dir):
command = f'''qbt torrent add file "{file}" -f {path}'''
os.system(f"bash -c '{command}'")
os.remove(file)
return msg.get('add')
return 'Torrent добавлен в очередь'
else:
return msg.get('adeny')
return 'Этот бот запривачен, гнида, блять'
def dirlist():
dirs = {}

View File

@ -3,52 +3,15 @@
import os
langs = ['ENG','RU']
def main():
lang = {}
env = os.environ['LANG']
if env == None:
lang = russian
return lang
# 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': 'Этот бот запривачен, гнида, блять'
}
# RU
russian = {}
# English
ENG = {
'alauth': 'You are already authorized',
'sucauth': 'You have successfully logged in',
'wrauth': 'Wrong password',
'pne': "The '{}' directory does not exist on the server",
'fsa': "The '{}' folder has been successfully added",
'frm': "The '{}' folder has been successfully deleted",
'fne': "The '{}' folder does not exist",
'add': 'Torrent has been added to the queue',
'type': 'Select the download type:',
'magnet': 'Magnet',
'file': 'File',
'aerr': 'Wrong arguments',
'cff': 'No folders found, use the /add command',
'chf': 'Select folder:',
'ntorr': 'Incorrect file extension',
'sendm': 'Send Magnet link',
'sendf': 'Send .torrent file',
'adeny': "You do not have access, first authorize '/login <password>'"
}
for i in langs:
if i == os.environ.get('LANG','ENG'):
LANG = globals()[i]
# ENG
english = {}