Crate torznab_toolkit

Source
Expand description

Links:

§Torznab Toolkit

A safe, multi-threaded, async toolkit for adding Torznab APIs to programs. You just focus on the indexer itself, we abstract away the hell that is the Torznab API.

Just fill in your own relevant functions and config (Config), and torznab-toolkit will run the API for you

use torznab_toolkit;
let config: torznab_toolkit::data::Config = /* config goes here */

torznab_toolkit::run(config).await.unwrap();

To configure what it listens on, just change ROCKET_ADDRESS and ROCKET_PORT; see the relevant docs for details.


This program is brought to you by: metaphorical and literal truckloads of structs!

Note: I wrote the line above when I was tired. Don’t ask me what literal truckloads of structs means, I don’t know either.

§Functionality

API callExplanationImplemented
capsReturns the capabilities of the api.
searchFree text search query.
tvsearchSearch query with tv specific query params and filtering.
movieSearch query with movie specific query params and filtering.
musicSearch query with music specific query params and filtering.
bookSearch query with book specific query params and filtering.

(copied from torznab.github.io)

§Limitations

  • Currently this does not allow for returning errors from the program using the library, such as API limits for an account.
  • Currently this does not allow for requiring authentication for caps; it’s against spec (not that that’s worth much), but common and perfectly fine to do.

§Notes

Thanks to torznab.github.io, as it’s my primary reference for this; NZBDrone’s Implementing a Torznab indexer was also rather helpful.

Modules§

data
Contains tons of structs used by the library
notes
Notes regarding the usage of torznab-toolkit and how it implements the Torznab API.

Functions§

run
Runs the server