sergiotapia / magnetissimo

Web application that indexes all popular torrent sites, and saves it to the local database.
MIT License
2.97k stars 186 forks source link

Torznab support #171

Open sergiotapia opened 6 months ago

sergiotapia commented 6 months ago

A very long time coming, this will allow Magnetissimo to communicate with Sonarr/Radarr and others through the torznab format.

sergiotapia commented 6 months ago

Torznab support is now live through the /api/ routes!

scope "/api", MagnetissimoWeb do
  pipe_through [:api]  

  get("/latest.xml", TorrentController, :latest_torznab)
  get("/search.xml", TorrentController, :search_torznab)
end

Before this get marked as completed, I need to make sure the Torznab data is ingested properly by Sonarr and Radarr.