PowderPlayer
PowderPlayer copied to clipboard
[Feature Request] In App Torrent Search Using Jackett API
trafficstars
Can you please add Jackett API support to search for torrents, it uses the Torznab protocol.
Torznab example:
GET http://servername.com/api?t=tvsearch&apikey=xxxq=The%20Beverly%20Hillbillies&season=S01

Also the following may be helpful:
- ResultsController.cs is where the query endpoints are located (Potato and Torznab actions)
- Torznab action returns XML and accepts TorznabRequest as an argument
- Potato action returns JSON and accepts TorrentPotatoRequest as an argument
- To view configured trackers one can issue the following request: http://127.0.0.1:9117/api/v2.0/indexers/all/results/torznab/api?apikey=[APIKEY]&t=indexers&configured=true
- To query all configured trackers one can issue the following request: http://localhost:9117/api/v2.0/indexers/all/results/torznab/api?apikey=[APIKEY]&q=hackers%201995
Example, search plygin used by qbittorrent: https://raw.githubusercontent.com/hannsen/qbittorrent_search_plugins/master/jackett.py
Thanks
https://github.com/Jackett/Jackett
Lol, I know Jackett, already implemented it in a different project: https://github.com/jaruba/PowderWeb
Amazing work on the details of this request though, I can add support for it, sure.
Thanks