mirror of https://github.com/Jackett/Jackett
124 lines
3.4 KiB
YAML
124 lines
3.4 KiB
YAML
---
|
|
id: zetorrents
|
|
name: zetorrents
|
|
description: "zetorrents is a FRENCH Public site for MOVIES / TV / GENERAL"
|
|
language: fr-fr
|
|
type: public
|
|
encoding: UTF-8
|
|
links:
|
|
- https://wvw.zetorrents.io/
|
|
legacylinks:
|
|
- https://www.zetorrents.co/
|
|
- https://www.zetorrents.io/
|
|
|
|
caps:
|
|
categories:
|
|
1: Other
|
|
|
|
modes:
|
|
search: [q]
|
|
tv-search: [q, season, ep]
|
|
movie-search: [q]
|
|
|
|
settings:
|
|
- name: info
|
|
type: info
|
|
default: zetorrents does not use categories. In your software Indexer settings, set the category to 7000.
|
|
- 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
|
|
|
|
download:
|
|
selector: a[href^="magnet:?xt="]
|
|
attribute: href
|
|
|
|
search:
|
|
paths:
|
|
- path: "{{ if .Keywords }}recherche/{{ .Keywords }}{{else}}{{end}}"
|
|
|
|
rows:
|
|
selector: table.table > tbody > tr:has(a[href^="/torrent/"])
|
|
|
|
fields:
|
|
category:
|
|
text: 1
|
|
site_date:
|
|
selector: a[href^="/torrent/"]
|
|
filters:
|
|
# year is 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: a[href^="/torrent/"]
|
|
attribute: title
|
|
filters:
|
|
- name: replace
|
|
args: [" en Torrent", ""]
|
|
- name: replace
|
|
args: ["WEBRIP", "WEBDL"]
|
|
# 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: a[href^="/torrent/"]
|
|
attribute: href
|
|
download:
|
|
selector: a[href^="/torrent/"]
|
|
attribute: href
|
|
date:
|
|
text: now
|
|
size:
|
|
selector: td:nth-child(2)
|
|
seeders:
|
|
selector: td:nth-child(3)
|
|
leechers:
|
|
selector: td:nth-child(4)
|
|
downloadvolumefactor:
|
|
text: 0
|
|
uploadvolumefactor:
|
|
text: 1
|
|
# engine n/a
|