Skip to content

Commit

Permalink
jackett indexers as of 338f1e02ab095c7fdbf31c345dd55ae9fc59f3a3 [2025…
Browse files Browse the repository at this point in the history
…-01-28T03:24:43Z]
  • Loading branch information
ServarrAdmin committed Jan 28, 2025
1 parent c46c6fa commit 19ec64a
Show file tree
Hide file tree
Showing 10 changed files with 474 additions and 302 deletions.
83 changes: 83 additions & 0 deletions definitions/v10/anime-time.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
---
id: anime-time
name: Anime Time
description: "Anime Time is a Public Torrent Tracker for ANIME."
language: en-US
type: public
encoding: UTF-8
requestDelay: 2
links:
- https://animetime.cc/

caps:
categories:
anime: TV/Anime
books: Books

modes:
search: [q]
tv-search: [q, season, ep]
book-search: [q]

settings: []

search:
paths:
# https://animetime.cc/search?query=
- path: "{{ if .Keywords }}search{{ else }}{{ end }}"

inputs:
query: "{{ .Keywords }}"

keywordsfilters:
- name: trim
- name: re_replace
args: ["\\W+", "%"]

rows:
selector: div.flow-root > div.divide-y > div.p-2.space-y-2

fields:
category:
selector: span.badge.badge-primary
title:
selector: a[href*="/view/"]
details:
selector: a[href*="/view/"]
attribute: href
download:
selector: a[href*="/download/"]
attribute: href
magnet:
selector: a[href^="magnet:?xt="]
attribute: href
date:
selector: span[data-tip]
attribute: data-tip
filters:
- name: append
args: " +02:00" # EET
- name: dateparse
args: "yyyy-MM-dd HH:mm:ss zzz"
size:
selector: span.badge.badge-ghost
seeders:
text: 1
leechers:
text: 1
genre:
selector: span.badge.badge-secondary, span.badge.badge-error
filters:
- name: replace
args: ["non english", "non_english"]
- name: replace
args: ["music video", "music_video"]
- name: replace
args: ["Anime Time", "Anime_Time"]
description:
text: "{{ .Result.genre }}"
downloadvolumefactor:
text: 0
uploadvolumefactor:
text: 1
# engine n/a
103 changes: 103 additions & 0 deletions definitions/v10/anime-timel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
---
id: anime-timel
name: Anime TimeL
description: "This is the Anime Time indexer with Login enabled in the config to include NSFW content."
language: en-US
type: semi-private
encoding: UTF-8
requestDelay: 2
links:
- https://animetime.cc/

caps:
categories:
anime: TV/Anime
books: Books

modes:
search: [q]
tv-search: [q, season, ep]
book-search: [q]

settings:
- name: username
type: text
label: Username
- name: password
type: password
label: Password

login:
path: auth/log-in
method: form
form: form[action$="/auth/log-in"]
inputs:
username: "{{ .Config.username }}"
password: "{{ .Config.password }}"
remember_me: true
error:
- selector: span.text-error
test:
path: /
selector: form[action$="/auth/log-out"]

search:
paths:
# https://animetime.cc/search?query=
- path: "{{ if .Keywords }}search{{ else }}{{ end }}"

inputs:
query: "{{ .Keywords }}"

keywordsfilters:
- name: trim
- name: re_replace
args: ["\\W+", "%"]

rows:
selector: div.flow-root > div.divide-y > div.p-2.space-y-2

fields:
category:
selector: span.badge.badge-primary
title:
selector: a[href*="/view/"]
details:
selector: a[href*="/view/"]
attribute: href
download:
selector: a[href*="/download/"]
attribute: href
magnet:
selector: a[href^="magnet:?xt="]
attribute: href
date:
selector: span[data-tip]
attribute: data-tip
filters:
- name: append
args: " +02:00" # EET
- name: dateparse
args: "yyyy-MM-dd HH:mm:ss zzz"
size:
selector: span.badge.badge-ghost
seeders:
text: 1
leechers:
text: 1
genre:
selector: span.badge.badge-secondary, span.badge.badge-error
filters:
- name: replace
args: ["non english", "non_english"]
- name: replace
args: ["music video", "music_video"]
- name: replace
args: ["Anime Time", "Anime_Time"]
description:
text: "{{ .Result.genre }}"
downloadvolumefactor:
text: 0
uploadvolumefactor:
text: 1
# engine n/a
8 changes: 3 additions & 5 deletions definitions/v10/gktorrent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type: public
encoding: UTF-8
# to fetch current domain use https://www.rantop.org/
links:
- https://www.gktorrent.cz/
- https://www.gktorrent.cv/
legacylinks:
# latest domains list
- https://www.rantop.org/
Expand All @@ -20,10 +20,6 @@ legacylinks:
- https://www.protege-liens.com/
- https://www.protege-liens.net/
# actual legacylinks
- https://www.gktorrent.wf/
- https://gktorrent.nocensor.cloud/
- https://gktorrent.mrunblock.bond/
- https://www.gktorrent.wtf/
- https://www.gktorrent.vg/
- https://www.gktorrent.lol/
- https://www.gktorrent.sh/
Expand All @@ -37,6 +33,8 @@ legacylinks:
- https://www.gktorrent.gy/
- https://www.gktorrent.si/
- https://www.gktorrent.my/
- https://www.gktorrent.cz/
- https://www.gktorrent.ke/

caps:
categorymappings:
Expand Down
8 changes: 6 additions & 2 deletions definitions/v10/nirvana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ search:
True: 2 # double
uploadvolumefactor:
text: "{{ if .Result._featured }}2{{ else }}{{ .Result.uploadvolumefactor_double_upload }}{{ end }}"
minimumratio:
text: 0.4
# global MR is 0.4 but torrents must be seeded for 7 days regardless of ratio
# minimumratio:
# text: 0.4
minimumseedtime:
# 7 days (as seconds = 7 x 24 x 60 x 60)
text: 604800
# json UNIT3D 8.3.3
3 changes: 1 addition & 2 deletions definitions/v10/ptfans.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ language: zh-CN
type: private
encoding: UTF-8
requestDelay: 2
certificates:
- 354aadd98a20cd4c28c115dae3a4b3f19d528df0 # CN=ptfans.cc (for cusat.win)
links:
- https://ptfans.cc/
legacylinks:
- https://cusat.win/

caps:
Expand Down
8 changes: 5 additions & 3 deletions definitions/v10/rudub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@ type: semi-private
encoding: windows-1251
followredirect: true
links:
- https://26jan.rudub.online/
- https://28jan.rudub.online/
legacylinks:
- https://27december.rudub.online/
- https://28december.rudub.online/
- https://29december.rudub.online/
- https://30december.rudub.online/
- https://31december.rudub.online/
Expand Down Expand Up @@ -53,6 +51,10 @@ legacylinks:
- http://25jan.rudub.online/
- https://25jan.rudub.online/
- http://26jan.rudub.online/
- https://26jan.rudub.online/
- http://27jan.rudub.online/
- https://27jan.rudub.online/
- http://28jan.rudub.online/

caps:
categorymappings:
Expand Down
Loading

0 comments on commit 19ec64a

Please sign in to comment.