mirror of
https://github.com/Jackett/Jackett
synced 2025-03-10 06:03:09 +00:00
add theleachzone a private site. resolves #11185
This commit is contained in:
parent
2a9bbc70bd
commit
612a8c6b41
2 changed files with 162 additions and 0 deletions
|
@ -495,6 +495,7 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
||||||
* The Vault [![(invite needed)][inviteneeded]](#)
|
* The Vault [![(invite needed)][inviteneeded]](#)
|
||||||
* TheAudioScene
|
* TheAudioScene
|
||||||
* TheEmpire (TE) [![(invite needed)][inviteneeded]](#)
|
* TheEmpire (TE) [![(invite needed)][inviteneeded]](#)
|
||||||
|
* TheLeachZone
|
||||||
* TJUPT
|
* TJUPT
|
||||||
* TLFBits [![(invite needed)][inviteneeded]](#)
|
* TLFBits [![(invite needed)][inviteneeded]](#)
|
||||||
* ToTheGlory (TTG)
|
* ToTheGlory (TTG)
|
||||||
|
|
161
src/Jackett.Common/Definitions/theleachzone.yml
Normal file
161
src/Jackett.Common/Definitions/theleachzone.yml
Normal file
|
@ -0,0 +1,161 @@
|
||||||
|
---
|
||||||
|
id: theleachzone
|
||||||
|
name: TheLeachZone
|
||||||
|
description: "The Leach Zone is a Private Torrent Tracker for MOVIES / TV / GENERAL"
|
||||||
|
language: en-us
|
||||||
|
type: private
|
||||||
|
encoding: UTF-8
|
||||||
|
links:
|
||||||
|
- https://tlz.digital/
|
||||||
|
|
||||||
|
caps:
|
||||||
|
categorymappings:
|
||||||
|
- {id: 21, cat: PC, desc: "Appz"}
|
||||||
|
- {id: 22, cat: PC/Games, desc: "Games"}
|
||||||
|
- {id: 23, cat: Other, desc: "Misc."}
|
||||||
|
- {id: 24, cat: Movies/SD, desc: "Movies SD"}
|
||||||
|
- {id: 11, cat: Movies/HD, desc: "Movies HD"}
|
||||||
|
- {id: 3, cat: Movies, desc: "Movies Packs"}
|
||||||
|
- {id: 20, cat: Audio/Lossless, desc: "Music FLAC"}
|
||||||
|
- {id: 4, cat: Audio/Lossless, desc: "Music FLAC"}
|
||||||
|
- {id: 17, cat: Audio, desc: "Music Packs"}
|
||||||
|
- {id: 18, cat: TV/HD, desc: "TV HD"}
|
||||||
|
- {id: 16, cat: TV, desc: "TV Packs"}
|
||||||
|
- {id: 19, cat: TV/SD, desc: "TV SD"}
|
||||||
|
|
||||||
|
modes:
|
||||||
|
search: [q]
|
||||||
|
tv-search: [q, season, ep]
|
||||||
|
movie-search: [q]
|
||||||
|
music-search: [q]
|
||||||
|
book-search: [q]
|
||||||
|
|
||||||
|
settings:
|
||||||
|
- name: username
|
||||||
|
type: text
|
||||||
|
label: Username
|
||||||
|
- name: password
|
||||||
|
type: password
|
||||||
|
label: Password
|
||||||
|
- name: freeleech
|
||||||
|
type: checkbox
|
||||||
|
label: Search freeleech only
|
||||||
|
default: false
|
||||||
|
- name: sort
|
||||||
|
type: select
|
||||||
|
label: Sort requested from site
|
||||||
|
default: 4
|
||||||
|
options:
|
||||||
|
4: created
|
||||||
|
7: seeders
|
||||||
|
5: size
|
||||||
|
1: title
|
||||||
|
- name: type
|
||||||
|
type: select
|
||||||
|
label: Order requested from site
|
||||||
|
default: desc
|
||||||
|
options:
|
||||||
|
desc: desc
|
||||||
|
asc: asc
|
||||||
|
- name: info_tpp
|
||||||
|
type: info
|
||||||
|
label: Results Per Page
|
||||||
|
default: For best results, change the <b>Torrents per page:</b> setting to <b>100</b> on your account profile.
|
||||||
|
|
||||||
|
login:
|
||||||
|
path: login.php
|
||||||
|
method: form
|
||||||
|
form: form[action="takelogin.php"]
|
||||||
|
inputs:
|
||||||
|
username: "{{ .Config.username }}"
|
||||||
|
password: "{{ .Config.password }}"
|
||||||
|
use_ssl: 1
|
||||||
|
perm_ssl: ""
|
||||||
|
returnto: /
|
||||||
|
error:
|
||||||
|
- selector: table.main:contains("Login failed!")
|
||||||
|
message:
|
||||||
|
selector: table tr td.colhead2
|
||||||
|
test:
|
||||||
|
path: /
|
||||||
|
selector: a[href*="logout.php?hash_please="]
|
||||||
|
|
||||||
|
search:
|
||||||
|
paths:
|
||||||
|
# https://tlz.digital/browse.php?c21=1&c22=1&c23=1&search=&searchin=title&incldead=0&sort=4&type=desc
|
||||||
|
- path: browse.php
|
||||||
|
inputs:
|
||||||
|
$raw: "{{ range .Categories }}c{{.}}=1&{{end}}"
|
||||||
|
search: "{{ .Keywords }}"
|
||||||
|
# title, descr, genre, all
|
||||||
|
searchin: title
|
||||||
|
# 0 active, 1 incldead, 2 onlydead
|
||||||
|
incldead: 1
|
||||||
|
only_free: "{{ if .Config.freeleech }}1{{ else }}{{ end }}"
|
||||||
|
sort: "{{ .Config.sort }}"
|
||||||
|
type: "{{ .Config.type }}"
|
||||||
|
keywordsfilters:
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(\\w+)", " +$1"] # prepend + to each word
|
||||||
|
|
||||||
|
rows:
|
||||||
|
selector: table.table-bordered tr:has(a[href^="download.php?torrent="])
|
||||||
|
|
||||||
|
fields:
|
||||||
|
category:
|
||||||
|
selector: a[href^="browse.php?cat="]
|
||||||
|
attribute: href
|
||||||
|
filters:
|
||||||
|
- name: querystring
|
||||||
|
args: cat
|
||||||
|
title:
|
||||||
|
selector: a[href^="details.php?id="]
|
||||||
|
attribute: onmouseover
|
||||||
|
filters:
|
||||||
|
- name: regexp
|
||||||
|
args: "Tip\\('<b>(.+?)</b>"
|
||||||
|
download:
|
||||||
|
selector: a[href^="download.php?torrent="]
|
||||||
|
attribute: href
|
||||||
|
details:
|
||||||
|
selector: a[href^="details.php?id="]
|
||||||
|
attribute: href
|
||||||
|
files:
|
||||||
|
selector: td:nth-child(5)
|
||||||
|
date:
|
||||||
|
selector: td:nth-child(7):contains("day")
|
||||||
|
optional: true
|
||||||
|
filters:
|
||||||
|
- name: fuzzytime
|
||||||
|
date:
|
||||||
|
selector: td:nth-child(7):not(:contains("day"))
|
||||||
|
optional: true
|
||||||
|
filters:
|
||||||
|
- name: append
|
||||||
|
args: " +00:00" # auto adjusted by site account profile
|
||||||
|
- name: dateparse
|
||||||
|
args: "Jan 2 2006 03:04 PM -07:00"
|
||||||
|
size:
|
||||||
|
selector: td:nth-child(8)
|
||||||
|
grabs:
|
||||||
|
selector: td:nth-child(9)
|
||||||
|
filters:
|
||||||
|
- name: regexp
|
||||||
|
args: (\d+)
|
||||||
|
seeders:
|
||||||
|
selector: td:nth-child(10)
|
||||||
|
leechers:
|
||||||
|
selector: td:nth-child(11)
|
||||||
|
downloadvolumefactor:
|
||||||
|
case:
|
||||||
|
"a.info:contains(\"[FREE]\")": 0
|
||||||
|
"a.info:contains(\"[SILVER]\")": 0.5
|
||||||
|
"*": 1
|
||||||
|
uploadvolumefactor:
|
||||||
|
text: 1
|
||||||
|
minimumratio:
|
||||||
|
text: 1.0
|
||||||
|
minimumseedtime:
|
||||||
|
# 2 days (as seconds = 2 x 24 x 60 x 60)
|
||||||
|
text: 172800
|
||||||
|
# U-232 V5
|
Loading…
Add table
Reference in a new issue