bb337129f0
Some checks are pending
Stacks CICD / Setup (push) Waiting to run
Also removes git-crypt encryption from all remaining secrets. |
||
---|---|---|
.. | ||
.env | ||
discord_notifier.sh | ||
docker-compose.yml | ||
README.md |
Create a Torrent File
On Windows, use qBitTorrent's Torrent Creator
On Linux (CLI), use ctorrent
. (Like: ctorrent -t -s output_file.torrent /path/to/source/dir
)
Update Tracker URLs in Bulk
Requires: qbittorrent-cli
- Configure
qbt
to connect toqbt.jafner.net
.
qbt settings set username admin
qbt settings set url https://qbt.jafner.net
-
Get a list of hashes for torrents of the right category. Example:
qbt torrent list --category ggn --format json | jq ' .[].hash' | tr -d '"' > hashes.txt
-
Replace the old announce URL with the new announce URL for each hash. Example:
for hash in $(cat hashes.txt); do qbt torrent tracker edit $hash "https://tracker.gazellegames.net/7667910c8a2b5446890cbd0ad459d5c3/announce" "https://tracker.gazellegames.net/d0dd178494dd6ffcd9842934a13086e0/announce"; done
This will take a long time.
Check Sum Torrent Size by Category
BEHOLD. MY ONE LINER: for category in $(qbt category list --format json | jq -r '.[].name'); do qbt torrent list --category $category --format json | jq ' .[].size' > sizes_$category.txt && echo $category && awk '{ sum += $1 } END { print sum }' sizes_$category.txt | numfmt --to=iec-i --suffix=B --format="%9.2f"; done
Export Torrents to CSV
For a given $category
, run qbt torrent list --category $category --format csv > ggn.csv
to export the torrent list to a file.
Columns included are:
- Hash
- Name
- MagnetUri
- Size
- Progress
- DownloadSpeed
- UploadSpeed
- Priority
- ConnectedSeeds
- TotalSeeds
- ConnectedLeechers
- TotalLeechers
- Ratio
- EstimatedTime
- State
- SequentialDownload
- FirstLastPiecePrioritized
- Category
- SuperSeeding
- ForceStart
- SavePath
- AddedOn
- CompletionOn
- CurrentTracker
- DownloadLimit
- UploadLimit
- Downloaded
- Uploaded
- DownloadedInSession
- UploadedInSession
- IncompletedSize
- CompletedSize
- RatioLimit
- LastSeenComplete
- LastActivityTime
- ActiveTime
- AutomaticTorrentManagement
- TotalSize
- SeedingTime
- ContentPath
Remove Torrents by Hash
Assuming we have a hashes.txt
file with one line for each hash we want to remove:
for hash in $(cat hashes.txt); do qbt torrent delete $hash; done
Check for "Unregistered" (Trumped/Deleted) Torrents
Many private trackers will delete or trump (replace with better quality) torrents. These trackers have no way to directly inform your torrent client that the torrent is no longer valid, but can update the way the tracker responds to announce messages from your client. For many Gazelle-based trackers, this is done by responding with "Unregistered torrent" in the message field, and setting the status to "Not working". Qbittorrent does not provide functionality in the WebUI to quickly and easily find all unregistered torrents, but the API does support the idea.
User animosity22
posted a quick python script on Github to find, print, and delete all torrents with the 'Unregistered torrent' message from the tracker.
But that script used hardcoded credentials for host, username, and password. We don't want that if it will be entered into version control. So I had ChatGPT rewrite the script for me to make those user-inputted. It can be found here.
Using the Script
Prerequisites:
- a Python3 environment
- the
qbittorrent-api
package - the
hurry.filesize
package
Steps:
- Get the URL of the Qbittorrent webUI.
docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' qbittorrent_qbittorrent
. We'll assume the default port of8080
for the webUI here. - Get the username and password for the webUI. These should be in a password manager.
- Run the script
python3 ~/homelab/fighter/scripts/remove_trumped_torrents.py
. When prompted, input thehost
like172.18.0.28:8080
with the IP found in step 1. Use the credentials from step 2 for username and password. - Done.