mirror of
https://github.com/Jackett/Jackett
synced 2025-03-09 13:52:03 +00:00
gaytorrents: add login error detection
add date TZ add engine tag
This commit is contained in:
parent
fcbd612299
commit
468667f238
1 changed files with 12 additions and 7 deletions
|
@ -69,18 +69,20 @@ login:
|
||||||
inputs:
|
inputs:
|
||||||
vb_login_username: "{{ .Config.username }}"
|
vb_login_username: "{{ .Config.username }}"
|
||||||
vb_login_password: "{{ .Config.password }}"
|
vb_login_password: "{{ .Config.password }}"
|
||||||
cookieuser: "1"
|
cookieuser: 1
|
||||||
do: "login"
|
do: login
|
||||||
|
error:
|
||||||
|
- selector: div.blockrow:contains("invalid")
|
||||||
test:
|
test:
|
||||||
path: torrentslist.php
|
path: torrentslist.php
|
||||||
selector: ul.isuser
|
selector: ul.isuser
|
||||||
|
|
||||||
search:
|
search:
|
||||||
paths:
|
paths:
|
||||||
- path: "{{if .Query.Keywords}}search.php{{else}}torrentslist.php{{end}}"
|
- path: "{{if .Query.Keywords}}search.php{{ else }}torrentslist.php{{ end }}"
|
||||||
inputs:
|
inputs:
|
||||||
$raw: "{{range .Categories}}type={{.}}&{{end}}"
|
$raw: "{{range .Categories}}type={{.}}&{{end}}"
|
||||||
textsearch: "{{ .Query.Keywords }}"
|
textsearch: "{{ .Keywords }}"
|
||||||
rows:
|
rows:
|
||||||
selector: ul.TorrentList
|
selector: ul.TorrentList
|
||||||
fields:
|
fields:
|
||||||
|
@ -110,11 +112,14 @@ search:
|
||||||
date:
|
date:
|
||||||
selector: li.TorrentList8
|
selector: li.TorrentList8
|
||||||
filters:
|
filters:
|
||||||
|
- name: append
|
||||||
|
args: " +02:00" # EET
|
||||||
- name: dateparse
|
- name: dateparse
|
||||||
args: "02 Jan 06, 15:04"
|
args: "02 Jan 06, 15:04 -07:00"
|
||||||
downloadvolumefactor:
|
downloadvolumefactor:
|
||||||
case:
|
case:
|
||||||
".TorrentList2 > a:contains(\"[FFL]\")": "0"
|
".TorrentList2 > a:contains(\"[FFL]\")": "0"
|
||||||
"*": "1"
|
"*": 1
|
||||||
uploadvolumefactor:
|
uploadvolumefactor:
|
||||||
text: "1"
|
text: 1
|
||||||
|
# Morbid Suite vB4
|
||||||
|
|
Loading…
Add table
Reference in a new issue