1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-03-10 14:14:25 +00:00

cpabien: add config multi option. #9544

new domain wwwv.*
This commit is contained in:
Garfield69 2020-09-18 16:11:50 +12:00
parent 4174c6979f
commit f4a3d8f3f7

View file

@ -7,7 +7,7 @@ type: semi-private
encoding: UTF-8 encoding: UTF-8
followredirect: true followredirect: true
links: links:
- https://wvw.cpasbien-fr.fr/ - https://wwwv.cpasbien-fr.fr/
legacylinks: legacylinks:
- http://www.cpasbiens.cc/ - http://www.cpasbiens.cc/
- http://www.cpabien.cm/ - http://www.cpabien.cm/
@ -39,6 +39,7 @@ legacylinks:
- https://www.cpasbien.lol/ - https://www.cpasbien.lol/
- https://www.gktorrent.biz/ - https://www.gktorrent.biz/
- https://vww.cpasbien-fr.fr/ - https://vww.cpasbien-fr.fr/
- https://wvw.cpasbien-fr.fr/
caps: caps:
categorymappings: categorymappings:
@ -69,6 +70,25 @@ settings:
type: info type: info
label: "About categories" label: "About categories"
default: "cpasbien does not show <b>Categories</b> in its Search Results.<br />To use this indexer with Sonarr/Radarr set your indexer category to <b>7000</b>." default: "cpasbien does not show <b>Categories</b> in its Search Results.<br />To use this indexer with Sonarr/Radarr set your indexer category to <b>7000</b>."
- 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
login: login:
method: cookie method: cookie
@ -99,22 +119,40 @@ search:
filters: filters:
# date is at the end of the title, so we get it and name it site_date # date is at the end of the title, so we get it and name it site_date
- name: regexp - name: regexp
args: "(\\w+)$" args: "(19|20\\d{2})$"
title: title_phase1:
selector: a selector: a
filters: filters:
# now we put the date at the right place according scene naming rules using .Result.site_date # now we put the date at the right place according scene naming rules using .Result.site_date
- name: replace - name: replace
args: [" FRENCH", " {{ .Result.site_date }} FRENCH"] args: [" FRENCH", " {{ .Result.site_date }} FRENCH"]
- name: replace - name: replace
args: ["MULTI", "{{ .Result.site_date }} MULTI"] args: [" MULTI", " {{ .Result.site_date }} MULTI"]
- name: replace - name: replace
args: ["TRUEFRENCH", "{{ .Result.site_date }} TRUEFRENCH"] args: [" TRUEFRENCH", " {{ .Result.site_date }} TRUEFRENCH"]
- name: replace - name: replace
args: ["VOSTFR", "{{ .Result.site_date }} VOSTFR"] args: [" VOSTFR", " {{ .Result.site_date }} VOSTFR"]
- name: replace
args: [" SUBFRENCH", " {{ .Result.site_date }} SUBFRENCH"]
# and we delete it at the end # and we delete it at the end
- name: re_replace - name: re_replace
args: ["(\\w+)$", ""] 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: details:
selector: a selector: a
attribute: href attribute: href