autobrr/internal/indexer/definitions/ianon.yaml
Frederick Robinson fef0da5711
feat(definitions): add expectations for test lines (#1257)
* 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>
2023-11-18 15:41:39 +01:00

88 lines
2.5 KiB
YAML

---
#id: ianon
name: iAnon
identifier: ianon
description: iAnon is a Private Torrent Tracker for macOS
language: en-us
urls:
- https://ianon.app/
privacy: private
protocol: torrent
supports:
- irc
- rss
# source: gazelle
settings:
- name: torrent_pass
type: text
required: true
label: Torrent pass
help: Right click DL on a torrent and get the torrent_pass.
irc:
network: iAnon
server: irc.ianon.app
port: 6697
tls: true
channels:
- "#announce"
announcers:
- anon
settings:
- name: nick
type: text
required: true
label: Nick
help: Bot nick. Eg. user-bot
- 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: "anon enter #announce USERNAME IRCKEY"
required: true
label: Invite command
help: Invite auth with anon. Replace USERNAME and IRCKEY.
parse:
type: single
lines:
- tests:
- line: 'TORRENT: TheBestMacApp.X.4.10.6.macOS (Applications) - utility - https://ianon.app/torrents.php?id=1323 / https://ianon.app/torrents.php?action=download&id=1323'
expect:
torrentName: TheBestMacApp.X.4.10.6.macOS
category: Applications
freeleech: ""
tags: utility
baseUrl: https://ianon.app/
torrentId: "1323"
- line: 'TORRENT: MasterClass - Issa Rae Teaches Creating Outside the Lines (Tutorials) - freeleech,learning,tutorials,video - https://ianon.app/torrents.php?id=2414 / https://ianon.app/torrents.php?action=download&id=2423'
expect:
torrentName: MasterClass - Issa Rae Teaches Creating Outside the Lines
category: Tutorials
freeleech: freeleech
tags: learning,tutorials,video
baseUrl: https://ianon.app/
torrentId: "2423"
pattern: 'TORRENT: (.*) \((.*)\)\s+?. (freeleech)?,?(.*) . https:\/\/.*\/.*id=\d+ \/ (https:\/\/.*\/).*action=download&id=(.+)'
vars:
- torrentName
- category
- freeleech
- tags
- baseUrl
- torrentId
match:
infourl: "/torrents.php?id={{ .torrentId }}"
torrenturl: "/torrents.php?action=download&id={{ .torrentId }}&torrent_pass={{ .torrent_pass }}"