2019-05-08 23:45:34 +00:00
|
|
|
---
|
2020-05-11 19:59:28 +00:00
|
|
|
id: beyond-hd
|
2020-05-10 20:05:19 +00:00
|
|
|
name: Beyond-HD
|
|
|
|
description: "Without BeyondHD, your HDTV is just a TV"
|
2021-09-07 23:09:51 +00:00
|
|
|
language: en-US
|
2020-05-10 20:05:19 +00:00
|
|
|
type: private
|
|
|
|
encoding: UTF-8
|
|
|
|
links:
|
|
|
|
- https://beyond-hd.me/
|
2019-05-08 23:45:34 +00:00
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
caps:
|
|
|
|
categorymappings:
|
|
|
|
- {id: 1, cat: Movies, desc: "Movies"}
|
|
|
|
- {id: 2, cat: TV, desc: "TV"}
|
2019-05-08 23:45:34 +00:00
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
modes:
|
2020-10-19 03:56:16 +00:00
|
|
|
search: [q]
|
2022-06-12 07:58:12 +00:00
|
|
|
tv-search: [q, season, ep, imdbid, tmdbid]
|
2020-11-13 20:13:41 +00:00
|
|
|
movie-search: [q, imdbid, tmdbid]
|
2019-05-08 23:45:34 +00:00
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
settings:
|
2020-10-24 04:54:41 +00:00
|
|
|
- name: info_oid
|
|
|
|
type: info
|
|
|
|
label: "About 2FA"
|
2022-11-16 17:36:21 +00:00
|
|
|
default: "If you want to enable 2FA then use the Beyond-HD (API) indexer instead."
|
2020-05-10 20:05:19 +00:00
|
|
|
- name: username
|
|
|
|
type: text
|
|
|
|
label: Username
|
|
|
|
- name: password
|
|
|
|
type: password
|
|
|
|
label: Password
|
|
|
|
- name: sort
|
|
|
|
type: select
|
|
|
|
label: Sort requested from site
|
2020-10-23 05:22:00 +00:00
|
|
|
default: created_at
|
2020-05-10 20:05:19 +00:00
|
|
|
options:
|
2020-10-23 05:22:00 +00:00
|
|
|
created_at: created
|
|
|
|
seeders: seeders
|
|
|
|
size: size
|
|
|
|
name: 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-12-13 06:07:50 +00:00
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
login:
|
|
|
|
path: login
|
|
|
|
method: form
|
|
|
|
form: form[action$="/login"]
|
|
|
|
captcha:
|
|
|
|
type: image
|
|
|
|
selector: img[src^="/captcha?_CAPTCHA"]
|
|
|
|
input: key
|
|
|
|
inputs:
|
|
|
|
username: "{{ .Config.username }}"
|
|
|
|
password: "{{ .Config.password }}"
|
|
|
|
remember: on
|
|
|
|
selectorinputs:
|
|
|
|
_token:
|
|
|
|
selector: input[name="_token"]
|
|
|
|
attribute: value
|
|
|
|
error:
|
|
|
|
- selector: form[action$="/login"] .text-red
|
|
|
|
- selector: script:contains("toastr.error")
|
|
|
|
message:
|
|
|
|
selector: script:contains("toastr.error")
|
2020-03-25 03:30:52 +00:00
|
|
|
# test:
|
|
|
|
# path: torrents
|
2019-05-08 23:45:34 +00:00
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
search:
|
|
|
|
paths:
|
|
|
|
- path: torrents
|
|
|
|
inputs:
|
|
|
|
$raw: "{{ range .Categories }}categories[]={{.}}&{{end}}"
|
2020-11-13 20:13:41 +00:00
|
|
|
search: "{{ if .Query.IMDBID }}{{ else }}{{ .Keywords }}{{ end }}" # for dashboard imdbid search
|
2020-05-10 20:05:19 +00:00
|
|
|
uploader: ""
|
|
|
|
imdb: "{{ .Query.IMDBIDShort }}"
|
2020-11-13 20:13:41 +00:00
|
|
|
tmdb: "{{ .Query.TMDBID }}"
|
2020-05-10 20:05:19 +00:00
|
|
|
sorting: "{{ .Config.sort }}"
|
|
|
|
direction: "{{ .Config.type }}"
|
|
|
|
qty: 100
|
2019-12-13 06:07:50 +00:00
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
rows:
|
2020-11-24 18:43:21 +00:00
|
|
|
selector: div.table-torrents > table > tbody > tr[id^="torrentposter"]
|
2019-12-13 06:07:50 +00:00
|
|
|
|
2020-05-10 20:05:19 +00:00
|
|
|
fields:
|
2021-10-20 07:07:04 +00:00
|
|
|
category_optional:
|
2020-05-10 20:05:19 +00:00
|
|
|
selector: a[href*="/categories/"]
|
|
|
|
optional: true
|
|
|
|
attribute: href
|
|
|
|
filters:
|
|
|
|
- name: regexp
|
|
|
|
args: "/categories/.*?\\.(\\d+)"
|
|
|
|
category:
|
2021-10-20 07:07:04 +00:00
|
|
|
text: "{{ if .Result.category_optional }}{{ .Result.category_optional }}{{ else }}1{{ end }}"
|
2020-05-10 20:05:19 +00:00
|
|
|
title:
|
|
|
|
selector: a.torrent-name
|
|
|
|
details:
|
|
|
|
selector: a.torrent-name
|
|
|
|
attribute: href
|
2020-11-24 18:43:21 +00:00
|
|
|
download:
|
|
|
|
selector: a[href*="/download/"]
|
|
|
|
attribute: href
|
2020-05-10 20:05:19 +00:00
|
|
|
date:
|
|
|
|
selector: td:not(a[href$="/history"]) span.text-orange
|
|
|
|
filters:
|
|
|
|
- name: timeago
|
|
|
|
size:
|
|
|
|
selector: td span.text-blue
|
|
|
|
seeders:
|
|
|
|
selector: a[href$="/peers"] span.text-green
|
|
|
|
leechers:
|
|
|
|
selector: a[href$="/peers"] span.text-red
|
|
|
|
grabs:
|
|
|
|
selector: a[href$="/history"]
|
2021-10-24 20:30:33 +00:00
|
|
|
imdbid:
|
2020-05-25 03:17:44 +00:00
|
|
|
selector: a[href*="imdb.com/title/tt"]
|
2020-05-10 20:05:19 +00:00
|
|
|
attribute: href
|
2020-11-13 20:13:41 +00:00
|
|
|
tmdbid:
|
2022-07-01 07:48:00 +00:00
|
|
|
selector: a[href*="themoviedb.org/movie/"], a[href*="themoviedb.org/tv/"]
|
2020-11-13 20:13:41 +00:00
|
|
|
attribute: href
|
2020-05-10 20:05:19 +00:00
|
|
|
downloadvolumefactor:
|
|
|
|
case:
|
|
|
|
i[data-original-title="100% Free"]: 0
|
|
|
|
i[data-original-title="100% Free (Limited UL)"]: 0
|
|
|
|
i[data-original-title="25% Promo"]: 0.75
|
|
|
|
i[data-original-title="50% Promo"]: 0.5
|
|
|
|
i[data-original-title="75% Promo"]: 0.25
|
|
|
|
"*": 1
|
|
|
|
uploadvolumefactor:
|
|
|
|
text: 1
|
2020-07-30 21:39:51 +00:00
|
|
|
# UNIT3D (custom)
|