mirror of
https://github.com/Jackett/Jackett
synced 2025-03-04 10:48:26 +00:00
Adding indexer for acrossthetasman.com (#11063)
Co-authored-by: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com>
This commit is contained in:
parent
e90e1ae2c2
commit
14c95a353b
2 changed files with 88 additions and 0 deletions
|
@ -226,6 +226,7 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
|||
* Abnormal [![(invite needed)][inviteneeded]](#)
|
||||
* ABtorrents (ABT + RNS)
|
||||
* Acid Lounge (A-L) [![(invite needed)][inviteneeded]](#)
|
||||
* AcrossTheTasman [![(invite needed)][inviteneeded]](#)
|
||||
* Aftershock
|
||||
* Aidoru!Online
|
||||
* Aither
|
||||
|
|
87
src/Jackett.Common/Definitions/acrossthetasman.yml
Normal file
87
src/Jackett.Common/Definitions/acrossthetasman.yml
Normal file
|
@ -0,0 +1,87 @@
|
|||
---
|
||||
id: acrossthetasman
|
||||
name: Across The Tasman
|
||||
description: "ATT is a torrent site for Rugby and other sports played in Australia"
|
||||
language: en
|
||||
type: private
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://acrossthetasman.com/
|
||||
|
||||
caps:
|
||||
categories:
|
||||
1: TV/Sport
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
|
||||
settings:
|
||||
- name: username
|
||||
type: text
|
||||
label: Username
|
||||
- name: password
|
||||
type: password
|
||||
label: Password
|
||||
- name: sort
|
||||
type: select
|
||||
default: date
|
||||
options:
|
||||
date: Date
|
||||
filename: Thread Title
|
||||
size: Size
|
||||
seeders: Seeders
|
||||
leechers: Leechers
|
||||
completed: Downloaded
|
||||
upspeed: UL Speed
|
||||
downspeed: DL Speed
|
||||
- name: order
|
||||
type: select
|
||||
default: desc
|
||||
options:
|
||||
desc: Desc
|
||||
asc: Asc
|
||||
|
||||
login:
|
||||
method: post
|
||||
path: login.php
|
||||
inputs:
|
||||
vb_login_username: "{{ .Config.username }}"
|
||||
vb_login_password: "{{ .Config.password }}"
|
||||
cookieuser: 1
|
||||
do: login
|
||||
test:
|
||||
path: torrents.php
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: "torrents.php?sort={{ .Config.sort }}&order={{ .Config.order}}&query={{ if .Keywords }}{{ .Keywords }}{{ else }}{{ end }}"
|
||||
|
||||
rows:
|
||||
selector: table[width='100%'][align='center']:not([class]) > tbody > tr
|
||||
|
||||
fields:
|
||||
date:
|
||||
# Feb 12, 2021
|
||||
selector: td:nth-child(1)
|
||||
filters:
|
||||
- name: dateparse
|
||||
args: "Feb 12, 2021 "
|
||||
forum:
|
||||
selector: td:nth-child(3)
|
||||
title:
|
||||
selector: td:nth-child(4) > span:nth-child(1)
|
||||
filters:
|
||||
- name: re_replace
|
||||
args: ["[\\s]+Uploaded.*", ""]
|
||||
download:
|
||||
selector: a[href*="attachment.php?attachmentid="]
|
||||
attribute: href
|
||||
seeders:
|
||||
selector: td:nth-child(5)
|
||||
leechers:
|
||||
selector: td:nth-child(6)
|
||||
grabs:
|
||||
selector: td:nth-child(7)
|
||||
size:
|
||||
selector: td:nth-child(10)
|
||||
# engine n/a
|
Loading…
Add table
Reference in a new issue