mirror of
https://github.com/Jackett/Jackett
synced 2025-03-10 06:03:09 +00:00
spacetorrent: add freeleech filter #9456
This commit is contained in:
parent
284dc04c88
commit
f94566b628
1 changed files with 27 additions and 7 deletions
|
@ -24,20 +24,32 @@ caps:
|
|||
movie-search: [q]
|
||||
music-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
|
||||
|
||||
login:
|
||||
method: post
|
||||
path: ajax/takelogin.php
|
||||
inputs:
|
||||
snlo: "certified"
|
||||
snlo: certified
|
||||
username: "{{ .Config.username }}"
|
||||
password: "{{ .Config.password }}"
|
||||
returnto: "/my.php"
|
||||
returnto: "/recherche"
|
||||
test:
|
||||
path: my.php
|
||||
path: recherche
|
||||
selector: a[href="../logout"]
|
||||
|
||||
ratio:
|
||||
path: my.php
|
||||
path: recherche
|
||||
selector: a.nav-link i[class="ti-pulse"]
|
||||
|
||||
download:
|
||||
|
@ -45,12 +57,17 @@ download:
|
|||
attribute: href
|
||||
|
||||
search:
|
||||
# https://www.spacetorrent.cloud/recherche?advanced_search=true&advanced_search_term=&cat=0&freemium=1
|
||||
path: recherche
|
||||
inputs:
|
||||
search: "{{ .Keywords }}"
|
||||
advanced_search: true
|
||||
advanced_search_term: "{{ .Keywords }}"
|
||||
cat: 0
|
||||
freemium: "{{ if .Config.freeleech }}1{{ else }}{{ end }}"
|
||||
|
||||
rows:
|
||||
selector: table#table-1 tbody tr
|
||||
|
||||
fields:
|
||||
download:
|
||||
selector: a[href^="../torrent/"]
|
||||
|
@ -95,8 +112,11 @@ search:
|
|||
selector: td:nth-child(7)
|
||||
downloadvolumefactor:
|
||||
case:
|
||||
"i.fa-star": "0"
|
||||
"*": "1"
|
||||
"i.fa-star": 0
|
||||
"*": 1
|
||||
uploadvolumefactor:
|
||||
text: 1
|
||||
minimumseedtime:
|
||||
# 1 day (as seconds = 24 x 60 x 60)
|
||||
text: 86400
|
||||
# engine n/a
|
||||
|
|
Loading…
Add table
Reference in a new issue