2018-02-02 14:50:36 +00:00
---
2020-05-11 19:59:28 +00:00
id : torrentland
2020-05-10 20:05:19 +00:00
name : Torrentland
description : "Torrentland is a SPANISH Private Torrent Tracker for MOVIES / TV / GENERAL"
language : es-es
type : private
encoding : UTF-8
links :
- https://torrentland.li/
2018-02-02 14:50:36 +00:00
2020-05-10 20:05:19 +00:00
caps :
categorymappings :
2021-03-09 01:53:32 +00:00
- {id: 1, cat: Movies, desc : "Películas" }
- {id: 2, cat: TV, desc : "Series" }
- {id: 3, cat: TV/Anime, desc : "Animación" }
- {id: 4, cat: TV/Anime, desc : "Series Animación" }
- {id: 5, cat: TV/Documentary, desc : "Documentales" }
- {id: 6, cat: TV/Documentary, desc : "Series Documentales" }
- {id: 7, cat: TV/Sport, desc : "Deportes" }
- {id: 8, cat: Audio/Video, desc : "Videos Músicales" }
- {id: 9, cat: XXX, desc : "+18" }
- {id: 10, cat: Other, desc : "Otros" }
2020-03-09 18:42:24 +00:00
2020-05-10 20:05:19 +00:00
modes :
2020-10-19 03:56:16 +00:00
search : [ q]
2021-03-09 01:53:32 +00:00
tv-search : [ q, season, ep, imdbid, tvdbid]
movie-search : [ q, imdbid, tmdbid]
2020-05-10 20:05:19 +00:00
music-search : [ q]
2020-10-17 04:50:47 +00:00
book-search : [ q]
2018-02-02 14:50:36 +00:00
2020-05-10 20:05:19 +00:00
settings :
- name : username
type : text
label : Username
- name : password
type : password
label : Password
2020-09-15 06:38:07 +00:00
- name : freeleech
type : checkbox
2021-03-09 01:53:32 +00:00
label : Search freeleech only
2020-09-15 06:38:07 +00:00
default : false
2020-05-10 20:05:19 +00:00
- name : sort
type : select
label : Sort requested from site
2021-03-09 01:53:32 +00:00
default : created_at
2020-05-10 20:05:19 +00:00
options :
2021-03-09 01:53:32 +00:00
created_at : created
seeders : seeders
size : size
name : title
2020-05-10 20:05:19 +00:00
- name : type
type : select
label : Order requested from site
2021-03-09 01:53:32 +00:00
default : desc
2020-05-10 20:05:19 +00:00
options :
2021-03-09 01:53:32 +00:00
desc : desc
asc : asc
2020-01-08 07:15:39 +00:00
2020-05-10 20:05:19 +00:00
login :
2021-03-09 01:53:32 +00:00
path : login
method : form
form : form[action$="/login"]
2020-05-10 20:05:19 +00:00
inputs :
2021-03-09 01:53:32 +00:00
username : "{{ .Config.username }}"
password : "{{ .Config.password }}"
remember : on
selectorinputs :
_token :
selector : input[name="_token"]
attribute : value
2020-05-10 20:05:19 +00:00
error :
2021-03-09 01:53:32 +00:00
- selector : div#ERROR_COPY
# test:
# path: /
# selector: a[href$="/logout"]
2020-05-10 20:05:19 +00:00
search :
2021-03-09 01:53:32 +00:00
paths :
# https://torrentland.li/torrents/filter?
# search=&description=&keywords=&uploader=&imdb=&tvdb=&view=list&tmdb=&mal=&igdb=
# &start_year=&end_year=&categories%5B%5D=3&sorting=seeders&direction=asc&page=0&qty=25
- path : torrents/filter
inputs :
$raw : "{{ range .Categories }}categories[]={{.}}&{{end}}"
search : "{{ if .Query.IMDBID }}{{ else }}{{ .Keywords }}{{ end }}" # for dashboard imdbid search
description : ""
keywords : ""
uploader : ""
imdb : "{{ .Query.IMDBIDShort }}"
tvdb : "{{ .Query.TVDBID }}"
tmdb : "{{ .Query.TMDBID }}"
mal : ""
igdb : ""
start_year : ""
end_year : ""
sorting : "{{ .Config.sort }}"
direction : "{{ .Config.type }}"
qty : 100
page : 0
view : list
freeleech : "{{ if .Config.freeleech }}1{{ else }}{{ end }}"
2020-05-10 20:05:19 +00:00
keywordsfilters :
- name : re_replace
args : [ "(?i)\\bS(\\d+)" , "T$1" ]
2019-12-21 03:04:40 +00:00
2020-05-10 20:05:19 +00:00
rows :
2021-03-09 01:53:32 +00:00
selector : table > tbody > tr
2019-12-21 03:04:40 +00:00
2020-05-10 20:05:19 +00:00
fields :
category :
2021-03-09 01:53:32 +00:00
selector : td.category-col div:nth-child(2)
case :
"span:contains(\"Películas\")": 1
"span:contains(\"Series\")": 2
"span:contains(\"Animación\")": 3
"span:contains(\"Series Animación\")": 4
"span:contains(\"Documentales\")": 5
"span:contains(\"Series Documentales\")": 6
"span:contains(\"Deportes\")": 7
"span:contains(\"Videos Músicales\")": 8
"span:contains(\"+18\")": 9
"span:contains(\"Otros\")": 10
2020-05-10 20:05:19 +00:00
title :
2021-03-09 01:53:32 +00:00
selector : a[href*="/torrents/"]:contains("VOSE")
2020-05-10 20:05:19 +00:00
optional : true
filters :
- name : re_replace
args : [ "(?i)\\bT(\\d+)" , "S$1" ]
2020-11-09 01:20:15 +00:00
- name : re_replace
args : [ "UHDRip" , "BDRip" ] # Fix for Radarr
2020-05-10 20:05:19 +00:00
- name : append
2020-11-09 01:20:15 +00:00
args : " ENGLiSH"
2020-05-10 20:05:19 +00:00
title :
2021-03-09 01:53:32 +00:00
selector : a[href*="/torrents/"]:not(:contains("VOSE"))
2020-05-10 20:05:19 +00:00
optional : true
filters :
- name : re_replace
args : [ "(?i)\\bT(\\d+)" , "S$1" ]
2020-11-09 01:20:15 +00:00
- name : re_replace
args : [ "UHDRip" , "BDRip" ] # Fix for Radarr
2020-05-10 20:05:19 +00:00
- name : append
2020-11-09 01:20:15 +00:00
args : " SPANiSH"
2021-03-09 01:53:32 +00:00
download :
selector : a[href*="/download/"]
2020-05-10 20:05:19 +00:00
attribute : href
2021-03-09 01:53:32 +00:00
details :
selector : a[href*="/torrents/"]
2020-05-10 20:05:19 +00:00
attribute : href
2021-03-09 01:53:32 +00:00
poster :
selector : div.torrent-poster img
attribute : src
2020-05-10 20:05:19 +00:00
filters :
2021-03-09 01:53:32 +00:00
- name : replace
args : [ "&w=52&h=80" , "&w=180&h=270" ] # for display on dashboard
- name : replace
args : [ "https://images.weserv.nl/?url=https://via.placeholder.com/52x80&w=180&h=270" , "" ]
2021-04-19 06:09:01 +00:00
- name : replace
args : [ "https://images.weserv.nl/?url=https://via.placeholder.com/600x900&w=180&h=270" , "" ]
2020-05-10 20:05:19 +00:00
size :
2021-03-09 01:53:32 +00:00
selector : td:nth-last-child(4)
2020-05-10 20:05:19 +00:00
seeders :
2021-03-09 01:53:32 +00:00
selector : td:nth-last-child(3)
2020-05-10 20:05:19 +00:00
leechers :
2021-03-09 01:53:32 +00:00
selector : td:nth-last-child(2)
2020-05-10 20:05:19 +00:00
grabs :
2021-03-09 01:53:32 +00:00
selector : td:nth-last-child(1)
2020-05-10 20:05:19 +00:00
filters :
2021-03-09 01:53:32 +00:00
- name : regexp
args : (\d+)
imdb :
selector : a[href*="imdb.com/title/tt"]
attribute : href
tmdbid :
selector : a[href*="themoviedb.org/movie/"]
attribute : href
2020-05-10 20:05:19 +00:00
date :
2021-03-09 01:53:32 +00:00
selector : time
2020-05-10 20:05:19 +00:00
filters :
2021-03-09 01:53:32 +00:00
# translations for Turkish|Estonian|Danish|Italian|Polish|Norwegian|Portuguese|Czech|Russian|Romanian|Spanish|French|German|Bulgarian|Dutch|Chinese|Japanese|Swedish
- name : re_replace
args : [ "(?i)(önce|tagasi|geleden|fa|temu|siden|há|atrás|nazpět|назад|acum|în urmă|hace|il y a|vor|преди|前|sedan)" , " ago" ]
- name : re_replace
args : [ "(?i)(saniye|sekundit|sekunder|secondi|sekund|segundos|sekundami|секунд|secunde|secondes|Sekunden|секунди|seconden|秒前)" , "seconds" ]
- name : re_replace
args : [ "(?i)(minutit|minutter|minuti|minuty|minutos|минуты|минут|Minuten|минути|minuten|minuter)" , "minutes" ]
- name : re_replace
args : [ "(?i)(dakika|minut|minuto|minuta|minutt|минута|Minute|minuut|分钟|分)" , " minute" ]
- name : re_replace
args : [ "(?i)(tundi|timer|ore|godziny|horas|hodiny|hoden|часа|часов|ore|heures|Stunden|timmar)" , "hours" ]
- name : re_replace
args : [ "(?i)(saat|tund|time|ora|godzina|hora|hodina|час|oră|heure|Stunde|uur|小时|時間|timme)" , " hour" ]
- name : re_replace
args : [ "(?i)(päeva|dage|giorni|dni|dias|dny|дня|дней|zile|días|jours|Tagen|дни|dagen|dagar)" , "days" ]
- name : re_replace
args : [ "(?i)(gün|päev|dag|giorno|dzień|dia|den|день|zi|día|jour|Tag|ден|天|日)" , " day" ]
- name : re_replace
args : [ "(?i)(nädalat|uger|settimane|tygodnie|uker|semanas|týdny|недели|недель|săptămâni|semaines|Wochen|седмици|weken|veckor)" , "weeks" ]
- name : re_replace
args : [ "(?i)(hafta|nädal|uge|settimana|tydzień|uke|semana|týden|неделю|săptămână|semaine|Woche|седмица|周|週間|vecka)" , " week" ]
- name : re_replace
args : [ "(?i) (ay)" , "month" ]
- name : re_replace
args : [ "(?i)(kuud|måneder|mesi|miesiące|meses|měsíce|месяца|месяцев|luni|meses|mois|Monaten|месеца|maanden|månader)" , "months" ]
- name : re_replace
args : [ "(?i)(kuu|måned|mese|miesiąc|mês|měsíc|месяц|lună|mes|Monat|месец|maand|个月|ヶ月|månad)" , " month" ]
- name : re_replace
args : [ "(?i)(aastat|anni|lata|anos|roky|года|ani|años|ans|Jahren|години)" , " years" ]
- name : re_replace
args : [ "(?i)(yil|aasta|år|anno|rok|ano|год|año|Jahr|година|jaar|年)" , " year" ]
- name : re_replace
args : [ "(?i) (an)" , "year" ]
- name : re_replace
args : [ "(?i)(För |und)" , "" ] # Misc removals
- name : timeago
2020-05-10 20:05:19 +00:00
downloadvolumefactor :
2021-03-09 01:53:32 +00:00
case :
i[class*="fa-id-badge text-orange"]: 0 # 24 Hour FreeLeech From BON Store
i[class*="fa-trophy text-purple"]: 0 # Special FreeLeech For Certain User Groups
i[class*="fa-star text-bold"]: 0 # Freeleech From Token
i[class*="fa-coins text-bold"]: 0 # Freeleech From Token
i[class*="fa-globe text-blue"]: 0 # Global Freeleech
i[class*="fa-star text-gold"]: 0 # Freeleech
i[class*="fa-certificate text-pink"]: 0 # Featured Torrent
"*": 1
2020-05-10 20:05:19 +00:00
uploadvolumefactor :
case :
2021-03-09 01:53:32 +00:00
i[class*="fa-gem text-green"]: 2 # Single Torrent Double Upload
i[class*="fa-globe text-green"]: 2 # Global Double Upload
i[class*="fa-certificate text-pink"]: 2 # Featured Torrent
2020-05-10 20:05:19 +00:00
"*": 1
2020-09-15 06:38:07 +00:00
minimumratio :
text : 1.0
minimumseedtime :
# 4 days (as seconds = 4 x 24 x 60 x 60)
text : 345600
2021-03-09 01:53:32 +00:00
# UNIT3D 5.1.0 custom