mirror of
https://github.com/Prowlarr/Indexers.git
synced 2026-04-25 10:58:28 +01:00
jackett indexers as of 48595ac8cd7b0244fcd3aa204af01f8c4af90468 jackett indexers as of bd896d809622b79423bce52489d0c7e5c1943515 jackett indexers as of 02367a8a6f20526e97cc64fe6b04b629bc028486 jackett indexers as of bc23cee85250208d540723cc3ecac8c5515d112a jackett indexers as of 6c97d186a62c46338ced28302a3842ce5f272a67 jackett indexers as of 0ef8f372a36b7b1db763f43f96a12c771a884bc5 jackett indexers as of 39c6f8ca1639591148121167e4edd5685862a138 jackett indexers as of f3f0647d7e65b184b58fa68257ee64bc1b367e59 jackett indexers as of 5fa9664097a6088244353913a3e8e241bb5abd6a jackett indexers as of 0b59cd670ffbf4444814c475a3c925cf4a21d77d jackett indexers as of 41ef4d1f555cc5f6307287dae2ad37e2e98c62ac jackett indexers as of 480a5d0bf05f3d4f047478a138d01db20db7249a jackett indexers as of 7b09f07c6c91585864d8dd321779b6eeed7352e3
163 lines
4.2 KiB
YAML
163 lines
4.2 KiB
YAML
---
|
|
id: karagarga
|
|
name: Karagarga
|
|
description: "Karagarga tracks non-hollywood, rare and obscure movies, music and literature."
|
|
language: en-US
|
|
type: private
|
|
encoding: iso-8859-1
|
|
links:
|
|
- https://karagarga.in/
|
|
|
|
caps:
|
|
categorymappings:
|
|
- {id: 1, cat: Movies, desc: "Movies"}
|
|
- {id: 2, cat: Audio, desc: "Music"}
|
|
- {id: 3, cat: Books, desc: "Literature"}
|
|
|
|
modes:
|
|
search: [q]
|
|
movie-search: [q, imdbid]
|
|
music-search: [q]
|
|
book-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:
|
|
path: login.php
|
|
method: form
|
|
form: form[action="takelogin.php"]
|
|
inputs:
|
|
username: "{{ .Config.username }}"
|
|
password: "{{ .Config.password }}"
|
|
captcha:
|
|
type: image
|
|
selector: img#captcha_img
|
|
input: captcha
|
|
error:
|
|
- selector: table:contains("Login failed!")
|
|
- selector: table:contains("Login unsuccessful")
|
|
test:
|
|
path: index.php
|
|
|
|
search:
|
|
paths:
|
|
# https://karagarga.in/browse.php?search_type=title&search=&cat=3&genre=&subgenre=&country=0&hdrip=&sort=&d=&incldead=
|
|
- path: browse.php
|
|
inputs:
|
|
# torrent, title, director, uploader, year, imdb
|
|
search_type: "{{ if .Query.IMDBID }}imdb{{ else }}title{{ end }}"
|
|
search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{ else }}{{ .Keywords }}{{ end }}"
|
|
# site does not support multiple cats
|
|
cat: 0
|
|
genre: ""
|
|
subgenre: ""
|
|
# 0 any, 2 USA, 12 UK, etc
|
|
country: 0
|
|
hdrip: ""
|
|
# "" yes, 1 no
|
|
incldead: ""
|
|
source: ""
|
|
fl: "{{ if .Config.freeleech }}1{{ else }}{{ end }}"
|
|
# sort keywordless search to get the latest, but dont sort keyword search to allow andmatch to return more results.
|
|
sort: "{{ if .Keywords }}{{ else }}added{{ end }}"
|
|
d: "{{ if .Keywords }}{{ else }}DESC{{ end }}"
|
|
# site supports imdbid searches and returns imdb links in results.
|
|
|
|
rows:
|
|
selector: table#browse > tbody > tr:has(a[href^="browse.php?genre="])
|
|
filters:
|
|
- name: andmatch
|
|
|
|
fields:
|
|
category:
|
|
selector: a[href^="browse.php?genre="] img
|
|
case:
|
|
img[title^="Movie"]: 1
|
|
img[title^="Music"]: 2
|
|
img[title^="Literature"]: 3
|
|
year:
|
|
selector: a[href$="search_type=year"]
|
|
optional: true
|
|
flag:
|
|
selector: a[href^="browse.php?country="] img
|
|
attribute: title
|
|
optional: true
|
|
filename:
|
|
selector: a[href^="/down.php/"]
|
|
attribute: href
|
|
filters:
|
|
- name: regexp
|
|
args: "(?:/down\\.php/\\d+/)(.+?)\\.torrent"
|
|
- name: re_replace
|
|
args: ["%20", "."]
|
|
title:
|
|
selector: a[href^="details.php?id="]
|
|
filters:
|
|
- name: append
|
|
args: " {{ .Result.year }} {{ .Result.flag }} [{{ .Result.filename }}]"
|
|
details:
|
|
selector: a[href^="details.php?id="]
|
|
attribute: href
|
|
download:
|
|
selector: a[href^="/down.php/"]
|
|
attribute: href
|
|
imdb:
|
|
selector: a[href*="imdb.com/title/tt"]
|
|
attribute: href
|
|
date:
|
|
selector: td:nth-child(9)
|
|
filters:
|
|
- name: re_replace
|
|
args: ["([a-zA-Z]+)\\s+(\\d{1,2})\\s+'(\\d{2})", "$2 $1 $3"]
|
|
- name: dateparse
|
|
args: "2 Jan 06"
|
|
files:
|
|
selector: td:nth-child(10)
|
|
size:
|
|
selector: td:nth-child(11)
|
|
grabs:
|
|
selector: td:nth-child(12)
|
|
seeders:
|
|
selector: td:nth-child(13)
|
|
leechers:
|
|
selector: td:nth-child(14)
|
|
subs:
|
|
selector: span:contains("Subs:")
|
|
optional: true
|
|
genre:
|
|
selector: td:nth-child(5)
|
|
optional: true
|
|
filters:
|
|
- name: prepend
|
|
args: "Genre: "
|
|
mom:
|
|
selector: img[title^="CURRENT"]
|
|
attribute: title
|
|
optional: true
|
|
description:
|
|
text: "{{ .Result.subs }} {{ .Result.genre }}{{ if .Result.mom }} Current MoM{{ else }}{{ end }}"
|
|
downloadvolumefactor:
|
|
case:
|
|
"span:contains(\"Freeleech\")": 0
|
|
"span:contains(\"Featured\")": 0
|
|
"*": 1
|
|
uploadvolumefactor:
|
|
case:
|
|
# ":has(img[title^=\"HD\"]):has(img[title^=\"CURRENT\"])": 1.8
|
|
"img[title^=\"CURRENT\"]": 1.6
|
|
# "img[title^=\"HD\"]": 1.3
|
|
"*": 1.1
|
|
minimumratio:
|
|
text: 0.25
|
|
# engine n/a
|