mirror of
https://github.com/Jackett/Jackett
synced 2025-03-10 14:14:25 +00:00
cpasbienclone: add config multi option. #9544
This commit is contained in:
parent
f4a3d8f3f7
commit
8432b6bf4b
1 changed files with 38 additions and 3 deletions
|
@ -30,6 +30,25 @@ caps:
|
||||||
movie-search: [q]
|
movie-search: [q]
|
||||||
|
|
||||||
settings:
|
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: sort
|
- name: sort
|
||||||
type: select
|
type: select
|
||||||
label: Sort requested from site (Only works for searches with Keywords)
|
label: Sort requested from site (Only works for searches with Keywords)
|
||||||
|
@ -67,8 +86,8 @@ search:
|
||||||
filters:
|
filters:
|
||||||
# year can be at the end of the title, so we get it and name it site_date
|
# year can be at the end of the title, so we get it and name it site_date
|
||||||
- name: regexp
|
- name: regexp
|
||||||
args: "(\\d{4})$"
|
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
|
||||||
|
@ -82,7 +101,23 @@ search:
|
||||||
args: ["VOSTFR", "{{ .Result.site_date }} VOSTFR"]
|
args: ["VOSTFR", "{{ .Result.site_date }} VOSTFR"]
|
||||||
# and we delete it at the end
|
# and we delete it at the end
|
||||||
- name: re_replace
|
- name: re_replace
|
||||||
args: ["(\\d{4})$", ""]
|
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
|
||||||
|
|
Loading…
Add table
Reference in a new issue