Updated How to request a new tracker (markdown)

ilike2burnthing 2022-05-18 03:37:55 +01:00
parent 0c898ec6d2
commit b09886643f
1 changed files with 4 additions and 4 deletions

@ -3,15 +3,15 @@ If you want to request a new Indexer for a web site just use the indexer-request
Notes:
- If the site is private and subscriptions are closed, we will need an invite to be able to work.
So please, get an invite and be ready to invite the staff member who will implement it.
- If the Private site has open registration then include this info in the ticket.
- If the Private site has open registration, then include this info in the ticket.
- The site must provide .torrent and/or magnet.
#### What makes a Site suitable (or not suitable) for Indexing:
- Sites that only provide direct downloads to browser, or direct play/view, or redirection links to file storage sites or paywall services, are not suitable for use with a Jackett indexer.
- On the site's search results page:
- If there are titles (or posters) for each torrent/magnet , then we can usually code an indexer in yaml using the Cardigann processor.
- If there are titles (or posters) for each torrent/magnet, then we can usually code an indexer in yaml using the Cardigann processor.
- If there are titles (or posters) with groups of related torrents/magnets, then the indexer can usually be coded in C#.
- However, if there are only titles (or posters), and you have to navigate to the corresponding details page to find the multiple torrent/magnets, then these sites are not suitable for indexing. This is because for the indexer to complete the torrent search results, Jackett would need to fetch the details page for every title in the search results page, (potentially up to 100 pages), and no site is going to want that kind of bulk traffic, its a quick way to get your IP banned for bot activity, especially if teamed with automation software like Sonarr or Radarr.
- However, if there are only titles (or posters), and you have to navigate to the corresponding details page to find the multiple torrent/magnets, then these sites are not suitable for indexing. This is because for the indexer to complete the torrent search results, Jackett would need to fetch the details page for every title in the search results page, (potentially up to 100 pages), and no site is going to want that kind of bulk traffic, it's a quick way to get your IP banned for bot activity, especially if teamed with automation software like Sonarr or Radarr.
- If the site supports an API:
- then this is preferred over the other method, HTML scraping.
- If the API returns JSON or XML then in most cases we can write the indexer in yaml.
@ -19,5 +19,5 @@ So please, get an invite and be ready to invite the staff member who will implem
- If an API is not available:
- then as long as the site's results page is all HTML then yaml can be used.
- However, if the search page comprises results that are dynamically generated via calls to JavaScript functions, then C# will be needed.
- Yaml indexers are simple to write and maintain, and usually the turn around from request to implementation is fairly short.
- Yaml indexers are simple to write and maintain, and usually the turnaround from request to implementation is fairly short.
- C# indexers do not have a quick turn around from request to implementation, due to the fact that C# developers are scarce and/or busy on other projects.