mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 12:46:23 +00:00
add tazmania-den private site. #5713
This commit is contained in:
parent
bcd869200f
commit
826f757342
2 changed files with 91 additions and 0 deletions
|
@ -348,6 +348,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* TakeaByte
|
||||
* Tapochek
|
||||
* Tasmanit
|
||||
* Tazmania-Den
|
||||
* TeamHD
|
||||
* TeamOS
|
||||
* TellyTorrent
|
||||
|
|
90
src/Jackett.Common/Definitions/tazmaniaden.yml
Normal file
90
src/Jackett.Common/Definitions/tazmaniaden.yml
Normal file
|
@ -0,0 +1,90 @@
|
|||
---
|
||||
site: tazmaniaden
|
||||
name: Tazmania-Den
|
||||
description: "Tazmania-Den is a Private tracker for MOVIES / TV / GENERAL"
|
||||
language: en-us
|
||||
type: private
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://tazmania-den.net/
|
||||
|
||||
caps:
|
||||
categorymappings:
|
||||
- {id: 1, cat: Other, desc: "Other"}
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
|
||||
login:
|
||||
path: account-login.php
|
||||
method: post
|
||||
inputs:
|
||||
username: "{{ .Config.username }}"
|
||||
password: "{{ .Config.password }}"
|
||||
error:
|
||||
- selector: div.myFrame:contains("Access Denied")
|
||||
test:
|
||||
path: torrents-search.php
|
||||
selector: a[href="account-logout.php"]
|
||||
|
||||
download:
|
||||
before:
|
||||
path: thanks.php
|
||||
method: "post"
|
||||
inputs:
|
||||
torrent: "{{ .DownloadUri.Query.id }}"
|
||||
submit: "Thanks!"
|
||||
selector: a[href^="download.php?id="]
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: torrents-search.php
|
||||
inputs:
|
||||
search: "{{ .Keywords }}"
|
||||
# 0 active 1 incldead 2 onlydead
|
||||
incldead: 1
|
||||
# 0 all 1 notfree 2 onlyfree
|
||||
freeleech: 0
|
||||
# 0 all 1 english etc
|
||||
lang: 0
|
||||
rows:
|
||||
selector: tr.t-row
|
||||
fields:
|
||||
category:
|
||||
text: 1
|
||||
title:
|
||||
selector: a[href^="torrents-details.php?id="]
|
||||
details:
|
||||
selector: a[href^="torrents-details.php?id="]
|
||||
attribute: href
|
||||
download:
|
||||
selector: a[href^="torrents-details.php?id="]
|
||||
attribute: href
|
||||
banner:
|
||||
selector: td:nth-child(1) img
|
||||
optional: true
|
||||
attribute: src
|
||||
date:
|
||||
selector: td:nth-child(2)
|
||||
filters:
|
||||
- name: regexp
|
||||
args: (\d{2}-\d{2}-\d{4})
|
||||
- name: dateparse
|
||||
args: "02-01-2006"
|
||||
size:
|
||||
selector: td:nth-child(4)
|
||||
seeders:
|
||||
selector: td:nth-child(5)
|
||||
leechers:
|
||||
selector: td:nth-child(6)
|
||||
grabs:
|
||||
selector: td:nth-child(7)
|
||||
downloadvolumefactor:
|
||||
case:
|
||||
img[src="images/free.gif"]: "0"
|
||||
img[src="images/t_extern.png"]: "0"
|
||||
"*": "1"
|
||||
uploadvolumefactor:
|
||||
case:
|
||||
img[src="images/t_extern.png"]: "0"
|
||||
"*": "1"
|
Loading…
Reference in a new issue