Gabisonfire / raincoat

Raincoat is a tool to search torrents using Jackett and send them to your client.
51 stars 15 forks source link

Docker / Magnet Issues #7

Closed trip5 closed 3 years ago

trip5 commented 4 years ago

Trying to make a docker image from python 3.7 (I've tried 3.6 but pip fails on installing transmission) - I've tried various base images including more full ubuntu images. I consistently get this error:

error

Upon viewing helpers.py file it also seems to be missing everything after line 60 so I'm wondering if either libtorrent isn't handling the magnet URI correctly, especially since this error message isn't in your source code or (b) it's a kind of redirect link and helpers.py doesn't know how to handle it.

By the way, except this, your program looks exactly what I've been searching for! (I'll use a schedule script to search for newly released / rare torrents, automated with a 'echo :d 1' pipe).

trip5 commented 4 years ago

Oh and my apologies for the screen shot. I'm also doing this through Synology Docker UI which makes building and running containers a bit of a pain but quite functional.

trip5 commented 4 years ago

My docker file looks like this (just so you get some idea of what I'm starting with):

FROM python:3.7.8-slim
EXPOSE 443
ADD Raincoat.json /root/.config/Raincoat.json
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN apt-get update
RUN apt-get install apt-utils -y
RUN apt-get install python-libtorrent -y
RUN pip install raincoat-jackett
ADD init.sh /init.sh
ENTRYPOINT ["/bin/bash"]

The ADD at the beginning adds a basic json config file. PIP, when running a build doesn't seem to create that file. After that, everything seems fine... until I get to actually trying to use it.

Gabisonfire commented 4 years ago

Hey! I'm glad you like my tool :) Libtorrent is only used when your want to download the torrent files locally, and I haven't pushed it yet to pip since I got sidetracked and could not do proper testing yet. I should've put it in a separate branch.

Since you are trying to send to deluge, you are not using libtorrent and the magnet links should be sent directly to Deluge without issues. You might have a bit more info in the log file, it logs in the same place as your config file (something I'd like to change as well). Use the --verbose option and see if we can get more info.

Also could you please post your config file, make sure to obfuscate personal information.

I did not consider running it in docker, I will probably try to build the image myself and see if I get the same issues as you.

automated with a 'echo :d 1' pipe I can probably add a switch for this instead, something like --select ID

trip5 commented 4 years ago

It doesn't recognize --verbose as an argument. So... The logfile is only one line now. Not very useful, probably. I'm trying another Docker build without all the apt and libtorrent stuff.

The new dockerfile looks like this:

FROM python:3.7.8-slim EXPOSE 443 ADD Raincoat.json /root/.config/Raincoat.json RUN pip install raincoat-jackett ENTRYPOINT ["/bin/bash"]

And the docker-compose.yml looks like this (I have no idea what I'm doing here but the network has to be exposed to get PIP to work):

version: "2.3" services: base: build: context: . network: host

My Raincoat.json:

{ "jackett_apikey": "123abcjackettapikey123abc", "jackett_url": "http://127.0.0.1:9117", "jackett_indexer": "all", "description_length": 100, "exclude": "", "results_limit": 20, "client_url": "http://127.0.0.1:8111", "display": "grid", "torrent_client": "deluge", "torrent_client_username": "admin", "torrent_client_password": "password", "download_dir": "/downloads" }

I've tried using the actual IP address as well. It doesn't make any difference it seems. Jackett can still be accessed while Deluge cannot. Everything runs from the same Docker on a Synology device. Deluge is version 1.3.15 if that makes any difference (the last one that works with the Windows UI and I have no problem accessing it even on WAN). Docker can (of course) be configured to only open certain ports. I've so far been operating the container with full access to the host network - just in the meantime while I get it working... 443 needs to be exposed at first to get PIP to work but I'm assuming after that, only the 2 ports used by Jackett and Deluge should be exposed, which I'll work out later.

Gabisonfire commented 4 years ago

My bad, I added the --verbose in the unreleased (git) version.

If everything works on the same docker, you should not need to but the host network, and access the containers directly by their names. The issue there might be the listening IP of deluge (should be 0.0.0.0). Can you do a netstat in the container to see if it listens? Can you reach Deluge's Web UI?

I doubt it's related to Raincoat.

trip5 commented 4 years ago

Hi again. I've tried multiple things. Netstat shows 0.0.0.0:8111 and 0.0.0.0:8112 LISTEN (run through a Synology BASH shell).

I can get Sonarr to communicate with Deluge with localhost:8112 (no username). So I tried that. I also have QBitTorrent running and Sonarr has no issues with that. Sonarr is also exposed to the host so no messy port remapping to think of.

Anyways, I've tried all combinations trying to get the magnet passed to either deluge or qbittorrent and it fails with exactly the same error as above.

My thought is that you use a helper to get the magnet passed on to the torrent? And that's the bit that's failing... I don't know where this error would come from: "Could not fetch torrent url: No connection adapters were found for 'magnet:?xt=urn:btih:..."

If relevant, I use Deluge Client: 1.3.15 / Server: 1.3.15 / libtorrent: 1.0.11.0

Gabisonfire commented 4 years ago

Hi,

Yes the error is returned from the helpers.py file, by the request module. I'll have to check as it should support magnet links right away, I might have an idea on what's causing the issue. I'll have a look most likely tonight but in the meantime, could you try with the latest version:

pip install git+https://github.com/Gabisonfire/raincoat.git

And the "--verbose" switch, it would help me greatly :)

trip5 commented 4 years ago

Hey again. I assume I'm missing something? I don't know how Python works or how to interpret this:

Traceback (most recent call last): File "/usr/local/bin/raincoat", line 5, in from raincoat.raincoat import main File "/usr/local/lib/python3.7/site-packages/raincoat/init.py", line 1, in from .raincoat import main File "/usr/local/lib/python3.7/site-packages/raincoat/raincoat.py", line 7, in from raincoat import shared ImportError: cannot import name 'shared' from 'raincoat' (/usr/local/lib/python3.7/site-packages/raincoat/init.py)

I've tried building using Python3.7.8-buster base (since it comes with git in the image already)... is the version of python deadly important? I also tried 3.8.4-buster... same... but it does add this info:

ImportError: cannot import name 'shared' from partially initialized module 'raincoat' (most likely due to a circular import) (/usr/local/lib/python3.8/site-packages/raincoat/init.py)

Gabisonfire commented 4 years ago

Hey,

I'm using Python 3.8.3, as long as you use python 3.7 you should not have any issues.

For your error, there was a missing file I forgot to push. I just pushed it, if you try again you should not have this error. I'm still working on the issue you are having.

trip5 commented 4 years ago

Still using Python3.8.4-buster as a base (for now - it's 1GB - try slim to get it down to 200MBish later):

Using port 8112 (the WebUI):

root@BlackPotato:~/.config# cat Raincoat.log [ 2020-07-17 14:51:49.408901 ] :: DBG :: Raincoat v0.8 [ 2020-07-17 14:51:51.273515 ] :: DBG :: Request made to: http://127.0.0.1:9117/api/v2.0/indexers/all/results?apikey=624v7b6vuzflripfsu80cb4tpa8u2h0y&Query=Wonder_Woman_1080_mkv [ 2020-07-17 14:51:51.273969 ] :: DBG :: 200: OK [ 2020-07-17 14:51:51.274414 ] :: DBG :: Headers: {"User-Agent": "python-requests/2.23.0", "Accept-Encoding": "gzip, deflate", "Accept": "/", "Connection": "keep-alive"} [ 2020-07-17 14:51:51.275126 ] :: DBG :: Search yielded 3 results. [ 2020-07-17 14:51:51.275606 ] :: DBG :: Content: {"Results":[{"FirstSeen":"0001-01-01T00:00:00","Tracker":"TorrentGalaxy.org","TrackerId":"torrentgalaxyorg","CategoryDesc":"Movies/HD","BlackholeLink":"http://127.0.0.1:9117/bh/torrentgalaxyorg/?jackett_apikey=624v7b6vuzflripfsu80cb4tpa8u2h0y&path=Q2ZESjhGdHY2NGpyRTdoUG5rTlFvY05FQjBNa2c1T2tDWlM1b0hCdk5PNnJ6LTdnUnNfWnR2OXl4MWN6VG90b1NoLUVtc1g0VDdSWW5qLWIxU0ZTV2tVQ3FZbUdSVzZLcE1vcGw5aGNPaDdpRUpWR0xOMXRGanQyd0VsWlJPVXplR0RtSmZaUGVIY2VfNk83SUh3ZUpxMzhocGp4V0hNWlQ0R1lMQmRVLVRuX3hMNWxtUXVrTllLU3BpRG1qbG42V3NfZVE4dThQWHM3cDR1UGRjRHlOM3kzZzNhVE9ma2hLcnNIUmZqclZvRzRqWnozWS1mUTNnOFNNT3VNSnpEeXpuSXVwdDZfOEp1VDQzQlZ2eG9wQXdJTzZzdzdOcEkweThMWVNGaFE3eVctb2NJaExGNjJSY3REcTVGNE1zVkRySUZNX1NhOGZaMmtkQXdBUi1uUXRaNmlKNm8yYkg2WGxBREkzU2VSNVpmdmRBVWdKeWxPQ2MyVGo5bEpndXBYTThoVTZqSUpSTkhsVUlndkl1R3JSazlwWjdjbjk5aUVtUEJzTzQweDhGV2Zhc203VHMtVUhOZnV5aS1xQWxhb09UaFRxTHhZSWZMZHlsRXR4ZnEyanpWTjcxZmQ1VlkxRER0MVU3Y1ZZVkI3Q2cybHZqMk01MkxyWFIxWXF0V3M0aXM0UlVoeUliQkRwV1BZeVhrUEVQQ1pRSGZvbHBWbWZITHJyMlVDNDhoRncwemI5QmdLRV9qRjBIX2VzTVpQVW9VVTJJOFlLbEdLdUdvLXlNUWNZWWpwek5oVE5SZm5hd3d2azNVQzRyYm5PNHhvOVNXWFlKanRZQW5SWUhIY0VtaGRDRjZoTWxqRXRiXzV2N01ZYThQWUNITlpnZWVpTmhTM3RoQ092aHc3ZHROUHJKdk1OeHR3SjEtOHI4S0VPXzNBODNzWGF1MnFodDFoZnZiNi1BbmdLaU9ZZGpsX1lhdmh2eUNQcjBlbnp6OXo0VDUwcGFXbEZvZ0dIeURpM1RPc0JCMXVwMTFWVkhyMFBqajdQd0N4QkdYTWtSTXdRTVN2RjRBemhZUUgtbE1RUHJTeXFZekswTi04SFJyZFJ4X3F4ckRickhOOTA4RDc5Y2NGRVgtWVVyRQ&file=Wonder+Woman+(2017)+(1080p+BDrip+x265+10bit+EAC3+5.1+-+ArcX)%5BTAoE%5D.mkv","Title":"Wonder Woman (2017) (1080p BDrip x265 10bit EAC3 5.1 - ArcX)[TAoE].mkv","Guid":"https://torrentgalaxy.to/torrent/14013748/Wonder-Woman--2017---1080p-BDrip-x265-10bit-EAC3-5-1---ArcX--TAoE--mkv","Link":null,"Comments":"https://torrentgalaxy.to/torrent/14013748/Wonder-Woman--2017---1080p-BDrip-x265-10bit-EAC3-5-1---ArcX--TAoE--mkv","PublishDate":"2020-05-27T04:51:00","Category":[2040,100042],"Size":5272072192,"Files":null,"Grabs":null,"Description":null,"RageID":null,"TVDBId":null,"Imdb":null,"TMDb":null,"Seeders":7,"Peers":4,"BannerUrl":null,"InfoHash":null,"MagnetUri":"magnet:?xt=urn:btih:4132e6c62ff5f07f2e20e5e1f5490ee233954613&dn=Wonder Woman (2017) (1080p BDrip x265 10bit EAC3 5.1 - ArcX)[TAoE].mkv&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.demonii.si%3A1337%2Fannounce","MinimumRatio":1.0,"MinimumSeedTime":172800,"DownloadVolumeFactor":0.0,"UploadVolumeFactor":1.0,"Gain":34.369998931884766},{"FirstSeen":"0001-01-01T00:00:00","Tracker":"TorrentGalaxy.org","TrackerId":"torrentgalaxyorg","CategoryDesc":"Movies/HD","BlackholeLink":"http://127.0.0.1:9117/bh/torrentgalaxyorg/?jackett_apikey=624v7b6vuzflripfsu80cb4tpa8u2h0y&path=Q2ZESjhGdHY2NGpyRTdoUG5rTlFvY05FQjBNc0pIWV9QQWZ4eDl0NEV0NFBudHBQY0RvQTQ5X3E1TXhyRm04TzUta09JTENQcFFEM09Ca05LTVJKMDVTQnEyUW1qMnR6WFlmdEFvTzktZkZsNHZ3MHFCbUwwZDhmTnlqUFV0ajJuUkxVaV9mT01mZW1BcVJYNTY2c0hNQmhlSDdfOExzTnQ0cXEyZElyajVyYWVWUFhMRk13cl9QX0NaRjBIc1FWWXNZSElYZURJYmtsdE5zOVJ2WldUTi10bDBqdTlqakNxeGR0c2dhWGd4R0hvMWh5bmk2YjFtZ0hxdVA0RklpYUkyWkRhTUl1REJoVUhrQnNJQXdhV1NTNzBGZXMxNGVLUDBINUNnaWdaMm1oSElSUl9uUTBFYTBmVUZXXzlRM293Y3llZWZJWDUwTDJLRlNCTGVjVzJJUW91andLZnkzVU14YldscnBWX3RubW1icmh2Z3E3MHNQU1NZTGpnSVNTNEdjZlJNSnA4cy1DMGstbzhnc0NkTHBQcmNlYUFTYjA1SDBVRXFFVDQ0N3E3S1UzZUxlSmRIZGo5MEdOcV9pSTRFdUNHem93YmxhYzloNW5XbWp4NU5fSFk3dzgzbW9wcmJxNVowWXBCdnVMWHIwVk1OTDRiX20zS3RqQkU5a3RxWWxCSUpfVzFjSWJtZDFtTEhEellwTzBTcG50WnVTZmJsQmdaSEFCYWg0Vk9NekhFdlByOVJ5LXpENW05eC1aVDB5Y0lLR3prUGhieE5BWTl4bTUzVkpza1VwbzE2M084azB1ZVBfeHg2MjUzeGxjWWF1d1cta2N5MWEySUM2eldKRHNsbmFYQUhhYW1ua2kwY3BTN05GQkZYUEZMdDNHMmNweEVwTDBMeHBENWdjWUdmdWprMlNpbGRQcS02eHVONHhfQ1NONEczc1JUemNTa2pkUDh1WWF3YlYwZFBNQjFnZXdEYk1qOUFnYlphZVhpcGtGOGw2VjV6NjgxTHdDTmgxODM4RW9NZnI1b25LMklVVXBSWXdSRE5DMV9mbDJTblg2RWlSUWRicURKeTFXTGVOc05aeUJpa1pTT2RjRUladmxzZkhrdGZHQ2p5RG1sZXdCaEEtanA5QmJnNTZIQ1RfMWZwemt2bmlFNEJ2Uw&file=Wonder+Woman+(2017)+(1080p+BDrip+x265+10bit+DTS-HD+MA+7.1+-+ArcX)%5BTAoE%5D.mkv","Title":"Wonder Woman (2017) (1080p BDrip x265 10bit DTS-HD MA 7.1 - ArcX)[TAoE].mkv","Guid":"https://torrentgalaxy.to/torrent/14013747/Wonder-Woman--2017---1080p-BDrip-x265-10bit-DTS-HD-MA-7-1---ArcX--TAoE--mkv","Link":null,"Comments":"https://torrentgalaxy.to/torrent/14013747/Wonder-Woman--2017---1080p-BDrip-x265-10bit-DTS-HD-MA-7-1---ArcX--TAoE--mkv","PublishDate":"2020-05-27T04:51:00","Category":[2040,100042],"Size":8708045824,"Files":null,"Grabs":null,"Description":null,"RageID":null,"TVDBId":null,"Imdb":null,"TMDb":null,"Seeders":2,"Peers":1,"BannerUrl":null,"InfoHash":null,"MagnetUri":"magnet:?xt=urn:btih:bb3b6501937a8c3c8ec3bcfc595402c728af1ff4&dn=Wonder Woman (2017) (1080p BDrip x265 10bit DTS-HD MA 7.1 - ArcX)[TAoE].mkv&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.demonii.si%3A1337%2Fannounce","MinimumRatio":1.0,"MinimumSeedTime":172800,"DownloadVolumeFactor":0.0,"UploadVolumeFactor":1.0,"Gain":16.219999313354492},{"FirstSeen":"0001-01-01T00:00:00","Tracker":"LimeTorrents","TrackerId":"limetorrents","CategoryDesc":"Movies","BlackholeLink":"http://127.0.0.1:9117/bh/limetorrents/?jackett_apikey=624v7b6vuzflripfsu80cb4tpa8u2h0y&path=Q2ZESjhGdHY2NGpyRTdoUG5rTlFvY05FQjBQSmhFamRKcHd4bzllaXgzdEU1VHdhUmJ1ZVFzc2F2ZllkcHZtUDdqOVI0T0RsMVFNSmRsQW9ZSHBmUjlFMWowQkktWUltdjJsMGJzMWlESXB3T0FreHE2VGVzR1pVcEVqOEZjWW8wQURNMjdMM2lvdnBaNHI5aEV4YXY1VmhPNDlURHlSNHBuMW8zMFFiYmdHNGpidnA3Zi1JUFFTSlphVlc0b0Ywb290eHE4Y3lya3lvRWlhX1U1ajdEX0tIQ1NXamdXN3Nxa1NLODN6QjVZenJQRHFQUTVSOE44dWQwMEJwckpJc2JORjBkUQ&file=Wonder+Woman+2017+1080+BRRip+x264+DTS+ESub++NextBit","Title":"Wonder Woman 2017 1080 BRRip x264 DTS ESub NextBit","Guid":"https://www.limetorrents.info/Wonder-Woman-2017-1080-BRRip-x264-DTS-ESub--NextBit-torrent-9707864.html","Link":"http://127.0.0.1:9117/dl/limetorrents/?jackett_apikey=624v7b6vuzflripfsu80cb4tpa8u2h0y&path=Q2ZESjhGdHY2NGpyRTdoUG5rTlFvY05FQjBNMnNFcEZsVGFMYTZnZDVCakhlWUVCVFpfRmxUWVl2emNxNmpORFFOcHc2dzYtdC1oa3FXbnEwSlBYZUw5WE9WLXZodlJQUy1UTVhuVy1Hc2ExNU9RTGlfYWNKX2I1QXdQOXo2WG5IUDJ4YzNjWWZLamFnQlM2ZEJ2MUNsQW5TTTN4Vk9DRkttQmJNbW5QdVNCMm8xdW1SVDljRFlWbV9ENHB2cVJOSWh4NnFvejMyOVlHdTNuWVFqWGpvSVBRUGJabWVWQUIwR3A0YjVTS2Q4eXBGLWNuYTNDZlFLdHpFVFpWQUZ1cVl0a1psUQ&file=Wonder+Woman+2017+1080+BRRip+x264+DTS+ESub++NextBit","Comments":"https://www.limetorrents.info/Wonder-Woman-2017-1080-BRRip-x264-DTS-ESub--NextBit-torrent-9707864.html","PublishDate":"2019-07-18T23:51:50.3949593+09:00","Category":[2000],"Size":4015794432,"Files":null,"Grabs":null,"Description":null,"RageID":null,"TVDBId":null,"Imdb":null,"TMDb":null,"Seeders":4,"Peers":2,"BannerUrl":null,"InfoHash":null,"MagnetUri":null,"MinimumRatio":1.0,"MinimumSeedTime":172800,"DownloadVolumeFactor":0.0,"UploadVolumeFactor":1.0,"Gain":14.960000038146973}],"Indexers":[{"ID":"ettv","Name":"ETTV","Status":2,"Results":0,"Error":null},{"ID":"eztv","Name":"EZTV","Status":2,"Results":0,"Error":null},{"ID":"limetorrents","Name":"LimeTorrents","Status":2,"Results":1,"Error":null},{"ID":"rarbg","Name":"RARBG","Status":2,"Results":0,"Error":null},{"ID":"rutracker","Name":"RuTracker","Status":2,"Results":0,"Error":null},{"ID":"showrss","Name":"ShowRSS","Status":2,"Results":0,"Error":null},{"ID":"soundpark","Name":"SoundPark","Status":2,"Results":0,"Error":null},{"ID":"thepiratebay","Name":"The Pirate Bay","Status":2,"Results":0,"Error":null},{"ID":"torrentgalaxyorg","Name":"TorrentGalaxy.org","Status":2,"Results":2,"Error":null},{"ID":"zooqle","Name":"Zooqle","Status":2,"Results":0,"Error":null}]} [ 2020-07-17 14:51:53.168589 ] :: ERR :: Could not fetch torrent url: No connection adapters were found for 'magnet:?xt=urn:btih:4132e6c62ff5f07f2e20e5e1f5490ee233954613&dn=Wonder Woman (2017) (1080p BDrip x265 10bit EAC3 5.1 - ArcX)[TAoE].mkv&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.demonii.si%3A1337%2Fannounce'

Using port 8111 (the daemon):

root@BlackPotato:~/.config# cat Raincoat.log [ 2020-07-17 14:58:03.465234 ] :: DBG :: Raincoat v0.8 [ 2020-07-17 14:58:07.256957 ] :: DBG :: Request made to: http://127.0.0.1:9117/api/v2.0/indexers/all/results?apikey=624v7b6vuzflripfsu80cb4tpa8u2h0y&Query=Wonder_Woman_1080_mkv [ 2020-07-17 14:58:07.257296 ] :: DBG :: 200: OK [ 2020-07-17 14:58:07.257595 ] :: DBG :: Headers: {"User-Agent": "python-requests/2.23.0", "Accept-Encoding": "gzip, deflate", "Accept": "/", "Connection": "keep-alive"} [ 2020-07-17 14:58:07.258247 ] :: DBG :: Search yielded 3 results. [ 2020-07-17 14:58:07.258813 ] :: DBG :: Content: {"Results":[{"FirstSeen":"0001-01-01T00:00:00","Tracker":"TorrentGalaxy.org","TrackerId":"torrentgalaxyorg","CategoryDesc":"Movies/HD","BlackholeLink":"http://127.0.0.1:9117/bh/torrentgalaxyorg/?jackett_apikey=624v7b6vuzflripfsu80cb4tpa8u2h0y&path=Q2ZESjhGdHY2NGpyRTdoUG5rTlFvY05FQjBNbFZIR0VOemhpRHRGVzhWc3E3UG9RLWxMQy1GX2tzanVZNzFydVlYSUZWV0E3clJ6ZkZvWnYtVGtNOThfRTU1N1RUV21tdjRPc0VvZ2JqaFpMQUp0UXBHOVU1eDlFV09Ua1JxNEV6aWxuRVZ0TzVzazNSbEkwZ08xM2RqQXYyTDFwV2RsSS1HcXVBd1BONi1pYy1BbzdVQW90anRMRGZaM0FBMjl5ZWlQZTh0aEFmRnhTS2RleW0yVUtvbFNRRE1KSXpWaUFwbjJmRm4xVU5JVGF0QUdkTElzNElna1h1bXdCN1VtWXdrNlJya1VBbjVtMWxlSjBvYjItdElsZW5BbzlfejI0U3FTcTYzN3BZR0tGT0Z2ZDVqTEF1dkpJdTJaaWdXb3VLX2FhSkFudFdQTkJQSEtNazNpaTJpUThxQ25RQXc0dENOX09UTS14RVFCV3BsYW5qTWR4OF9oSmZHOGx2TFZYbEF5S1k0MHNBQm9fRWZhRlh6bjBSVDBKelBvaWFwdGNTdGdyaGhJZlJ2R3BrcGxielBRaHdwTHNaUFp1XzdPY2V1NVdZNXVHWkg4b3FWdzE0TlNPLVl5XzhFYVVDN08tdGZoMkxVYzJRN1FaU2kyUEVhVWw2Y01md2ZWYTAwWUNsTFJZdE81YVpUNnVNMjNBVmF4N0hiWF90WnJ3cmNXN2tlQjBpdWxjNmRXQzUtekVBYlBUTHVtZm5iOGVWbVFpZk5XczVSRWRlYTc3ZUN0bXVzQzBLX2V0VlRNWmRVcF9EcW5OYzljYXlLYldueFBjeVpzNVRkZ1ZaX0JiQ2s4cGdtLVduUjFGcV9aLXB2RndBLTRPVGZiWGxUek5YRlhLRHprRVI4WnR1MXYtUkV2LUFjWGVwcWthU2FHZlVKUWwtZlhuNXJvZHRybnVaaC1IQTFuelBtTnVienV0Qk9lNk01QXYyeUhYdVc3NXZzUFdTUEhtaWtVWE5haXNEVXBQX1JTV0xxakwzYlhueDFnbVNsM2RGOExJRzIxbHhBZ3Y4cHNwZnJHMUhnMlVGY01RcnhxRlJwY2cxOW5aRE1Ub3JEY3pyT2dtcWZCNjE2OXBwWUEyb3lheHhUWQ&file=Wonder+Woman+(2017)+(1080p+BDrip+x265+10bit+EAC3+5.1+-+ArcX)%5BTAoE%5D.mkv","Title":"Wonder Woman (2017) (1080p BDrip x265 10bit EAC3 5.1 - ArcX)[TAoE].mkv","Guid":"https://torrentgalaxy.to/torrent/14013748/Wonder-Woman--2017---1080p-BDrip-x265-10bit-EAC3-5-1---ArcX--TAoE--mkv","Link":null,"Comments":"https://torrentgalaxy.to/torrent/14013748/Wonder-Woman--2017---1080p-BDrip-x265-10bit-EAC3-5-1---ArcX--TAoE--mkv","PublishDate":"2020-05-27T04:51:00","Category":[2040,100042],"Size":5272072192,"Files":null,"Grabs":null,"Description":null,"RageID":null,"TVDBId":null,"Imdb":null,"TMDb":null,"Seeders":7,"Peers":4,"BannerUrl":null,"InfoHash":null,"MagnetUri":"magnet:?xt=urn:btih:4132e6c62ff5f07f2e20e5e1f5490ee233954613&dn=Wonder Woman (2017) (1080p BDrip x265 10bit EAC3 5.1 - ArcX)[TAoE].mkv&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.demonii.si%3A1337%2Fannounce","MinimumRatio":1.0,"MinimumSeedTime":172800,"DownloadVolumeFactor":0.0,"UploadVolumeFactor":1.0,"Gain":34.369998931884766},{"FirstSeen":"0001-01-01T00:00:00","Tracker":"TorrentGalaxy.org","TrackerId":"torrentgalaxyorg","CategoryDesc":"Movies/HD","BlackholeLink":"http://127.0.0.1:9117/bh/torrentgalaxyorg/?jackett_apikey=624v7b6vuzflripfsu80cb4tpa8u2h0y&path=Q2ZESjhGdHY2NGpyRTdoUG5rTlFvY05FQjBNMTgxVGJ6dXMxZFVXTnlnVE9SN2dEdWFFN19aQ1JNcElJWTBzbjNwekVZNU9hcFBzcTlON21rYWxEUjhQazdzbFhoa3FKeUxUZUh2TGtOMTJrb1JEV3RrSV9uaGtnN21XTXY0UWFuRGtOdTlfVkdBMGpDc2FiOXVtbF9VZXZkSkpHMXc0UzBOY1ZxT3Y4ZkpHRF8zMlU3NlI0YWFHY1lRSlAyRy1pZF9oazVMX01YbGxIRnhsSUhXaVVoVHRQemVQYmZaLXQxalRkVEFXeXBLdXlQNzhaM2NBUXBmd1FVM09NNjdyUnlUbjNNci1EX1JkdkVUVXlneUp1dFVNZWVRRWVSZFY2Wml5cnV6Vl9NNDg3RXM5RC1GUnZKSEo5NE5CcXV1QTlSTDNjSzZYaFQybkxYc256V2NvYnprSHlJaGFLSk1wcENfbElFWVJaSmpwdHFvWkk4UG84LTJVbC1OTl94WWpKSUFtRHRxdTZYemMxTE1Na1hWWE5uWVJEeWxOTzlyYlpoSGJvT0c1Z0xyS2tzdktLSGtibEM3bzc0SkV0aVVyUVZhd2NiRDhmTkpYblBPM2lKcG9hQVdWM1QwZVhBSWVjQVlyUWRPUFlwSzNncUtNTjNwamtLeldjalE5QWlGbzVTcllhalRfYWJ3cnNFU3pZNWpyTklJX0x4UlZza09YcjIzam9rNjZ5WTJoZTg2c2Q0MGZRUG91Q3dkbDJiQk9fNkJIX0w1UjljeU5zR0NWNThiWWVPZG12SkhqWUtyZEZ5RVJtb2dxMS1UZlVyQkpnV1Y2NDd0Sm1uSEhNejlpb0RWcTQyTmNUS0NrWmJOa1hWOXBIa3ppb2xLRnhPbUlwMVFEV2VCNjdUZ0c3MmdVTTNJdHdWZDZCNndSV2VFcG9ZNHRwd2IwR3NaZTM0b2NfTGxCTWptQ1U5RXdoOFE0QUMyVmdENnRUQ3pnbE5Zc3dsTUtycXRZYXNnWi1XaTEzWUNZWjVxWXhyN1NTdFhPNnRiVzRCOVVqb3NTVlpYOElieDZSdDFqbmo1cmpPVVZHS21QM2t2SFhBbGVKQ2ZjY09KZWFsZzZra3gzWlJoYTZjNk1ZTWxJNVVaRWJVN3ZCWXRnZlJDWkNyTDlNU3hFZA&file=Wonder+Woman+(2017)+(1080p+BDrip+x265+10bit+DTS-HD+MA+7.1+-+ArcX)%5BTAoE%5D.mkv","Title":"Wonder Woman (2017) (1080p BDrip x265 10bit DTS-HD MA 7.1 - ArcX)[TAoE].mkv","Guid":"https://torrentgalaxy.to/torrent/14013747/Wonder-Woman--2017---1080p-BDrip-x265-10bit-DTS-HD-MA-7-1---ArcX--TAoE--mkv","Link":null,"Comments":"https://torrentgalaxy.to/torrent/14013747/Wonder-Woman--2017---1080p-BDrip-x265-10bit-DTS-HD-MA-7-1---ArcX--TAoE--mkv","PublishDate":"2020-05-27T04:51:00","Category":[2040,100042],"Size":8708045824,"Files":null,"Grabs":null,"Description":null,"RageID":null,"TVDBId":null,"Imdb":null,"TMDb":null,"Seeders":2,"Peers":1,"BannerUrl":null,"InfoHash":null,"MagnetUri":"magnet:?xt=urn:btih:bb3b6501937a8c3c8ec3bcfc595402c728af1ff4&dn=Wonder Woman (2017) (1080p BDrip x265 10bit DTS-HD MA 7.1 - ArcX)[TAoE].mkv&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.demonii.si%3A1337%2Fannounce","MinimumRatio":1.0,"MinimumSeedTime":172800,"DownloadVolumeFactor":0.0,"UploadVolumeFactor":1.0,"Gain":16.219999313354492},{"FirstSeen":"0001-01-01T00:00:00","Tracker":"LimeTorrents","TrackerId":"limetorrents","CategoryDesc":"Movies","BlackholeLink":"http://127.0.0.1:9117/bh/limetorrents/?jackett_apikey=624v7b6vuzflripfsu80cb4tpa8u2h0y&path=Q2ZESjhGdHY2NGpyRTdoUG5rTlFvY05FQjBNMXNiSTVGUnVhNlFWdUw0cVpsVG1kUzltY3g4SlVSNWdrd2kwakxLLXlubFQwTERTSVNEdF84UENhRWZ3WG9wNVhsVERaNlFWY3lfeUFDZEZkSEg3NmFlZjNvWkxiSUVRYzZhckVuUC1sSUVNRXBPdmRHYjVCM2pHdF9la3ZvaENPT0dsZ1FlM2pFdHBERFQwdGZpRWFqeTRsTld5TDFsWVJjbXo0WmctdUs3T0ZwUTNWcTBvcEV3UndJS2NBaWRsTFVKS2VRcTVGemtEb1BoSDdlcVFnT2NqUlBxZjVIUEZjVFI1Wm9ZRFVxZw&file=Wonder+Woman+2017+1080+BRRip+x264+DTS+ESub++NextBit","Title":"Wonder Woman 2017 1080 BRRip x264 DTS ESub NextBit","Guid":"https://www.limetorrents.info/Wonder-Woman-2017-1080-BRRip-x264-DTS-ESub--NextBit-torrent-9707864.html","Link":"http://127.0.0.1:9117/dl/limetorrents/?jackett_apikey=624v7b6vuzflripfsu80cb4tpa8u2h0y&path=Q2ZESjhGdHY2NGpyRTdoUG5rTlFvY05FQjBPV3RJNWJhZlhQMWZoSExUeTFKV2xoQ3NfdkN2ZmxodklfbDByMTB2MS04OWx3UVVxdjQycjZobldMV09pckpUdm14Xy1ESjFTTm9xT2t1MUVvZ05sWEFjQXVOTUZNRkczS0ZHcEdzYVdWeHFvQndKekNYSzNaV1oxTDZ5Yy1BZ0xRYXptbVR3RnIwa3ROa0JMTU1ZMkV5MUdUYTlYd185MkhmUGtvbmFKc1p4V0dQM1oycTY5dnE5VzF3TjlGMlNScVBsZl90bXpEdUJzdURVZmtUSjFTbUxkZWk0a1hkRmRIMkk2WVJFaHdvZw&file=Wonder+Woman+2017+1080+BRRip+x264+DTS+ESub++NextBit","Comments":"https://www.limetorrents.info/Wonder-Woman-2017-1080-BRRip-x264-DTS-ESub--NextBit-torrent-9707864.html","PublishDate":"2019-07-18T23:58:04.3396995+09:00","Category":[2000],"Size":4015794432,"Files":null,"Grabs":null,"Description":null,"RageID":null,"TVDBId":null,"Imdb":null,"TMDb":null,"Seeders":4,"Peers":2,"BannerUrl":null,"InfoHash":null,"MagnetUri":null,"MinimumRatio":1.0,"MinimumSeedTime":172800,"DownloadVolumeFactor":0.0,"UploadVolumeFactor":1.0,"Gain":14.960000038146973}],"Indexers":[{"ID":"ettv","Name":"ETTV","Status":2,"Results":0,"Error":null},{"ID":"eztv","Name":"EZTV","Status":2,"Results":0,"Error":null},{"ID":"limetorrents","Name":"LimeTorrents","Status":2,"Results":1,"Error":null},{"ID":"rarbg","Name":"RARBG","Status":2,"Results":0,"Error":null},{"ID":"rutracker","Name":"RuTracker","Status":2,"Results":0,"Error":null},{"ID":"showrss","Name":"ShowRSS","Status":2,"Results":0,"Error":null},{"ID":"soundpark","Name":"SoundPark","Status":2,"Results":0,"Error":null},{"ID":"thepiratebay","Name":"The Pirate Bay","Status":2,"Results":0,"Error":null},{"ID":"torrentgalaxyorg","Name":"TorrentGalaxy.org","Status":2,"Results":2,"Error":null},{"ID":"zooqle","Name":"Zooqle","Status":2,"Results":0,"Error":null}]} [ 2020-07-17 14:58:10.727526 ] :: ERR :: Could not fetch torrent url: No connection adapters were found for 'magnet:?xt=urn:btih:4132e6c62ff5f07f2e20e5e1f5490ee233954613&dn=Wonder Woman (2017) (1080p BDrip x265 10bit EAC3 5.1 - ArcX)[TAoE].mkv&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fipv4.tracker.harry.lu%3A80%2Fannounce&tr=udp%3A%2F%2Fopen.stealth.si%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.demonii.si%3A1337%2Fannounce'

I double checked by deluge config. Looks like at some point, I did put in an auth file that has a username and password properly... so that's not it. Lol.

trip5 commented 4 years ago

And for good measure, tried it will Qbittorrent on 6880 and 6881 also. Same error in the log.