epizod: add config multi option. #9544

shift year from end on title
This commit is contained in:
Garfield69 2020-09-18 17:00:55 +12:00
parent 232330bc7a
commit 73b6b8bcdb
1 changed files with 58 additions and 3 deletions

View File

@ -2,7 +2,7 @@
id: epizod id: epizod
name: Epizod name: Epizod
description: "Epizod is a FRENCH Public tracker for MOVIES / TV" description: "Epizod is a FRENCH Public tracker for MOVIES / TV"
language: fr-FR language: fr-fr
type: public type: public
encoding: UTF-8 encoding: UTF-8
links: links:
@ -21,7 +21,26 @@ caps:
tv-search: [q, season, ep] tv-search: [q, season, ep]
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
download: download:
selector: a[href^="magnet:?xt="] selector: a[href^="magnet:?xt="]
@ -47,9 +66,45 @@ search:
filters: filters:
- name: split - name: split
args: ["/", 4] args: ["/", 4]
title: site_date:
selector: div.post-cover > a selector: div.post-cover > a
attribute: title attribute: title
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: div.post-cover > 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"]
# 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: details:
selector: div.post-cover > a selector: div.post-cover > a
attribute: href attribute: href