mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-22 15:56:58 +00:00
Updated Implementing a Torznab indexer (markdown)
parent
91e4699b45
commit
e0f8bc00a1
1 changed files with 7 additions and 5 deletions
|
@ -63,6 +63,7 @@ It's recommended to keep those categories intact, Client applications can then q
|
|||
|
||||
Many torrent sites have their own rss categories starting at '1', it's recommended not to map these 1 to 1 on newznab categories but instead add 100000 to the number. That way it falls in the site specific range and does not interfere with the original newznab categories.
|
||||
The api should then alias all site-specific categories in one of the original newznab category.
|
||||
|
||||
For example, if you have category 10 as Blu-Ray 1080p TV, then releases in that category would use the torznab api cats 100010,5040,5000 (Site-specific, TV/HD, TV).
|
||||
Any query that includes any of those numbers in the `cat=` parameter would return those releases as results.
|
||||
Of course it's also allowed to omit the site-specific categories entirely, and map only on newznab categories.
|
||||
|
@ -121,11 +122,12 @@ Torznab defines a couple of attributes using the ```xmlns:torznab="http://torzna
|
|||
I'm keeping the list in the reference linked below, but here is a table with the torrent-specific stuff:
|
||||
```<torznab:attr name="seeders" value="1"/>```
|
||||
|
||||
All these attributes are optional, the bold ones are recommended.
|
||||
All these attributes are optional, the bold ones are recommended. Please note that this list consists of the attributes added to torznab, please check out the basic newznab attributes as well.
|
||||
|
||||
| Name | Type | Description |
|
||||
|:---------------------|:--------|:-----------------------------------------------|
|
||||
| type | string | series,movie,music,book (if unknown just omit) |
|
||||
| **size** | integer | size of the release in bytes |
|
||||
| **tvdbid** | integer | id for thetvdb.com |
|
||||
| rageid | integer | id for tvrage.com |
|
||||
| **tvmazeid** | integer | id for tvmaze.com |
|
||||
|
|
Loading…
Reference in a new issue