mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +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>
84 lines
2.2 KiB
YAML
84 lines
2.2 KiB
YAML
---
|
|
#id: revolutiontt
|
|
name: RevolutionTT
|
|
identifier: revolutiontt
|
|
description: RevolutionTT (RTT) is a private torrent tracker for 0DAY / GENERAL.
|
|
language: en-us
|
|
urls:
|
|
- https://www.revolutiontt.me/
|
|
privacy: private
|
|
protocol: torrent
|
|
supports:
|
|
- irc
|
|
- rss
|
|
# source: custom
|
|
settings:
|
|
- name: passkey
|
|
type: secret
|
|
required: true
|
|
label: Passkey
|
|
help: "Copy the passkey from a download link"
|
|
|
|
irc:
|
|
network: RevolutionTT
|
|
server: irc.revolutiontt.me
|
|
port: 7000
|
|
tls: true
|
|
channels:
|
|
- "#announce"
|
|
announcers:
|
|
- RevoTT
|
|
settings:
|
|
- name: nick
|
|
type: text
|
|
required: true
|
|
label: Nick
|
|
help: Bot nick. Eg. user_autodl
|
|
|
|
- name: auth.account
|
|
type: text
|
|
required: false
|
|
label: NickServ Account
|
|
help: NickServ account. Make sure to group your user and bot.
|
|
|
|
- name: auth.password
|
|
type: secret
|
|
required: false
|
|
label: NickServ Password
|
|
help: NickServ password
|
|
|
|
- name: invite_command
|
|
type: secret
|
|
default: "RevoTT !invite USERNAME PASSKEY"
|
|
required: true
|
|
label: Invite command
|
|
help: Invite auth with RevoTT. Replace USERNAME and PASSKEY
|
|
|
|
parse:
|
|
type: single
|
|
lines:
|
|
- tests:
|
|
- line: '!new Some.TV.Show.S01E02.720p.WEB.h264-KOGi | TV/HDx264 | https://revolutiontt.me/details.php?id=z4WBMrhj&hit=1'
|
|
expect:
|
|
torrentName: Some.TV.Show.S01E02.720p.WEB.h264-KOGi
|
|
category: TV/HDx264
|
|
baseUrl: https://revolutiontt.me/
|
|
torrentId: z4WBMrhj
|
|
- line: '!new Some.Other.Show.S01E02.1080p.WEB.h264-KOGi | TV/HDx264 | https://revolutiontt.me/details.php?id=eAg24buk&hit=1'
|
|
expect:
|
|
torrentName: Some.Other.Show.S01E02.1080p.WEB.h264-KOGi
|
|
category: TV/HDx264
|
|
baseUrl: https://revolutiontt.me/
|
|
torrentId: eAg24buk
|
|
pattern: '!new (.*) \| (.*) \| (https?:\/\/.*\/).*id=([0-9a-zA-Z]+)'
|
|
vars:
|
|
- torrentName
|
|
- category
|
|
- baseUrl
|
|
- torrentId
|
|
|
|
match:
|
|
infourl: "/details.php?id={{ .torrentId }}"
|
|
torrenturl: "/download.php/{{ .torrentId }}/{{ .torrentName }}.torrent?passkey={{ .passkey }}"
|
|
encode:
|
|
- torrentName
|