2020-03-03 16:28:26 +00:00
|
|
|
|
---
|
2022-03-12 16:40:19 +00:00
|
|
|
|
id: rudub
|
|
|
|
|
name: RUDUB
|
|
|
|
|
description: "RUDUB (ex-BaibaKoTV) is a RUSSIAN Semi-Private Torrent Tracker for TV"
|
2021-09-07 23:09:51 +00:00
|
|
|
|
language: ru-RU
|
2020-05-10 20:05:19 +00:00
|
|
|
|
type: semi-private
|
|
|
|
|
encoding: windows-1251
|
|
|
|
|
links:
|
2022-08-22 20:21:56 +00:00
|
|
|
|
- http://rudub.co/ # https is unsupported ERR_CONNECTION_REFUSED
|
2020-07-12 23:00:05 +00:00
|
|
|
|
legacylinks:
|
|
|
|
|
- http://baibako.tv/
|
2020-10-24 07:43:14 +00:00
|
|
|
|
- https://baibako.tv/
|
2022-03-12 17:58:26 +00:00
|
|
|
|
- http://bko.baibako.tv/
|
2023-04-01 03:00:30 +00:00
|
|
|
|
- http://rudub.tv/ # redirects to *.co
|
2019-07-23 04:08:48 +00:00
|
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
|
caps:
|
|
|
|
|
categorymappings:
|
|
|
|
|
- {id: 1, cat: TV, desc: "TV"}
|
2019-07-23 04:08:48 +00:00
|
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
|
modes:
|
|
|
|
|
search: [q]
|
|
|
|
|
tv-search: [q, season, ep]
|
2022-07-29 03:55:41 +00:00
|
|
|
|
allowrawsearch: true
|
2019-07-23 04:08:48 +00:00
|
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
|
settings:
|
|
|
|
|
- name: username
|
|
|
|
|
type: text
|
|
|
|
|
label: Username
|
|
|
|
|
- name: password
|
|
|
|
|
type: password
|
|
|
|
|
label: Password
|
|
|
|
|
- name: striprussian
|
|
|
|
|
type: checkbox
|
|
|
|
|
label: Strip Russian Letters
|
|
|
|
|
default: false
|
2020-09-29 19:49:13 +00:00
|
|
|
|
- name: freeleech
|
|
|
|
|
type: checkbox
|
|
|
|
|
label: Search freeleech only
|
|
|
|
|
default: false
|
2020-05-10 20:05:19 +00:00
|
|
|
|
- name: sort
|
|
|
|
|
type: select
|
|
|
|
|
label: Sort requested from site
|
2020-10-23 05:22:00 +00:00
|
|
|
|
default: 4
|
2020-05-10 20:05:19 +00:00
|
|
|
|
options:
|
2020-10-23 05:22:00 +00:00
|
|
|
|
4: created
|
|
|
|
|
7: seeders
|
|
|
|
|
5: size
|
|
|
|
|
1: title
|
2020-05-10 20:05:19 +00:00
|
|
|
|
- name: type
|
|
|
|
|
type: select
|
|
|
|
|
label: Order requested from site
|
2020-10-23 05:22:00 +00:00
|
|
|
|
default: desc
|
2020-05-10 20:05:19 +00:00
|
|
|
|
options:
|
2020-10-23 05:22:00 +00:00
|
|
|
|
desc: desc
|
|
|
|
|
asc: asc
|
2019-07-23 04:08:48 +00:00
|
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
|
login:
|
|
|
|
|
path: takelogin.php
|
|
|
|
|
method: post
|
|
|
|
|
inputs:
|
|
|
|
|
username: "{{ .Config.username }}"
|
|
|
|
|
password: "{{ .Config.password }}"
|
|
|
|
|
error:
|
|
|
|
|
- selector: div.login2
|
|
|
|
|
test:
|
|
|
|
|
path: /
|
|
|
|
|
selector: a[href="logout.php"]
|
2019-07-23 04:08:48 +00:00
|
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
|
search:
|
|
|
|
|
paths:
|
2022-03-27 23:31:04 +00:00
|
|
|
|
# http://rudub.tv/browse.php?search=&incldead=1&sort=4&type=desc
|
2020-05-10 20:05:19 +00:00
|
|
|
|
- path: browse.php
|
|
|
|
|
inputs:
|
2022-04-20 07:29:25 +00:00
|
|
|
|
search: "{{ .Keywords }}"
|
|
|
|
|
# 0 incldead, 1 active, 2 onlydead, 3 gold, 4 seedfree
|
|
|
|
|
incldead: "{{ if .Config.freeleech }}3{{ else }}0{{ end }}"
|
2020-05-10 20:05:19 +00:00
|
|
|
|
sort: "{{ .Config.sort }}"
|
|
|
|
|
type: "{{ .Config.type }}"
|
|
|
|
|
keywordsfilters:
|
2022-04-20 07:29:25 +00:00
|
|
|
|
# strip season episode as the site does not appear to be able to find any results with anything other than the series title
|
2020-05-10 20:05:19 +00:00
|
|
|
|
- name: re_replace
|
2022-04-20 07:29:25 +00:00
|
|
|
|
args: ["(?i)( S\\d+E\\d+)", ""]
|
|
|
|
|
- name: re_replace
|
|
|
|
|
args: ["(?i)( S\\d+)", ""]
|
|
|
|
|
- name: re_replace
|
|
|
|
|
args: ["(?i)( E\\d+)", ""]
|
2019-12-13 04:14:58 +00:00
|
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
|
rows:
|
2022-03-27 23:31:04 +00:00
|
|
|
|
selector: div.card__torlist__browse_2
|
2019-12-13 04:14:58 +00:00
|
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
|
fields:
|
2020-09-29 19:49:13 +00:00
|
|
|
|
category:
|
|
|
|
|
text: 1
|
2020-05-10 20:05:19 +00:00
|
|
|
|
title:
|
|
|
|
|
selector: a[href^="details.php?id="]
|
2022-04-20 07:29:25 +00:00
|
|
|
|
# Лучше звоните Солу (Better Call Saul) Сезон 6 Серии 01-02 (WEBRip XviD) (Обновляемая) (Золото)
|
2020-05-10 20:05:19 +00:00
|
|
|
|
filters:
|
2022-04-20 07:29:25 +00:00
|
|
|
|
# normalize to SXXEYY format
|
2020-05-10 20:05:19 +00:00
|
|
|
|
- name: re_replace
|
2022-04-20 07:29:25 +00:00
|
|
|
|
args: ["([CСcс]езон\\s+((?:\\d+)(?:-\\d+)?)\\s+[CСcс]ери[ия]\\s+((?:\\d+)(?:-\\d+)?))", " S$2E$3 "]
|
|
|
|
|
- name: re_replace
|
|
|
|
|
args: ["([CСcс]ери[ия]?\\s+((?:\\d+)(?:-\\d+)?))", " E$2 "]
|
2020-05-10 20:05:19 +00:00
|
|
|
|
- name: replace
|
2022-04-02 06:53:26 +00:00
|
|
|
|
args: [" (Золото)", ""] # remove gold tag
|
|
|
|
|
- name: re_replace
|
|
|
|
|
args: ["[()]", " "] # remove the brackets around the English title and attributes
|
2020-05-10 20:05:19 +00:00
|
|
|
|
- name: replace
|
|
|
|
|
args: ["-Rip", "Rip"]
|
|
|
|
|
- name: replace
|
|
|
|
|
args: ["WEB-DL", "WEBDL"]
|
|
|
|
|
- name: replace
|
|
|
|
|
args: ["WEBRip", "WEBDL"]
|
2022-04-20 07:29:25 +00:00
|
|
|
|
- name: replace
|
2020-05-10 20:05:19 +00:00
|
|
|
|
args: ["WEBDLRip", "WEBDL"]
|
2022-04-20 07:29:25 +00:00
|
|
|
|
- name: replace
|
|
|
|
|
args: ["HDTVRip", "HDTV"]
|
|
|
|
|
- name: replace
|
|
|
|
|
args: ["BD720p", "BD 720p"]
|
2020-05-10 20:05:19 +00:00
|
|
|
|
- name: replace
|
|
|
|
|
args: ["HD720p", "HD 720p"]
|
|
|
|
|
- name: replace
|
|
|
|
|
args: ["HDR720p", "HD 720p"]
|
2022-04-20 07:29:25 +00:00
|
|
|
|
- name: replace
|
|
|
|
|
args: ["BD1080p", "BD 1080p"]
|
2020-05-10 20:05:19 +00:00
|
|
|
|
- name: replace
|
|
|
|
|
args: ["HD1080p", "HD 1080p"]
|
|
|
|
|
- name: replace
|
|
|
|
|
args: ["HDR1080p", "HD 1080p"]
|
|
|
|
|
- name: re_replace
|
|
|
|
|
args: ["(\\([А-Яа-яЁё\\W]+\\))|(^[А-Яа-яЁё\\W\\d]+\\/ )|([а-яА-ЯЁё \\-]+,+)|([а-яА-ЯЁё]+)", "{{ if .Config.striprussian }}{{ else }}$1$2$3$4{{ end }}"]
|
|
|
|
|
- name: append
|
|
|
|
|
args: " - rus"
|
2022-04-02 06:53:26 +00:00
|
|
|
|
- name: trim # clean up any leading and trailing spaces left over from above editing
|
2020-05-10 20:05:19 +00:00
|
|
|
|
details:
|
|
|
|
|
selector: a[href^="details.php?id="]
|
|
|
|
|
attribute: href
|
|
|
|
|
download:
|
|
|
|
|
selector: a[href^="download.php?id="]
|
|
|
|
|
attribute: href
|
|
|
|
|
date:
|
2022-03-27 23:31:04 +00:00
|
|
|
|
# 2022-03-28 01:28:07
|
|
|
|
|
selector: li[title="Дата"]
|
2020-05-10 20:05:19 +00:00
|
|
|
|
filters:
|
2020-09-29 19:49:13 +00:00
|
|
|
|
- name: append
|
|
|
|
|
args: " +03:00" # MSK
|
2020-05-10 20:05:19 +00:00
|
|
|
|
- name: dateparse
|
2023-02-24 07:02:57 +00:00
|
|
|
|
args: "yyyy-MM-dd HH:mm:ss zzz"
|
2020-05-10 20:05:19 +00:00
|
|
|
|
files:
|
2022-03-27 23:31:04 +00:00
|
|
|
|
selector: li[title="Файлов"]
|
2020-05-10 20:05:19 +00:00
|
|
|
|
size:
|
2022-03-27 23:31:04 +00:00
|
|
|
|
selector: li[title="Размер"]
|
2020-05-10 20:05:19 +00:00
|
|
|
|
seeders:
|
2022-03-27 23:31:04 +00:00
|
|
|
|
selector: li[title="Активность"]
|
2020-05-10 20:05:19 +00:00
|
|
|
|
filters:
|
2022-03-27 23:31:04 +00:00
|
|
|
|
- name: regexp
|
|
|
|
|
args: (\d+)\s+\d+
|
2020-05-10 20:05:19 +00:00
|
|
|
|
leechers:
|
2022-03-27 23:31:04 +00:00
|
|
|
|
selector: li[title="Активность"]
|
2020-05-10 20:05:19 +00:00
|
|
|
|
filters:
|
2022-03-27 23:31:04 +00:00
|
|
|
|
- name: regexp
|
|
|
|
|
args: \d+\s+(\d+)
|
2020-05-10 20:05:19 +00:00
|
|
|
|
grabs:
|
2022-03-27 23:31:04 +00:00
|
|
|
|
selector: li[title="Завершено"]
|
2020-05-10 20:05:19 +00:00
|
|
|
|
downloadvolumefactor:
|
|
|
|
|
case:
|
|
|
|
|
"a[href^=\"details.php?id=\"]:contains(\"(Золото)\")": 0
|
|
|
|
|
"*": 1
|
|
|
|
|
uploadvolumefactor:
|
2020-09-29 19:49:13 +00:00
|
|
|
|
text: 1
|
|
|
|
|
minimumratio:
|
|
|
|
|
text: 0.3
|
2020-01-15 19:26:44 +00:00
|
|
|
|
# engine n/a
|