mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00

since the cardigann default is that empty inputs will not be added to the query there is little point having them hardcoded as empty
154 lines
4.1 KiB
YAML
154 lines
4.1 KiB
YAML
---
|
|
id: asiancinema
|
|
name: AsianCinema
|
|
description: "Tracker Movies/TV/Music"
|
|
language: en-US
|
|
type: private
|
|
encoding: UTF-8
|
|
links:
|
|
- https://asiancinema.me/
|
|
|
|
caps:
|
|
categorymappings:
|
|
- {id: 1, cat: Movies, desc: "Movies"}
|
|
- {id: 2, cat: TV, desc: "TV"}
|
|
- {id: 3, cat: Audio, desc: "Music"}
|
|
|
|
modes:
|
|
search: [q]
|
|
tv-search: [q, season, ep, imdbid, tvdbid, tmdbid]
|
|
movie-search: [q, imdbid, tmdbid]
|
|
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
|
|
- name: sort
|
|
type: select
|
|
label: Sort requested from site
|
|
default: created_at
|
|
options:
|
|
created_at: created
|
|
seeders: seeders
|
|
size: size
|
|
name: title
|
|
- name: type
|
|
type: select
|
|
label: Order requested from site
|
|
default: desc
|
|
options:
|
|
desc: desc
|
|
asc: asc
|
|
|
|
login:
|
|
path: login
|
|
method: form
|
|
form: form[action$="/login"]
|
|
inputs:
|
|
username: "{{ .Config.username }}"
|
|
password: "{{ .Config.password }}"
|
|
remember: on
|
|
selectorinputs:
|
|
_token:
|
|
selector: input[name="_token"]
|
|
attribute: value
|
|
error:
|
|
- selector: div#ERROR_COPY
|
|
# test:
|
|
# path: /
|
|
# selector: a[href$="/logout"]
|
|
|
|
search:
|
|
paths:
|
|
- path: torrents/filter
|
|
inputs:
|
|
$raw: "{{ range .Categories }}categories[]={{.}}&{{end}}"
|
|
search: "{{ if .Query.IMDBID }}{{ else }}{{ .Keywords }}{{ end }}" # for dashboard imdbid search
|
|
imdb: "{{ .Query.IMDBIDShort }}"
|
|
tvdb: "{{ .Query.TVDBID }}"
|
|
tmdb: "{{ .Query.TMDBID }}"
|
|
sorting: "{{ .Config.sort }}"
|
|
direction: "{{ .Config.type }}"
|
|
qty: 100
|
|
freeleech: "{{ if .Config.freeleech }}1{{ else }}{{ end }}"
|
|
# can support genre search but you need to know the id. &genre[]=10759 for Action & Adventure
|
|
# does not have genre in results, they are on the details page.
|
|
|
|
rows:
|
|
selector: table > tbody > tr
|
|
|
|
fields:
|
|
category:
|
|
selector: a[href*="/categories/"]
|
|
attribute: href
|
|
filters:
|
|
- name: regexp
|
|
args: "/categories/(\\d+)"
|
|
title:
|
|
selector: a.view-torrent
|
|
download:
|
|
selector: a[href*="/download/"]
|
|
attribute: href
|
|
details:
|
|
selector: a.view-torrent
|
|
attribute: href
|
|
poster:
|
|
selector: div.torrent-poster img
|
|
attribute: src
|
|
filters:
|
|
- name: prepend
|
|
args: "https://images.weserv.nl/?url=" # for display on dashboard
|
|
- name: append
|
|
args: "&w=180&h=270" # for display on dashboard
|
|
- name: replace
|
|
args: ["https://images.weserv.nl/?url=https://via.placeholder.com/600x900&w=180&h=270", ""]
|
|
size:
|
|
selector: td:nth-last-child(4)
|
|
seeders:
|
|
selector: td:nth-last-child(3)
|
|
leechers:
|
|
selector: td:nth-last-child(2)
|
|
grabs:
|
|
selector: td:nth-last-child(1)
|
|
imdbid:
|
|
selector: a[href*="imdb.com/title/tt"]
|
|
attribute: href
|
|
tmdbid:
|
|
selector: a[href*="themoviedb.org/movie/"], a[href*="themoviedb.org/tv/"]
|
|
attribute: href
|
|
date:
|
|
selector: time
|
|
filters:
|
|
- name: append
|
|
args: " ago"
|
|
downloadvolumefactor:
|
|
case:
|
|
i[class*="fa-id-badge text-orange"]: 0 # 24 Hour FreeLeech From BON Store
|
|
i[class*="fa-trophy text-purple"]: 0 # Special FreeLeech For Certain User Groups
|
|
i[class*="fa-star text-bold"]: 0 # Freeleech From Token
|
|
i[class*="fa-coins text-bold"]: 0 # Freeleech From Token
|
|
i[class*="fa-globe text-blue"]: 0 # Global Freeleech
|
|
i[class*="fa-star text-gold"]: 0 # Freeleech
|
|
i[class*="fa-certificate text-pink"]: 0 # Featured Torrent
|
|
"*": 1
|
|
uploadvolumefactor:
|
|
case:
|
|
i[class*="fa-gem text-green"]: 2 # Single Torrent Double Upload
|
|
i[class*="fa-globe text-green"]: 2 # Global Double Upload
|
|
i[class*="fa-certificate text-pink"]: 2 # Featured Torrent
|
|
"*": 1
|
|
minimumratio:
|
|
text: 0.4
|
|
minimumseedtime:
|
|
# 7 days (as seconds = 7 x 24 x 60 x 60)
|
|
text: 604800
|
|
# UNIT3D 3.0.0
|