mirror of
https://github.com/Jackett/Jackett
synced 2025-03-09 13:52:03 +00:00
parent
007bc0835a
commit
b05afcc598
3 changed files with 339 additions and 0 deletions
|
@ -490,6 +490,7 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
||||||
* Shareisland
|
* Shareisland
|
||||||
* Shazbat
|
* Shazbat
|
||||||
* SiamBIT
|
* SiamBIT
|
||||||
|
* SkipTheCommercials
|
||||||
* slosoul
|
* slosoul
|
||||||
* SnowPT (SSPT)
|
* SnowPT (SSPT)
|
||||||
* SoulVoice
|
* SoulVoice
|
||||||
|
|
148
src/Jackett.Common/Definitions/skipthecommercials-api.yml
Normal file
148
src/Jackett.Common/Definitions/skipthecommercials-api.yml
Normal file
|
@ -0,0 +1,148 @@
|
||||||
|
---
|
||||||
|
id: skipthecommercials-api
|
||||||
|
name: SkipTheCommercials (API)
|
||||||
|
description: "SkipTheCommercials (STC) is a Private Torrent Tracker for TV"
|
||||||
|
language: en-US
|
||||||
|
type: private
|
||||||
|
encoding: UTF-8
|
||||||
|
links:
|
||||||
|
- https://skipthecommericals.xyz/
|
||||||
|
|
||||||
|
caps:
|
||||||
|
# dont forget to update the case block in the search fields category
|
||||||
|
categorymappings:
|
||||||
|
- {id: 2, cat: TV/HD, desc: "TV/x265"}
|
||||||
|
- {id: 3, cat: TV/SD, desc: "TV/Packs-SD"}
|
||||||
|
- {id: 4, cat: TV/WEB-DL, desc: "TV/Web-DL"}
|
||||||
|
- {id: 5, cat: TV/SD, desc: "TV/Xvid"}
|
||||||
|
- {id: 6, cat: TV/HD, desc: "TV/HD-x264"}
|
||||||
|
- {id: 7, cat: TV/Foreign, desc: "TV/Non-English"}
|
||||||
|
- {id: 8, cat: TV/HD, desc: "TV/Packs-HD"}
|
||||||
|
- {id: 9, cat: TV/Sport, desc: "TV/Sports"}
|
||||||
|
- {id: 10, cat: TV/Documentary, desc: "TV/Documentaries"}
|
||||||
|
- {id: 11, cat: TV/HD, desc: "TV/HD-Retail"}
|
||||||
|
- {id: 12, cat: TV/SD, desc: "TV/SD-Retail"}
|
||||||
|
- {id: 13, cat: TV/Foreign, desc: "TV/Packs-Non-English"}
|
||||||
|
- {id: 14, cat: TV/SD, desc: "TV/SD-x264"}
|
||||||
|
|
||||||
|
modes:
|
||||||
|
search: [q]
|
||||||
|
tv-search: [q, season, ep, imdbid, tvdbid]
|
||||||
|
|
||||||
|
settings:
|
||||||
|
- name: apikey
|
||||||
|
type: text
|
||||||
|
label: APIKey
|
||||||
|
- name: info_key
|
||||||
|
type: info
|
||||||
|
label: About your API key
|
||||||
|
default: "Find or Generate a new API Token by accessing your <a href=\"https://datascene.xyz/\" target =_blank>DataScene</a> account <i>My Security</i> page and clicking on the <b>API Token</b> tab."
|
||||||
|
- 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
|
||||||
|
|
||||||
|
search:
|
||||||
|
paths:
|
||||||
|
# https://hdinnovations.github.io/UNIT3D-Community-Edition-Docs/api_endpoints.html
|
||||||
|
- path: /api/torrents/filter
|
||||||
|
response:
|
||||||
|
type: json
|
||||||
|
attribute: attributes
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
# https://github.com/HDInnovations/UNIT3D-Community-Edition/blob/master/app/Http/Controllers/API/TorrentController.php
|
||||||
|
api_token: "{{ .Config.apikey }}"
|
||||||
|
name: "{{ if .Query.IMDBID }}{{ else }}{{ .Keywords }}{{ end }}"
|
||||||
|
tmdb: "{{ .Query.TMDBID }}"
|
||||||
|
imdb: "{{ .Query.IMDBIDShort }}"
|
||||||
|
tvdb: "{{ .Query.TVDBID }}"
|
||||||
|
sortField: "{{ .Config.sort }}"
|
||||||
|
sortDirection: "{{ .Config.type }}"
|
||||||
|
perPage: 100
|
||||||
|
page: 1
|
||||||
|
$raw: "{{ range .Categories }}categories[]={{.}}&{{end}}{{ if .Config.freeleech }}free=1{{ else }}{{ end }}"
|
||||||
|
|
||||||
|
rows:
|
||||||
|
selector: data
|
||||||
|
count:
|
||||||
|
selector: meta.total
|
||||||
|
|
||||||
|
fields:
|
||||||
|
category:
|
||||||
|
selector: category
|
||||||
|
case:
|
||||||
|
"TV/x265": 2
|
||||||
|
"TV/Packs-SD": 3
|
||||||
|
"TV/Web-DL": 4
|
||||||
|
"TV/Xvid": 5
|
||||||
|
"TV/HD-x264": 6
|
||||||
|
"TV/Non-English": 7
|
||||||
|
"TV/Packs-HD": 8
|
||||||
|
"TV/Sports": 9
|
||||||
|
"TV/Documentaries": 10
|
||||||
|
"TV/HD-Retail": 11
|
||||||
|
"TV/SD-Retail": 12
|
||||||
|
"TV/Packs-Non-English": 13
|
||||||
|
"TV/SD-x264": 14
|
||||||
|
title:
|
||||||
|
selector: name
|
||||||
|
details:
|
||||||
|
selector: details_link
|
||||||
|
download:
|
||||||
|
selector: download_link
|
||||||
|
poster:
|
||||||
|
selector: poster
|
||||||
|
filters:
|
||||||
|
- name: replace
|
||||||
|
args: ["https://via.placeholder.com/90x135", ""]
|
||||||
|
- name: replace
|
||||||
|
args: ["https://via.placeholder.com/400x600", ""]
|
||||||
|
imdbid:
|
||||||
|
selector: imdb_id
|
||||||
|
tmdbid:
|
||||||
|
selector: tmdb_id
|
||||||
|
tvdbid:
|
||||||
|
selector: tvdb_id
|
||||||
|
files:
|
||||||
|
selector: num_file
|
||||||
|
seeders:
|
||||||
|
selector: seeders
|
||||||
|
leechers:
|
||||||
|
selector: leechers
|
||||||
|
grabs:
|
||||||
|
selector: times_completed
|
||||||
|
date:
|
||||||
|
# 2021-10-18T00:34:50.000000Z"
|
||||||
|
selector: created_at
|
||||||
|
size:
|
||||||
|
selector: size
|
||||||
|
downloadvolumefactor:
|
||||||
|
# api returns 0=false, 1=true
|
||||||
|
selector: freeleech
|
||||||
|
case:
|
||||||
|
0: 1 # not free
|
||||||
|
1: 0 # freeleech
|
||||||
|
uploadvolumefactor:
|
||||||
|
# api returns 0=false, 1=true
|
||||||
|
selector: double_upload
|
||||||
|
case:
|
||||||
|
0: 1 # normal
|
||||||
|
1: 2 # double
|
||||||
|
# json UNIT3D 5.3.0
|
190
src/Jackett.Common/Definitions/skipthecommercials.yml
Normal file
190
src/Jackett.Common/Definitions/skipthecommercials.yml
Normal file
|
@ -0,0 +1,190 @@
|
||||||
|
---
|
||||||
|
id: skipthecommercials
|
||||||
|
name: SkipTheCommercials
|
||||||
|
description: "SkipTheCommercials (STC) is a Private Torrent Tracker for TV"
|
||||||
|
language: en-US
|
||||||
|
type: private
|
||||||
|
encoding: UTF-8
|
||||||
|
links:
|
||||||
|
- https://skipthecommericals.xyz/
|
||||||
|
|
||||||
|
caps:
|
||||||
|
categorymappings:
|
||||||
|
- {id: 2, cat: TV/HD, desc: "TV/x265"}
|
||||||
|
- {id: 3, cat: TV/SD, desc: "TV/Packs-SD"}
|
||||||
|
- {id: 4, cat: TV/WEB-DL, desc: "TV/Web-DL"}
|
||||||
|
- {id: 5, cat: TV/SD, desc: "TV/Xvid"}
|
||||||
|
- {id: 6, cat: TV/HD, desc: "TV/HD-x264"}
|
||||||
|
- {id: 7, cat: TV/Foreign, desc: "TV/Non-English"}
|
||||||
|
- {id: 8, cat: TV/HD, desc: "TV/Packs-HD"}
|
||||||
|
- {id: 9, cat: TV/Sport, desc: "TV/Sports"}
|
||||||
|
- {id: 10, cat: TV/Documentary, desc: "TV/Documentaries"}
|
||||||
|
- {id: 11, cat: TV/HD, desc: "TV/HD-Retail"}
|
||||||
|
- {id: 12, cat: TV/SD, desc: "TV/SD-Retail"}
|
||||||
|
- {id: 13, cat: TV/Foreign, desc: "TV/Packs-Non-English"}
|
||||||
|
- {id: 14, cat: TV/SD, desc: "TV/SD-x264"}
|
||||||
|
|
||||||
|
modes:
|
||||||
|
search: [q]
|
||||||
|
tv-search: [q, season, ep, imdbid, tvdbid]
|
||||||
|
|
||||||
|
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
|
||||||
|
inputs:
|
||||||
|
$raw: "{{ range .Categories }}categories[]={{.}}&{{end}}"
|
||||||
|
name: "{{ if .Query.IMDBID }}{{ else }}{{ .Keywords }}{{ end }}" # for dashboard imdbid search
|
||||||
|
description: ""
|
||||||
|
mediainfo: ""
|
||||||
|
keywords: ""
|
||||||
|
uploader: ""
|
||||||
|
tmdbId: "{{ .Query.TMDBID }}"
|
||||||
|
imdbId: "{{ .Query.IMDBIDShort }}"
|
||||||
|
tvdbId: "{{ .Query.TVDBID }}"
|
||||||
|
malId: ""
|
||||||
|
startYear: ""
|
||||||
|
endYear: ""
|
||||||
|
playlistId: ""
|
||||||
|
collectionId: ""
|
||||||
|
sortField: "{{ .Config.sort }}"
|
||||||
|
sortDirection: "{{ .Config.type }}"
|
||||||
|
perPage: 100
|
||||||
|
page: 1
|
||||||
|
free: "{{ if .Config.freeleech }}1{{ else }}{{ end }}"
|
||||||
|
|
||||||
|
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: replace
|
||||||
|
args: ["https://via.placeholder.com/90x135", ""]
|
||||||
|
- name: replace
|
||||||
|
args: ["https://via.placeholder.com/400x600", ""]
|
||||||
|
size:
|
||||||
|
selector: td:nth-last-child(5)
|
||||||
|
seeders:
|
||||||
|
selector: td:nth-last-child(4)
|
||||||
|
leechers:
|
||||||
|
selector: td:nth-last-child(3)
|
||||||
|
grabs:
|
||||||
|
selector: td:nth-last-child(2)
|
||||||
|
date:
|
||||||
|
selector: td:nth-last-child(1)
|
||||||
|
filters:
|
||||||
|
# translations for Turkish|Estonian|Danish|Italian|Polish|Norwegian|Portuguese|Czech|Russian|Romanian|Spanish|French|German|Bulgarian|Dutch|Chinese|Japanese|Swedish
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(önce|tagasi|geleden|fa|temu|siden|há|atrás|nazpět|назад|acum|în urmă|hace|il y a|vor|преди|前|sedan)", " ago"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(saniye|sekundit|sekunder|secondi|sekund|segundos|sekundami|секунд|secunde|secondes|Sekunden|секунди|seconden|秒前)", "seconds"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(minutit|minutter|minuti|minuty|minutos|минуты|минут|Minuten|минути|minuten|minuter)", "minutes"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(dakika|minut|minuto|minuta|minutt|минута|Minute|minuut|分钟|分)", " minute"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(tundi|timer|ore|godziny|horas|hodiny|hoden|часа|часов|ore|heures|Stunden|timmar)", "hours"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(saat|tund|time|ora|godzina|hora|hodina|час|oră|heure|Stunde|uur|小时|時間|timme)", " hour"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(päeva|dage|giorni|dni|dias|dny|дня|дней|zile|días|jours|Tagen|дни|dagen|dagar)", "days"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(gün|päev|dag|giorno|dzień|dia|den|день|zi|día|jour|Tag|ден|天|日)", " day"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(nädalat|uger|settimane|tygodnie|uker|semanas|týdny|недели|недель|săptămâni|semaines|Wochen|седмици|weken|veckor)", "weeks"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(hafta|nädal|uge|settimana|tydzień|uke|semana|týden|неделю|săptămână|semaine|Woche|седмица|周|週間|vecka)", " week"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i) (ay)", "month"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(kuud|måneder|mesi|miesiące|meses|měsíce|месяца|месяцев|luni|meses|mois|Monaten|месеца|maanden|månader)", "months"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(kuu|måned|mese|miesiąc|mês|měsíc|месяц|lună|mes|Monat|месец|maand|个月|ヶ月|månad)", " month"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(aastat|anni|lata|anos|roky|года|ani|años|ans|Jahren|години)", " years"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(yil|aasta|år|anno|rok|ano|год|año|Jahr|година|jaar|年)", " year"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i) (an)", "year"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)(För |und)", ""] # Misc removals
|
||||||
|
- name: timeago
|
||||||
|
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
|
||||||
|
# UNIT3D 5.3.0
|
Loading…
Add table
Reference in a new issue