forked from OrudoCA/qBitDownload-Bot
Reformat exceptions
- init static.exceptions.py - reformat exceptions - add static.functions.validate() messages
This commit is contained in:
parent
eb1dc48a11
commit
f88f007910
|
@ -32,7 +32,7 @@ class OSGetter(DirGetter):
|
||||||
dirs = {}
|
dirs = {}
|
||||||
ls = await listdir(self.base_dir)
|
ls = await listdir(self.base_dir)
|
||||||
if len(ls) == 0:
|
if len(ls) == 0:
|
||||||
raise ValueError("No dirs found")
|
raise KeyError("No dirs found")
|
||||||
for item in ls:
|
for item in ls:
|
||||||
if await isdir(f"{self.base_dir}/{item}"):
|
if await isdir(f"{self.base_dir}/{item}"):
|
||||||
dirs[item] = f"{self.base_dir}/{item}"
|
dirs[item] = f"{self.base_dir}/{item}"
|
||||||
|
|
|
@ -11,6 +11,7 @@ from tubot.db.abc import CacheDB
|
||||||
from tubot.db.types import User, UserStates
|
from tubot.db.types import User, UserStates
|
||||||
from tubot.static.functions import validate
|
from tubot.static.functions import validate
|
||||||
from tubot.static.env import AUTH_PASSWD
|
from tubot.static.env import AUTH_PASSWD
|
||||||
|
from tubot.static.exceptions import AlreadyExists, AuthError
|
||||||
|
|
||||||
|
|
||||||
class Controller(object):
|
class Controller(object):
|
||||||
|
@ -44,7 +45,7 @@ class Controller(object):
|
||||||
dirs = await self.getter.folders
|
dirs = await self.getter.folders
|
||||||
if len(dirs) > 0:
|
if len(dirs) > 0:
|
||||||
return dirs
|
return dirs
|
||||||
raise ValueError("No dirs found")
|
raise KeyError("No dirs found")
|
||||||
|
|
||||||
# Torrent
|
# Torrent
|
||||||
|
|
||||||
|
@ -54,7 +55,7 @@ class Controller(object):
|
||||||
|
|
||||||
:param torrent: Torrent object
|
:param torrent: Torrent object
|
||||||
"""
|
"""
|
||||||
await validate(torrent)
|
await validate(torrent, "Wrong torrent object")
|
||||||
await self.torrent.upload(torrent)
|
await self.torrent.upload(torrent)
|
||||||
|
|
||||||
async def get_torrent_list(self) -> str:
|
async def get_torrent_list(self) -> str:
|
||||||
|
@ -102,11 +103,11 @@ class Controller(object):
|
||||||
:param user: Current user object
|
:param user: Current user object
|
||||||
"""
|
"""
|
||||||
if user.auth:
|
if user.auth:
|
||||||
raise ValueError("Already auth")
|
raise AlreadyExists("You already auth")
|
||||||
if pwd == AUTH_PASSWD()():
|
if pwd == AUTH_PASSWD()():
|
||||||
user.auth = True
|
user.auth = True
|
||||||
await self.cache.write_user(user.tg_id, user)
|
await self.cache.write_user(user.tg_id, user)
|
||||||
raise ValueError("Wrong password")
|
raise AuthError("Wrong password")
|
||||||
|
|
||||||
async def set_user_state(self, user: User, state: UserStates) -> None:
|
async def set_user_state(self, user: User, state: UserStates) -> None:
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
##################
|
||||||
|
# ExceptionTypes #
|
||||||
|
##################
|
||||||
|
|
||||||
|
|
||||||
|
class ValidationError(Exception):
|
||||||
|
"""
|
||||||
|
Validation error exception
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
class AuthError(Exception):
|
||||||
|
"""
|
||||||
|
Authentification error exception
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
class AlreadyExists(Exception):
|
||||||
|
"""
|
||||||
|
Object already exists error exception
|
||||||
|
"""
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
# Imports
|
# Imports
|
||||||
from tubot.static.abc import IValidatable
|
from tubot.static.abc import IValidatable
|
||||||
|
from tubot.static.exceptions import ValidationError
|
||||||
|
|
||||||
|
|
||||||
async def validate(obj: IValidatable, msg: str | None = None) -> bool:
|
async def validate(obj: IValidatable, msg: str | None = None) -> bool:
|
||||||
|
@ -17,5 +18,5 @@ async def validate(obj: IValidatable, msg: str | None = None) -> bool:
|
||||||
if await obj.__validate__():
|
if await obj.__validate__():
|
||||||
return True
|
return True
|
||||||
if msg is None:
|
if msg is None:
|
||||||
raise TypeError("Object validation failed")
|
raise ValidationError("Object validation failed")
|
||||||
raise TypeError(f"Object validation failed: {msg}")
|
raise ValidationError(f"Object validation failed: {msg}")
|
||||||
|
|
|
@ -50,7 +50,7 @@ class InitBuilder(object):
|
||||||
self.TORRENT_SERVER = qBitTorrent(host, user, pwd)
|
self.TORRENT_SERVER = qBitTorrent(host, user, pwd)
|
||||||
case _:
|
case _:
|
||||||
raise TypeError
|
raise TypeError
|
||||||
await validate(self.TORRENT_SERVER)
|
await validate(self.TORRENT_SERVER, "TorrentServerAPI validation error")
|
||||||
|
|
||||||
async def init_dg(self) -> None:
|
async def init_dg(self) -> None:
|
||||||
match self.DG:
|
match self.DG:
|
||||||
|
@ -63,7 +63,7 @@ class InitBuilder(object):
|
||||||
self.DG = Jellyfin(host, key)
|
self.DG = Jellyfin(host, key)
|
||||||
case _:
|
case _:
|
||||||
raise TypeError
|
raise TypeError
|
||||||
await validate(self.DG)
|
await validate(self.DG, "DirectoryGetter validation error")
|
||||||
|
|
||||||
async def init_cache(self) -> None:
|
async def init_cache(self) -> None:
|
||||||
match self.CACHE:
|
match self.CACHE:
|
||||||
|
@ -74,7 +74,7 @@ class InitBuilder(object):
|
||||||
self.CACHE = RedisCache(host)
|
self.CACHE = RedisCache(host)
|
||||||
case _:
|
case _:
|
||||||
raise TypeError
|
raise TypeError
|
||||||
await validate(self.CACHE)
|
await validate(self.CACHE, "CacheDataBase validation error")
|
||||||
|
|
||||||
async def init_all_modules(self) -> None:
|
async def init_all_modules(self) -> None:
|
||||||
tasks = (
|
tasks = (
|
||||||
|
|
|
@ -11,6 +11,7 @@ from tubot.torrent.abc import TorrentAPI
|
||||||
from tubot.torrent.torrents import TorrentFile, TorrentMagnet, TorrentURL
|
from tubot.torrent.torrents import TorrentFile, TorrentMagnet, TorrentURL
|
||||||
from tubot.torrent.types import ServerTypes, TorrentListBuilder
|
from tubot.torrent.types import ServerTypes, TorrentListBuilder
|
||||||
from tubot.static.functions import validate
|
from tubot.static.functions import validate
|
||||||
|
from tubot.static.exceptions import AuthError
|
||||||
|
|
||||||
|
|
||||||
class qBitTorrent(TorrentAPI):
|
class qBitTorrent(TorrentAPI):
|
||||||
|
@ -77,7 +78,7 @@ class qBitTorrent(TorrentAPI):
|
||||||
cookies = resp.cookies
|
cookies = resp.cookies
|
||||||
resp = await self._get(api="api/v2/app/version", cookie=cookies)
|
resp = await self._get(api="api/v2/app/version", cookie=cookies)
|
||||||
if resp.status != 200:
|
if resp.status != 200:
|
||||||
raise ValueError("Auth error")
|
raise AuthError("Wrong creds")
|
||||||
self.cookie = cookies
|
self.cookie = cookies
|
||||||
return True
|
return True
|
||||||
except Exception:
|
except Exception:
|
||||||
|
@ -85,7 +86,7 @@ class qBitTorrent(TorrentAPI):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
async def upload_file(self, torrent: TorrentFile) -> None:
|
async def upload_file(self, torrent: TorrentFile) -> None:
|
||||||
await validate(self)
|
await validate(self, "Connection to TorrentServer failed")
|
||||||
await validate(torrent, "Bad .torrent file")
|
await validate(torrent, "Bad .torrent file")
|
||||||
bytes = await torrent.getbytes()
|
bytes = await torrent.getbytes()
|
||||||
data = FormData()
|
data = FormData()
|
||||||
|
@ -99,20 +100,20 @@ class qBitTorrent(TorrentAPI):
|
||||||
await self._post("api/v2/torrents/add", cookie=self.cookie, data=data)
|
await self._post("api/v2/torrents/add", cookie=self.cookie, data=data)
|
||||||
|
|
||||||
async def upload_magnet(self, torrent: TorrentMagnet) -> None:
|
async def upload_magnet(self, torrent: TorrentMagnet) -> None:
|
||||||
await validate(self)
|
await validate(self, "Connection to TorrentServer failed")
|
||||||
await validate(torrent, "Bad magnet link")
|
await validate(torrent, "Bad magnet link")
|
||||||
data = {"urls": torrent.content, "savepath": torrent.dest}
|
data = {"urls": torrent.content, "savepath": torrent.dest}
|
||||||
await self._post("api/v2/torrents/add", cookie=self.cookie, data=data)
|
await self._post("api/v2/torrents/add", cookie=self.cookie, data=data)
|
||||||
|
|
||||||
async def upload_url(self, torrent: TorrentURL) -> None:
|
async def upload_url(self, torrent: TorrentURL) -> None:
|
||||||
await validate(self)
|
await validate(self, "Connection to TorrentServer failed")
|
||||||
await validate(torrent, "Bad url")
|
await validate(torrent, "Bad url")
|
||||||
data = {"urls": torrent.content, "savepath": torrent.dest}
|
data = {"urls": torrent.content, "savepath": torrent.dest}
|
||||||
await self._post("api/v2/torrents/add", cookie=self.cookie, data=data)
|
await self._post("api/v2/torrents/add", cookie=self.cookie, data=data)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
async def torrent_list(self) -> str:
|
async def torrent_list(self) -> str:
|
||||||
await validate(self)
|
await validate(self, "Connection to TorrentServer failed")
|
||||||
responce = await self._get(
|
responce = await self._get(
|
||||||
"api/v2/torrents/info?filter=completed,downloading&sort=progress",
|
"api/v2/torrents/info?filter=completed,downloading&sort=progress",
|
||||||
cookie=self.cookie,
|
cookie=self.cookie,
|
||||||
|
|
Loading…
Reference in New Issue