mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
@@ -53,7 +53,6 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
|||||||
* dmhy
|
* dmhy
|
||||||
* E-Hentai
|
* E-Hentai
|
||||||
* emtrek
|
* emtrek
|
||||||
* Epizod
|
|
||||||
* Erai-Raws
|
* Erai-Raws
|
||||||
* ETTV
|
* ETTV
|
||||||
* EXT Torrents
|
* EXT Torrents
|
||||||
|
@@ -1,168 +0,0 @@
|
|||||||
---
|
|
||||||
id: epizod
|
|
||||||
name: Epizod
|
|
||||||
description: "Epizod is a FRENCH Public tracker for MOVIES / TV"
|
|
||||||
language: fr-fr
|
|
||||||
type: public
|
|
||||||
encoding: UTF-8
|
|
||||||
links:
|
|
||||||
- https://wwv.epizod.tv/
|
|
||||||
legacylinks:
|
|
||||||
- https://www.epizod.tv/
|
|
||||||
|
|
||||||
caps:
|
|
||||||
categorymappings:
|
|
||||||
- {id: series, cat: TV, desc: SÉRIES}
|
|
||||||
- {id: films, cat: Movies, desc: FILMS}
|
|
||||||
- {id: musique, cat: Audio, desc: MUSIQUE}
|
|
||||||
- {id: albums, cat: Audio, desc: ALBUMS}
|
|
||||||
- {id: ebook, cat: Books, desc: EBOOK}
|
|
||||||
- {id: jeux, cat: Console, desc: GAMES}
|
|
||||||
- {id: other, cat: Other, desc: OTHER}
|
|
||||||
|
|
||||||
modes:
|
|
||||||
search: [q]
|
|
||||||
tv-search: [q, season, ep]
|
|
||||||
movie-search: [q]
|
|
||||||
music-search: [q]
|
|
||||||
book-search: [q]
|
|
||||||
|
|
||||||
settings:
|
|
||||||
- name: multilang
|
|
||||||
type: checkbox
|
|
||||||
label: Replace MULTI by another language in release name
|
|
||||||
default: false
|
|
||||||
- name: multilanguage
|
|
||||||
type: select
|
|
||||||
label: Replace MULTI by this language
|
|
||||||
default: FRENCH
|
|
||||||
options:
|
|
||||||
FRENCH: FRENCH
|
|
||||||
MULTI.FRENCH: MULTI.FRENCH
|
|
||||||
ENGLISH: ENGLISH
|
|
||||||
MULTI.ENGLISH: MULTI.ENGLISH
|
|
||||||
VOSTFR: VOSTFR
|
|
||||||
MULTI.VOSTFR: MULTI.VOSTFR
|
|
||||||
- name: vostfr
|
|
||||||
type: checkbox
|
|
||||||
label: Replace VOSTFR with ENGLISH
|
|
||||||
default: false
|
|
||||||
- name: flaresolverr
|
|
||||||
type: info
|
|
||||||
label: FlareSolverr
|
|
||||||
default: This site may use Cloudflare DDoS Protection, therefore Jackett requires <a href="https://github.com/Jackett/Jackett#configuring-flaresolverr" target="_blank">FlareSolver</a> to access it.
|
|
||||||
|
|
||||||
download:
|
|
||||||
selector: a[href^="magnet:?xt="]
|
|
||||||
attribute: href
|
|
||||||
|
|
||||||
search:
|
|
||||||
paths:
|
|
||||||
# https://www.epizod.tv/?s=
|
|
||||||
- path: /
|
|
||||||
inputs:
|
|
||||||
s: "{{ .Keywords }}"
|
|
||||||
|
|
||||||
headers:
|
|
||||||
# Windows User-Agent is required, Linux is blocked
|
|
||||||
User-Agent: ["Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36"]
|
|
||||||
|
|
||||||
rows:
|
|
||||||
selector: li[class^="ilovewp-post"]:not(:has(a[title="DMCA"]))
|
|
||||||
|
|
||||||
fields:
|
|
||||||
category1:
|
|
||||||
selector: a[href*="/category/"]
|
|
||||||
attribute: href
|
|
||||||
optional: true
|
|
||||||
filters:
|
|
||||||
- name: split
|
|
||||||
args: ["/", 4]
|
|
||||||
category2:
|
|
||||||
selector: li[class^="ilovewp-post"]
|
|
||||||
attribute: class
|
|
||||||
optional: true
|
|
||||||
filters:
|
|
||||||
- name: regexp
|
|
||||||
args: "category-(.+?) "
|
|
||||||
category3:
|
|
||||||
selector: img[src*="img"]
|
|
||||||
attribute: src
|
|
||||||
optional: true
|
|
||||||
filters:
|
|
||||||
- name: regexp
|
|
||||||
args: "img/(.+?)_"
|
|
||||||
- name: replace
|
|
||||||
args: ["ebooks", "ebook"]
|
|
||||||
category:
|
|
||||||
text: "{{ if or .Result.category1 .Result.category2 .Result.category3 }}{{ or .Result.category1 .Result.category2 .Result.category3 }}{{ else }}other{{ end }}"
|
|
||||||
sizecat:
|
|
||||||
text: "{{ if or .Result.category1 .Result.category2 .Result.category3 }}{{ or .Result.category1 .Result.category2 .Result.category3 }}{{ else }}other{{ end }}"
|
|
||||||
site_date:
|
|
||||||
selector: time > a
|
|
||||||
filters:
|
|
||||||
# year can be at the end of the title, so we get it and name it site_date
|
|
||||||
- name: regexp
|
|
||||||
args: "(19|20\\d{2})$"
|
|
||||||
title_phase1:
|
|
||||||
selector: time > a
|
|
||||||
attribute: title
|
|
||||||
filters:
|
|
||||||
# now we put the date at the right place according scene naming rules using .Result.site_date
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(?i)( FRENCH)", " {{ .Result.site_date }} FRENCH"]
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(?i)( MULTI)", " {{ .Result.site_date }} MULTI"]
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(?i)( TRUEFRENCH)", " {{ .Result.site_date }} TRUEFRENCH"]
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(?i)( VOSTFR)", " {{ .Result.site_date }} VOSTFR"]
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(?i)( SUBFRENCH)", " {{ .Result.site_date }} SUBFRENCH"]
|
|
||||||
# and we delete it at the end
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(19|20\\d{2})$", ""]
|
|
||||||
title_multilang:
|
|
||||||
text: "{{ .Result.title_phase1 }}"
|
|
||||||
filters:
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(?i)(\\smulti\\s)", " {{ .Config.multilanguage }} "]
|
|
||||||
title_phase2:
|
|
||||||
text: "{{ if .Config.multilang }}{{ .Result.title_multilang }}{{ else }}{{ .Result.title_phase1 }}{{ end }}"
|
|
||||||
title_vostfr:
|
|
||||||
text: "{{ .Result.title_phase2 }}"
|
|
||||||
filters:
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(?i)(\\svostfr\\s)", " ENGLISH "]
|
|
||||||
- name: re_replace
|
|
||||||
args: ["(?i)(\\ssubfrench\\s)", " ENGLISH "]
|
|
||||||
title:
|
|
||||||
text: "{{ if .Config.vostfr }}{{ .Result.title_vostfr }}{{ else }}{{ .Result.title_phase2 }}{{ end }}"
|
|
||||||
details:
|
|
||||||
selector: h2.title-post > a
|
|
||||||
attribute: href
|
|
||||||
download:
|
|
||||||
selector: h2.title-post > a
|
|
||||||
attribute: href
|
|
||||||
poster:
|
|
||||||
selector: img[data-lazy-src]
|
|
||||||
attribute: data-lazy-src
|
|
||||||
date:
|
|
||||||
selector: time
|
|
||||||
attribute: datetime
|
|
||||||
filters:
|
|
||||||
- name: replace
|
|
||||||
args: ["T", " "]
|
|
||||||
- name: dateparse
|
|
||||||
args: "2006-01-02 15:04:05-07:00"
|
|
||||||
size:
|
|
||||||
text: "{{ if eq .Result.sizecat \"ebook\" }}1 MB{{ else }}{{ end }}{{ if or (eq .Result.sizecat \"albums\") (eq .Result.sizecat \"musique\") }}128 MB{{ else }}{{ end }}{{ if or (eq .Result.sizecat \"series\") (eq .Result.sizecat \"other\") }}512 MB{{ else }}{{ end }}{{ if eq .Result.sizecat \"jeux\" }}1 GB{{ else }}{{ end }}{{ if eq .Result.sizecat \"films\" }}2 GB{{ else }}{{ end }}"
|
|
||||||
seeders:
|
|
||||||
text: 1
|
|
||||||
leechers:
|
|
||||||
text: 1
|
|
||||||
downloadvolumefactor:
|
|
||||||
text: 0
|
|
||||||
uploadvolumefactor:
|
|
||||||
text: 1
|
|
||||||
# engine wordpress
|
|
@@ -304,6 +304,7 @@ namespace Jackett.Updater
|
|||||||
"Definitions/elitehd.yml",
|
"Definitions/elitehd.yml",
|
||||||
"Definitions/elitetorrent-biz.yml",
|
"Definitions/elitetorrent-biz.yml",
|
||||||
"Definitions/elittracker.yml",
|
"Definitions/elittracker.yml",
|
||||||
|
"Definitions/epizod.yml",
|
||||||
"Definitions/eotforum.yml",
|
"Definitions/eotforum.yml",
|
||||||
"Definitions/estrenosdtl.yml",
|
"Definitions/estrenosdtl.yml",
|
||||||
"Definitions/ethor.yml",
|
"Definitions/ethor.yml",
|
||||||
|
Reference in New Issue
Block a user