Implement torrent scanning
- Make the completed_on field nullable for in-progress - Add __repr__ method to Torrent model for debugging
This commit is contained in:
parent
613612415d
commit
6bc26b3abb
72
tarc/main.py
72
tarc/main.py
@ -19,7 +19,7 @@ import qbittorrentapi
|
|||||||
from sqlalchemy import create_engine, inspect
|
from sqlalchemy import create_engine, inspect
|
||||||
from sqlalchemy.orm import Session
|
from sqlalchemy.orm import Session
|
||||||
|
|
||||||
from .models import Base, SchemaVersion, Client
|
from .models import Base, SchemaVersion, Client, Torrent, TorrentFile
|
||||||
|
|
||||||
# SCHEMA format is YYYYMMDDX
|
# SCHEMA format is YYYYMMDDX
|
||||||
SCHEMA = 202503100
|
SCHEMA = 202503100
|
||||||
@ -101,27 +101,61 @@ def auth_qbittorrent(endpoint, username, password):
|
|||||||
return qb
|
return qb
|
||||||
|
|
||||||
|
|
||||||
def scan_torrents(qb_client, debug=False):
|
def scan_torrents(qb_client, engine):
|
||||||
"""
|
"""
|
||||||
Scan torrents using the provided qBittorrent client.
|
Scan torrents using the provided qBittorrent client.
|
||||||
"""
|
"""
|
||||||
torrents = qb_client.torrents_info()
|
torrents = qb_client.torrents_info()
|
||||||
print(f"[INFO]: There are {len(torrents)} torrents\n")
|
|
||||||
for torrent in torrents[:2]:
|
with Session(engine) as session:
|
||||||
files = qb_client.torrents_files(torrent.hash)
|
for torrent in torrents:
|
||||||
trackers = qb_client.torrents_trackers(torrent.hash)
|
files = qb_client.torrents_files(torrent.hash)
|
||||||
print(f"[name]: {torrent.name}")
|
torrent_instance = (
|
||||||
print(f"[infohash_v1]: {torrent.hash}")
|
session.query(Torrent).filter_by(info_hash_v1=torrent.hash).first()
|
||||||
print(f"[content_path]: {torrent.content_path}")
|
)
|
||||||
print(f"[magnet_uri]: {torrent.magnet_uri[:80]}")
|
if not torrent_instance:
|
||||||
print(f"[completed_on]: {torrent.completed}\n")
|
completed_on = (
|
||||||
print(f"[trackers]: {len(trackers)}")
|
datetime.fromtimestamp(torrent.completed)
|
||||||
print(f"[file_count]: {len(files)}\n")
|
if torrent.completed
|
||||||
if debug:
|
else None
|
||||||
print(f"[DEBUG]: {repr(torrent)}")
|
)
|
||||||
for elem in trackers:
|
torrent_instance = Torrent(
|
||||||
print(f"[DEBUG]: Tracker {repr(elem)}")
|
info_hash_v1=torrent.hash,
|
||||||
print("\n", end="")
|
file_count=len(files),
|
||||||
|
completed_on=completed_on,
|
||||||
|
)
|
||||||
|
session.add(torrent_instance)
|
||||||
|
session.commit()
|
||||||
|
torrent_instance = (
|
||||||
|
session.query(Torrent).filter_by(info_hash_v1=torrent.hash).first()
|
||||||
|
)
|
||||||
|
if not torrent_instance:
|
||||||
|
print(f"[ERROR]: Can't find just added torrent {torrent.name}")
|
||||||
|
raise ValueError(f"Can't find {torrent.hash}")
|
||||||
|
|
||||||
|
file_counter = 0
|
||||||
|
for file in files:
|
||||||
|
if (
|
||||||
|
not session.query(TorrentFile)
|
||||||
|
.filter_by(file_path=file.name)
|
||||||
|
.first()
|
||||||
|
):
|
||||||
|
torrent_file_instance = TorrentFile(
|
||||||
|
torrent_id=torrent_instance.id,
|
||||||
|
file_id=file.id,
|
||||||
|
client_id=1,
|
||||||
|
file_index=file.index,
|
||||||
|
file_path=file.name,
|
||||||
|
is_downloaded=file.progress == 1,
|
||||||
|
last_checked=datetime.now(timezone.utc),
|
||||||
|
)
|
||||||
|
session.add(torrent_file_instance)
|
||||||
|
file_counter += 1
|
||||||
|
session.commit()
|
||||||
|
if file_counter > 0:
|
||||||
|
print(torrent.hash)
|
||||||
|
else:
|
||||||
|
print(f"[CHECKED]: {torrent.name}")
|
||||||
|
|
||||||
|
|
||||||
def scan(args, engine):
|
def scan(args, engine):
|
||||||
@ -135,7 +169,7 @@ def scan(args, engine):
|
|||||||
qb_client = auth_qbittorrent(
|
qb_client = auth_qbittorrent(
|
||||||
client_info.endpoint, args.username, args.password
|
client_info.endpoint, args.username, args.password
|
||||||
)
|
)
|
||||||
scan_torrents(qb_client, debug=args.debug)
|
scan_torrents(qb_client, engine)
|
||||||
elif len(clients) == 0:
|
elif len(clients) == 0:
|
||||||
raise ValueError(
|
raise ValueError(
|
||||||
f'Client with name "{args.name}" not found. '
|
f'Client with name "{args.name}" not found. '
|
||||||
|
@ -42,7 +42,17 @@ class Torrent(Base): # pylint: disable=too-few-public-methods
|
|||||||
info_hash_v1 = Column(String, nullable=False, unique=True)
|
info_hash_v1 = Column(String, nullable=False, unique=True)
|
||||||
info_hash_v2 = Column(String, unique=True)
|
info_hash_v2 = Column(String, unique=True)
|
||||||
file_count = Column(Integer, nullable=False)
|
file_count = Column(Integer, nullable=False)
|
||||||
completed_on = Column(DateTime, nullable=False)
|
completed_on = Column(DateTime)
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
"""Return a string representation of the Torrent object."""
|
||||||
|
return (
|
||||||
|
f"Torrent(id={self.id}, "
|
||||||
|
f"info_hash_v1='{self.info_hash_v1}', "
|
||||||
|
f"info_hash_v2='{self.info_hash_v2}', "
|
||||||
|
f"file_count={self.file_count}, "
|
||||||
|
f"completed_on='{self.completed_on}')"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class TorrentClient(Base): # pylint: disable=too-few-public-methods
|
class TorrentClient(Base): # pylint: disable=too-few-public-methods
|
||||||
|
Loading…
x
Reference in New Issue
Block a user