mirror of
https://github.com/Jackett/Jackett
synced 2025-01-02 13:16:16 +00:00
uniotaku: remove obsolete yml indexer which need rewriting in c# #8340
This commit is contained in:
parent
fe57b76352
commit
7c4adf67f9
3 changed files with 1 additions and 108 deletions
|
@ -208,7 +208,6 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* Torrents-Local
|
||||
* TribalMixes
|
||||
* Union Fansub
|
||||
* UniOtaku
|
||||
* YggTorrent (YGG)
|
||||
* Ztracker
|
||||
</details>
|
||||
|
|
|
@ -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
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue