mirror of https://github.com/Jackett/Jackett
oxtorrent: add config multi option. #9544
This commit is contained in:
parent
30e88be99d
commit
e49b75aa79
|
@ -53,6 +53,25 @@ settings:
|
||||||
type: info
|
type: info
|
||||||
label: "About the Download Link"
|
label: "About the Download Link"
|
||||||
default: "Note that only <b>www.oxtorrent.pw</b> supports the use of the <b>.torrent</b> download link.<br />All sites support <b>magnet</b> links."
|
default: "Note that only <b>www.oxtorrent.pw</b> supports the use of the <b>.torrent</b> download link.<br />All sites support <b>magnet</b> links."
|
||||||
|
- 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:
|
download:
|
||||||
selector: a[href*="{{ .Config.downloadlink }}"]
|
selector: a[href*="{{ .Config.downloadlink }}"]
|
||||||
|
@ -84,22 +103,40 @@ search:
|
||||||
filters:
|
filters:
|
||||||
# year is at the end of the title, so we get it and name it site_date
|
# year is 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: td:nth-child(1) a
|
selector: td:nth-child(1) 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: re_replace
|
||||||
|
args: ["(?i)( FRENCH)", " {{ .Result.site_date }} FRENCH"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(?i)( MULTI)", " {{ .Result.site_date }} MULTI"]
|
||||||
- name: replace
|
- name: replace
|
||||||
args: [" FRENCH", " {{ .Result.site_date }} FRENCH"]
|
args: ["(?i)( TRUEFRENCH)", " {{ .Result.site_date }} TRUEFRENCH"]
|
||||||
- name: replace
|
- name: re_replace
|
||||||
args: ["MULTI", "{{ .Result.site_date }} MULTI"]
|
args: ["(?i)( VOSTFR)", " {{ .Result.site_date }} VOSTFR"]
|
||||||
- name: replace
|
- name: re_replace
|
||||||
args: ["TRUEFRENCH", "{{ .Result.site_date }} TRUEFRENCH"]
|
args: ["(?i)( SUBFRENCH)", " {{ .Result.site_date }} SUBFRENCH"]
|
||||||
- name: replace
|
|
||||||
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: td:nth-child(1) a
|
selector: td:nth-child(1) a
|
||||||
attribute: href
|
attribute: href
|
||||||
|
|
Loading…
Reference in New Issue