mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00

* factor out test helpers * refactor, add tests for animebytes * revert test refactor * better name * change format, migrate some examples * migrated remaining test cases * add comment about `Test` vs `Tests` * refactor * reorder expectations to match vars * generate * turn on strict unmarshalling, remove old `Test` from schema * start modifying actual definitions * done with the As * Bs * C, D * E, F * G, H, I, ... L * M, N * O, P * R * bonus error. without this, pattern/vars disagreement can panic. * S * T, U * X.. Now we know our ABCs next time won't you sing with meeeee * fix another test * another driveby change * be less strict parsing custom definitions * fix(definitions): load custom definitions --------- Co-authored-by: ze0s <ze0s@riseup.net>
90 lines
2.3 KiB
YAML
90 lines
2.3 KiB
YAML
---
|
|
#id: uhd
|
|
name: UHDBits
|
|
identifier: uhdbits
|
|
description: UHDBits (UHD) is a private torrent tracker for HD MOVIES / TV
|
|
language: en-us
|
|
urls:
|
|
- https://uhdbits.org/
|
|
privacy: private
|
|
protocol: torrent
|
|
supports:
|
|
- irc
|
|
- rss
|
|
# source: gazelle
|
|
settings:
|
|
- name: authkey
|
|
type: secret
|
|
required: true
|
|
label: Auth key
|
|
help: Right click DL on a torrent and get the authkey.
|
|
|
|
- name: torrent_pass
|
|
type: secret
|
|
required: true
|
|
label: Torrent pass
|
|
help: Right click DL on a torrent and get the torrent_pass.
|
|
|
|
irc:
|
|
network: P2P-Network
|
|
server: irc.p2p-network.net
|
|
port: 6697
|
|
tls: true
|
|
channels:
|
|
- "#UHD.Announce"
|
|
announcers:
|
|
- UHDBot
|
|
- cr0nusbot
|
|
- uhdAnnounceBot
|
|
settings:
|
|
- name: nick
|
|
type: text
|
|
required: true
|
|
label: Nick
|
|
help: Bot nick. Eg. user|autodl
|
|
|
|
- name: auth.account
|
|
type: text
|
|
required: true
|
|
label: NickServ Account
|
|
help: NickServ account. Make sure to group your user and bot.
|
|
|
|
- name: auth.password
|
|
type: secret
|
|
required: true
|
|
label: NickServ Password
|
|
help: NickServ password
|
|
|
|
- name: invite_command
|
|
type: secret
|
|
default: "UHDBot invite IRCKEY"
|
|
required: true
|
|
label: Invite command
|
|
help: Invite auth with UHDBot. Replace IRCKEY.
|
|
|
|
parse:
|
|
type: single
|
|
lines:
|
|
- tests:
|
|
- line: Category [Movie] A movie [1988] A.Movie.1988.Extended.720p.BluRay.x264-GROUP.mkv [720p, Encode, Freeleech, Scene, mkv] Size [4.99 GB] Url [https://uhdbits.org/torrents.php?action=download&id=00000]
|
|
expect:
|
|
category: Movie
|
|
year: "1988"
|
|
torrentName: A.Movie.1988.Extended.720p.BluRay.x264-GROUP.mkv
|
|
releaseTags: 720p, Encode, Freeleech, Scene, mkv
|
|
torrentSize: 4.99 GB
|
|
baseUrl: https://uhdbits.org/
|
|
torrentId: "00000"
|
|
pattern: 'Category \[(.+)\] .+ \[(\d+)\] (.+) \[(.+)\] Size \[(.+)\] Url \[(https?\:\/\/.+\/).+id=(\d+)\]'
|
|
vars:
|
|
- category
|
|
- year
|
|
- torrentName
|
|
- releaseTags
|
|
- torrentSize
|
|
- baseUrl
|
|
- torrentId
|
|
|
|
match:
|
|
infourl: "/torrents.php?torrentid={{ .torrentId }}"
|
|
torrenturl: "/torrents.php?action=download&id={{ .torrentId }}&authkey={{ .authkey }}&torrent_pass={{ .torrent_pass }}"
|