diff --git a/README.md b/README.md index 415903364..3630eee9b 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,6 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * Torrents-Local * TribalMixes * Union Fansub - * UniOtaku * YggTorrent (YGG) * Ztracker diff --git a/src/Jackett.Common/Definitions/uniotaku.yml b/src/Jackett.Common/Definitions/uniotaku.yml deleted file mode 100644 index 927c2db94..000000000 --- a/src/Jackett.Common/Definitions/uniotaku.yml +++ /dev/null @@ -1,107 +0,0 @@ ---- -id: uniotaku -name: UniOtaku -description: "UniOtaku is a BRAZILIAN Semi-Private Torrent Tracker for ANIME" -language: pt-br -type: semi-private -encoding: UTF-8 -links: - - https://tracker.uniotaku.com/ - -caps: - categorymappings: - - {id: 28, cat: TV/Anime, desc: "Anime"} - - {id: 50, cat: TV/OTHER, desc: "Dorama"} - - {id: 49, cat: Books/Comics, desc: "Mangá"} - - {id: 48, cat: TV/Anime, desc: "OVA"} - - {id: 47, cat: TV/OTHER, desc: "Filme"} - - {id: 51, cat: Audio, desc: "OST"} - - {id: 52, cat: TV/Anime, desc: "Anime Completo"} - - {id: 53, cat: Books/Comics, desc: "Mangá Completo"} - - {id: 54, cat: TV/OTHER, desc: "Dorama Completo"} - - {id: 55, cat: XXX, desc: "Hentai"} - - {id: 56, cat: XXX/Other, desc: "H Doujinshi"} - - {id: 57, cat: TV/OTHER, desc: "Tokusatsu"} - - modes: - search: [q] - tv-search: [q, season, ep] - movie-search: [q] - music-search: [q] - -login: - path: account-login.php - method: post - inputs: - username: "{{ .Config.username }}" - password: "{{ .Config.password }}" - manter: 1 - error: - # this trap is not going to work because the error in posted in the index.php not on the account-login.php - - selector: span.text-red - test: - path: index.php - selector: a[href="account-logout.php"] - -download: - selector: a[href^="download.php?id="] - attribute: href - -search: - paths: - # https://tracker.uniotaku.com/torrents.php?categoria=0&grupo=0&status=0&busca= - - path: torrents.php - inputs: - # replace spaces with wildcard % - busca: "{{ re_replace .Keywords \"[\\s]+\" \"%\" }}" - # 0 all - grupo: 0 - # 0 all 1 gold 2 silver - status: 0 - - rows: - selector: table#data-table-torrents > tbody > tr - - fields: - title: - selector: a[href^="torrents-details.php?id="] - details: - selector: a[href^="torrents-details.php?id="] - attribute: href - download: - selector: a[href^="torrents-details.php?id="] - attribute: href - category: - selector: td:nth-child(2) - attribute: src - case: - "img[src$=\"/anime.png\"]": 28 - "img[src$=\"/dorama.png\"]": 50 - "img[src$=\"/manga.png\"]": 49 - "img[src$=\"/ova.png\"]": 48 - "img[src$=\"/filme.png\"]": 47 - "img[src$=\"/ost.png\"]": 51 - "img[src$=\"/completo.png\"]": 52 - "img[src$=\"/completo_m.png\"]": 53 - "img[src$=\"/completo_m.png\"]": 54 - "img[src$=\"/hentai.png\"]": 55 - "img[src$=\"/hdojinshi.png\"]": 56 - "img[src$=\"/tokusatsu.png\"]": 57 - date: - text: now - seeders: - selector: td:nth-child(4) - leechers: - selector: td:nth-child(5) - grabs: - selector: td:nth-child(6) - size: - selector: td:nth-child(7) - downloadvolumefactor: - case: - img[src="images/free.gif"]: 0 - img[src="images/silverdownload.gif"]: 0.5 - "*": 1 - uploadvolumefactor: - text: 1 -# engine n/a diff --git a/src/Jackett.Updater/Program.cs b/src/Jackett.Updater/Program.cs index 3ebd0261a..a85c05ab4 100644 --- a/src/Jackett.Updater/Program.cs +++ b/src/Jackett.Updater/Program.cs @@ -403,6 +403,7 @@ namespace Jackett.Updater "Definitions/u-torrents.yml", "Definitions/ultimategamerclub.yml", "Definitions/ultrahdclub.yml", + "Definitions/uniotaku.yml", "Definitions/utorrents.yml", // same as SzeneFZ now "Definitions/vanila.yml", "Definitions/waffles.yml",