2019-07-24 05:29:38 +00:00
---
2020-05-11 19:59:28 +00:00
id : esharenet
2020-05-10 20:05:19 +00:00
name : eShareNet
2021-09-07 23:09:51 +00:00
description : "eShareNet is a Private Tracker for British MOVIE / TV"
language : en-GB
2020-05-10 20:05:19 +00:00
type : private
encoding : UTF-8
links :
- https://esharenet.eu/
2019-07-24 05:29:38 +00:00
2020-05-10 20:05:19 +00:00
caps :
categorymappings :
- {id: 2, cat: TV, desc : "Comedy" }
- {id: 4, cat: TV, desc : "Entertainment" }
- {id: 5, cat: TV, desc : "Game Shows" }
- {id: 6, cat: TV, desc : "Motoring" }
- {id: 7, cat: TV, desc : "News and Current Affairs" }
- {id: 8, cat: TV, desc : "Sci-Fi" }
- {id: 9, cat: TV, desc : "Talkshow" }
- {id: 10, cat: TV, desc : "Advertisements - Continuity" }
- {id: 11, cat: TV, desc : "Comedy-Drama" }
- {id: 12, cat: TV, desc : "Fantasy" }
- {id: 13, cat: TV, desc : "Home and Property" }
- {id: 14, cat: Movies, desc : "Movies" }
- {id: 15, cat: Other, desc : "Other" }
- {id: 16, cat: TV, desc : "Soaps" }
- {id: 17, cat: TV, desc : "Trains and Planes" }
- {id: 18, cat: TV, desc : "Animation" }
- {id: 19, cat: TV/Documentary, desc : "Documentaries" }
- {id: 20, cat: TV, desc : "Food and Cooking" }
- {id: 21, cat: TV, desc : "Horror" }
- {id: 22, cat: Audio, desc : "Music" }
- {id: 23, cat: Audio, desc : "Radio" }
- {id: 24, cat: TV/Sport, desc : "Sport" }
- {id: 25, cat: TV, desc : "True Crime" }
- {id: 26, cat: Audio/Audiobook, desc : "Audiobook and E-book" }
- {id: 27, cat: TV, desc : "Drama" }
- {id: 28, cat: TV, desc : "Kids" }
- {id: 29, cat: TV, desc : "Mystery and Crime Fiction" }
- {id: 30, cat: TV, desc : "Reality" }
- {id: 31, cat: TV, desc : "Subtitles - english subs" }
2019-07-24 05:29:38 +00:00
2020-05-10 20:05:19 +00:00
modes :
2020-10-19 03:56:16 +00:00
search : [ q]
2022-06-12 07:58:12 +00:00
tv-search : [ q, season, ep, imdbid, tvdbid, tmdbid]
2020-11-13 20:13:41 +00:00
movie-search : [ q, imdbid, tmdbid]
2020-05-10 20:05:19 +00:00
music-search : [ q]
2019-07-24 05:29:38 +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-08 21:29:06 +00:00
- name : freeleech
type : checkbox
label : Search freeleech only
default : false
2020-05-10 20:05:19 +00:00
- name : sort
type : select
label : Sort requested from site
2020-10-23 08:32:22 +00:00
default : created_at
2020-05-10 20:05:19 +00:00
options :
2020-10-23 08:32:22 +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
2020-10-23 08:32:22 +00:00
default : desc
2020-05-10 20:05:19 +00:00
options :
2020-10-23 08:32:22 +00:00
desc : desc
asc : asc
2019-12-16 03:14:59 +00:00
2020-05-10 20:05:19 +00:00
login :
path : login
method : form
form : form[action$="/login"]
inputs :
username : "{{ .Config.username }}"
password : "{{ .Config.password }}"
remember : on
selectorinputs :
_token :
selector : input[name="_token"]
attribute : value
error :
2020-06-03 20:58:45 +00:00
- selector : div#ERROR_COPY
2020-03-25 03:30:52 +00:00
# test:
# path: /
# selector: a[href$="/logout"]
2019-07-24 05:29:38 +00:00
2020-05-10 20:05:19 +00:00
search :
paths :
2020-06-03 20:58:45 +00:00
- path : torrents/filter
2020-05-10 20:05:19 +00:00
inputs :
$raw : "{{ range .Categories }}categories[]={{.}}&{{end}}"
2020-11-13 20:13:41 +00:00
search : "{{ if .Query.IMDBID }}{{ else }}{{ .Keywords }}{{ end }}" # for dashboard imdbid search
2020-05-10 20:05:19 +00:00
description : ""
uploader : ""
imdb : "{{ .Query.IMDBIDShort }}"
2020-11-13 20:13:41 +00:00
tvdb : "{{ .Query.TVDBID }}"
tmdb : "{{ .Query.TMDBID }}"
2020-05-10 20:05:19 +00:00
mal : ""
igdb : ""
2020-11-13 20:13:41 +00:00
start_year : ""
end_year : ""
2020-05-10 20:05:19 +00:00
sorting : "{{ .Config.sort }}"
direction : "{{ .Config.type }}"
qty : 50
2020-11-13 20:13:41 +00:00
page : 0
view : list
2020-09-08 21:29:06 +00:00
freeleech : "{{ if .Config.freeleech }}1{{ else }}{{ end }}"
2022-08-05 04:35:41 +00:00
# can search by genre but need range support. &genres[]=Action&genres[]=Comedy for Action and Comedy
2019-12-16 03:14:59 +00:00
2020-05-10 20:05:19 +00:00
rows :
selector : table > tbody > tr
2019-12-16 03:14:59 +00:00
2020-05-10 20:05:19 +00:00
fields :
category :
selector : a[href*="/categories/"]
attribute : href
filters :
- name : regexp
2020-06-03 20:58:45 +00:00
args : "/categories/(\\d+)"
2020-05-10 20:05:19 +00:00
title :
selector : a.view-torrent
download :
selector : a[href*="/download/"]
attribute : href
details :
selector : a.view-torrent
attribute : href
2020-11-07 23:43:33 +00:00
poster :
2020-05-10 20:05:19 +00:00
selector : div.torrent-poster img
attribute : src
filters :
2020-11-13 20:13:41 +00:00
- name : prepend
args : "https://images.weserv.nl/?url=" # for display on dashboard
- name : append
args : "&w=180&h=270" # for display on dashboard
2020-05-10 20:05:19 +00:00
- name : replace
2020-11-13 20:13:41 +00:00
args : [ "https://images.weserv.nl/?url=https://via.placeholder.com/600x900&w=180&h=270" , "" ]
2022-08-05 04:35:41 +00:00
genre :
selector : td:nth-last-child(8)
filters :
- name : replace
args : [ "\n" , "" ]
2022-08-06 00:36:02 +00:00
- name : re_replace
args : [ "(?i)(Science Fiction)" , "Science_Fiction" ]
2022-08-05 04:35:41 +00:00
- name : validate
2022-08-06 00:36:02 +00:00
args : "Action, Adventure, Animation, Biography, Comedy, Crime, Documentary, Drama, Family, Fantasy, Game-Show, History, Horror, Music, Musical, Mystery, News, Reality-TV, Romance, Science_Fiction, Sitcom, Sport, Talk-Show, Thriller, War, Western"
2022-08-05 04:35:41 +00:00
description :
text : "{{ .Result.genre }}"
2020-05-10 20:05:19 +00:00
size :
selector : td:nth-last-child(4)
seeders :
selector : td:nth-last-child(3)
leechers :
selector : td:nth-last-child(2)
grabs :
selector : td:nth-last-child(1)
2021-10-21 16:49:46 +00:00
imdbid :
2020-05-25 03:17:44 +00:00
selector : a[href*="imdb.com/title/tt"]
2020-05-10 20:05:19 +00:00
attribute : href
2020-11-13 20:13:41 +00:00
tmdbid :
2022-07-01 07:48:00 +00:00
selector : a[href*="themoviedb.org/movie/"], a[href*="themoviedb.org/tv/"]
2020-11-13 20:13:41 +00:00
attribute : href
2020-05-10 20:05:19 +00:00
date :
selector : time
filters :
2020-11-09 00:45:32 +00:00
# translations for Turkish|Estonian|Danish|Italian|Polish|Norwegian|Portuguese|Czech|Russian|Romanian|Spanish|French|German|Bulgarian|Dutch|Chinese|Japanese|Swedish
2020-05-10 20:05:19 +00:00
- name : re_replace
2020-11-09 00:45:32 +00:00
args : [ "(?i)(önce|tagasi|geleden|fa|temu|siden|há|atrás|nazpět|назад|acum|în urmă|hace|il y a|vor|преди|前|sedan)" , " ago" ]
2020-10-03 21:33:27 +00:00
- name : re_replace
args : [ "(?i)(saniye|sekundit|sekunder|secondi|sekund|segundos|sekundami|секунд|secunde|secondes|Sekunden|секунди|seconden|秒前)" , "seconds" ]
2020-05-10 20:05:19 +00:00
- name : re_replace
2020-11-09 00:45:32 +00:00
args : [ "(?i)(minutit|minutter|minuti|minuty|minutos|минуты|минут|Minuten|минути|minuten|minuter)" , "minutes" ]
2020-05-10 20:05:19 +00:00
- name : re_replace
2020-07-28 05:07:57 +00:00
args : [ "(?i)(dakika|minut|minuto|minuta|minutt|минута|Minute|minuut|分钟|分)" , " minute" ]
2020-05-10 20:05:19 +00:00
- name : re_replace
2020-11-09 00:45:32 +00:00
args : [ "(?i)(tundi|timer|ore|godziny|horas|hodiny|hoden|часа|часов|ore|heures|Stunden|timmar)" , "hours" ]
2020-05-10 20:05:19 +00:00
- name : re_replace
2020-11-09 00:45:32 +00:00
args : [ "(?i)(saat|tund|time|ora|godzina|hora|hodina|час|oră|heure|Stunde|uur|小时|時間|timme)" , " hour" ]
2020-05-10 20:05:19 +00:00
- name : re_replace
2020-11-09 00:45:32 +00:00
args : [ "(?i)(päeva|dage|giorni|dni|dias|dny|дня|дней|zile|días|jours|Tagen|дни|dagen|dagar)" , "days" ]
2020-05-10 20:05:19 +00:00
- name : re_replace
2020-07-28 05:07:57 +00:00
args : [ "(?i)(gün|päev|dag|giorno|dzień|dia|den|день|zi|día|jour|Tag|ден|天|日)" , " day" ]
2020-05-10 20:05:19 +00:00
- name : re_replace
2020-11-09 00:45:32 +00:00
args : [ "(?i)(nädalat|uger|settimane|tygodnie|uker|semanas|týdny|недели|недель|săptămâni|semaines|Wochen|седмици|weken|veckor)" , "weeks" ]
2020-05-10 20:05:19 +00:00
- name : re_replace
2020-11-09 00:45:32 +00:00
args : [ "(?i)(hafta|nädal|uge|settimana|tydzień|uke|semana|týden|неделю|săptămână|semaine|Woche|седмица|周|週間|vecka)" , " week" ]
2020-05-10 20:05:19 +00:00
- name : re_replace
args : [ "(?i) (ay)" , "month" ]
- name : re_replace
2020-11-09 00:45:32 +00:00
args : [ "(?i)(kuud|måneder|mesi|miesiące|meses|měsíce|месяца|месяцев|luni|meses|mois|Monaten|месеца|maanden|månader)" , "months" ]
2020-05-10 20:05:19 +00:00
- name : re_replace
2020-11-09 00:45:32 +00:00
args : [ "(?i)(kuu|måned|mese|miesiąc|mês|měsíc|месяц|lună|mes|Monat|месец|maand|个月|ヶ月|månad)" , " month" ]
2020-05-10 20:05:19 +00:00
- 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" ]
2020-11-09 00:45:32 +00:00
- name : re_replace
args : [ "(?i)(För |und)" , "" ] # Misc removals
2020-11-10 03:59:59 +00:00
- name : timeago
2020-05-10 20:05:19 +00:00
downloadvolumefactor :
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
uploadvolumefactor :
case :
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
"*": 1
2020-11-13 20:13:41 +00:00
minimumratio :
text : 0.4
2020-07-31 05:04:39 +00:00
minimumseedtime :
# 3 days (as seconds = 3 x 24 x 60 x 60)
text : 259200
2020-07-29 21:53:23 +00:00
# UNIT3D 2.5.0